fix: make enum value deserialization forward compatible#7
Merged
mcnulty-fp merged 1 commit intoFeb 27, 2026
Merged
Conversation
- Configure openapi-generator with `enumUnknownDefaultCase` option. This adds an unused enum value to the template data/hash that can be used to substitute a placeholder value for all enums. - Update templates to add a `UNSUPPORTED_VALUE_SDK_UPGRADE_REQUIRED` value that is used when deserializing an enum value that is unknown to the SDK. This allows events with new enum values to be deserialized without failing deserialization. - Add unit tests to confirm enum value deserialization is forward compatible
mcnulty-fp
requested review from
Orkuncakilkaya,
erayaydin,
ilfa and
necipallef
as code owners
February 27, 2026 02:44
Contributor
🚀 Following releases will be created using changesets from this PR:java-sdk@8.0.0-rc.1Patch Changes
|
ilfa
approved these changes
Feb 27, 2026
mcnulty-fp
merged commit Feb 27, 2026
4d3f397
into
test/INTER-1819-improvements
14 of 15 checks passed
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.
enumUnknownDefaultCaseoption. This adds an unused enum value to the template data/hash that can be used to substitute a placeholder value for all enums.UNSUPPORTED_VALUE_SDK_UPGRADE_REQUIREDvalue that is used when deserializing an enum value that is unknown to the SDK. This allows events with new enum values to be deserialized without failing deserialization.Naming (
UNSUPPORTED_VALUE_SDK_UPGRADE_REQUIRED🤔 ) and approach definitely up for debate. LMKWYT!