Skip to content
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

GH-16170 fix CVE-2024-21634 with aws upgrade - cause was ion_ion-java:1.0.2 #16168

Merged
merged 2 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ ext {
// Versions of libraries shared cross all projects
//
junitVersion = '4.12'
awsJavaSdkVersion = '1.12.268'
awsJavaSdkVersion = '1.12.705'

//
// Optional H2O modules which can be included h2o.jar assembly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def h2oget_timezone():
timezones = h2o.list_timezones()
assert_is_type(timezones, H2OFrame)

assert timezones.nrow == 467, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.nrow == 459, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.ncol == 1, "h2o.get_timezone() returns frame with wrong column number."

if __name__ == "__main__":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def h2olist_timezones():
timezones = h2o.list_timezones()
assert_is_type(timezones, H2OFrame)

assert timezones.nrow == 467, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.nrow == 459, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.ncol == 1, "h2o.get_timezone() returns frame with wrong column number."


Expand Down