You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,10 @@ It currently consists of
15
15
16
16
# Release Notes
17
17
BOAT is still under development and subject to change.
18
+
19
+
## 0.17.75
20
+
* Fixed duplicate serialization of the discriminator property in Jackson-based Java models by removing allowGetters = true from the @JsonIgnoreProperties annotation.
21
+
18
22
## 0.17.74
19
23
* Swift5: Removed deprecated initializer from model objects. The initializer is now internal and only accessible through the Builder pattern, preventing breaking code from deprecation warnings.
Copy file name to clipboardExpand all lines: boat-scaffold/src/main/templates/boat-spring/typeInfoAnnotation.mustache
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
{{#-first}}
4
4
@JsonIgnoreProperties(
5
5
value = "{{{discriminator.propertyBaseName}}}", // ignore manually set {{{discriminator.propertyBaseName}}}, it will be automatically generated by Jackson during serialization
6
-
allowGetters = true, // allows the {{{discriminator.propertyBaseName}}} to be set during serialization
7
6
allowSetters = true // allows the {{{discriminator.propertyBaseName}}} to be set during deserialization
0 commit comments