chore: bump h2o version to 3.46.0.11#153
Merged
Merged
Conversation
Bump h2o version to 3.46.0.11 and updates GLM parameter builder to account for missing defaults
Update comments
jpleitao
approved these changes
May 29, 2026
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #153 +/- ##
============================================
+ Coverage 81.43% 81.50% +0.06%
- Complexity 520 525 +5
============================================
Files 52 52
Lines 1761 1773 +12
Branches 177 182 +5
============================================
+ Hits 1434 1445 +11
Misses 234 234
- Partials 93 94 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Update ParametersTest.java
artpdr
reviewed
May 29, 2026
artpdr
reviewed
May 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps h2o version to
3.46.0.11to fix multiple CVEs (CVE-2023-6016, CVE-2023-6038, CVE-2024-10553, CVE-2024-45758, CVE-2024-5986, CVE-2025-5662, CVE-2025-6507).The bump required adding a fallback mechanism to find the default value of missing API descriptors when upgrading schema bindings. Starting in
3.40.0.1, some choice/enum fields were not being initialized with default constants, causing the reflection lookup to return null and failing to statically initialize the coreH2OAlgorithmregistry. This triggered aExceptionInInitializerErrorduring class loading, resulting in a cascade ofNoClassDefFoundErrorfailures across loading and training test suites when processing uninitialized choice descriptors, so we added a logic of case-insensitive matching with fallback to handle these uninitialized or mismatched enum descriptors.Also, it required explicitly filtering out regression influence diagnostics (
influence) as it these can only be specified for gaussian and binomial families (these were introduced in3.40.0.1- see https://github.com/h2oai/h2o-3/blob/master/Changes.md#kurka-34001---282023)Additionally, the MR fixes an issue with
non_negativeconstraints in GLM, as these are not allowed for multi-classification datasets (since3.36.1.1GLM init fails fast if this is misconfigured - see https://github.com/h2oai/h2o-3/blob/master/Changes.md#zumbo-33611---4132022).