-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update guava to 32.0.1-jre to address CVEs #15482
update guava to 32.0.1-jre to address CVEs #15482
Conversation
// This test is guava version sensitive when upgrading to guava > 32 | ||
// the order changes to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it sounds like it would be less brittle to change this test to compare sets instead of lists. I don't think anything relies on ordering here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This came up in:
#14767
There is an effort on de-flaking tests, I would guess this will show up on their radar sooner or later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
given that we changed the expected order once already I suggest we move to a set. I made suggestions you should be able to merge (mostly) as is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
server/src/test/java/org/apache/druid/metadata/SqlSegmentsMetadataManagerTest.java
Outdated
Show resolved
Hide resolved
server/src/test/java/org/apache/druid/metadata/SqlSegmentsMetadataManagerTest.java
Show resolved
Hide resolved
…dataManagerTest.java Co-authored-by: Xavier Léauté <[email protected]>
…dataManagerTest.java Co-authored-by: Xavier Léauté <[email protected]>
server/src/test/java/org/apache/druid/metadata/SqlSegmentsMetadataManagerTest.java
Outdated
Show resolved
Hide resolved
…dataManagerTest.java Co-authored-by: Xavier Léauté <[email protected]>
Update guava to 32.0.1-jre to address two CVEs: CVE-2020-8908, CVE-2023-2976 This change requires a minor test change to remove assumptions about ordering. --------- Co-authored-by: Xavier Léauté <[email protected]>
Update guava to 32.0.1-jre to address two CVEs: CVE-2020-8908, CVE-2023-2976 This change requires a minor test change to remove assumptions about ordering. --------- Co-authored-by: Xavier Léauté <[email protected]>
Update guava to 32.0.1-jre to address two CVEs: CVE-2020-8908, CVE-2023-2976 This change requires a minor test change to remove assumptions about ordering. --------- Co-authored-by: Xavier Léauté <[email protected]>
Description
Update guava to 32.0.1-jre to address two CVEs:
CVE-2020-8908, CVE-2023-2976
This change requires a minor test change to remove assumptions about ordering.
This PR has: