File tree Expand file tree Collapse file tree 3 files changed +22
-7
lines changed Expand file tree Collapse file tree 3 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -201,9 +201,12 @@ see the [inline documentation](https://github.com/FasterXML/jackson-module-kotli
201
201
for details on what options are available and what they do.
202
202
203
203
``` kotlin
204
+ val kotlinModule = KotlinModule .Builder ()
205
+ .enable(KotlinFeature .StrictNullChecks )
206
+ .build()
204
207
val mapper = JsonMapper .builder()
205
- .addModule(KotlinModule (strictNullChecks = true ) )
206
- .build()
208
+ .addModule(kotlinModule )
209
+ .build()
207
210
```
208
211
209
212
If your ` ObjectMapper ` is constructed in Java, there is a builder method
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ Ilya Ryzhenkov (@orangy)
23
23
WrongWrong (@k163377 )
24
24
* #627 : Merge creator cache for Constructor and Method
25
25
* #628 : Remove unnecessary cache
26
- * #631 : Fix minor bugs in SimpleModule.addSerializer/addDeserializer(#558)
26
+ * #629 : Changed to not cache valueParameters
27
+ * #631 : Fix minor bugs in SimpleModule.addSerializer/addDeserializer
28
+ * #634 : Fix ReflectionCache to be serializable
27
29
28
30
# 2 .14.0
29
31
Original file line number Diff line number Diff line change @@ -22,13 +22,23 @@ Co-maintainers:
22
22
(fix via [jackson - dataformat - xml #547 ])
23
23
#580 : Lazy load UNIT_TYPE
24
24
(contributed by Ilya R )
25
- #627 : Merge creator cache for Constructor and Method
26
- #628 : Remove unnecessary cache
27
- #631 : Fix minor bugs in SimpleModule.addSerializer/addDeserializer(#558)
25
+ #627 : Merge creator cache for Constructor and Method(related to #584)
26
+ (contributed by wrongwrong )
27
+ #628 : Remove unnecessary cache(related to #584)
28
+ (contributed by wrongwrong )
29
+ #629 : Changed to not cache valueParameters(related to #584)
30
+ (contributed by wrongwrong )
31
+ #631 : Fix minor bugs in SimpleModule.addSerializer/addDeserializer(fixes #558)
32
+ (contributed by wrongwrong )
33
+ #634 : Fix ReflectionCache to be serializable(fixes #295)
34
+ (contributed by wrongwrong )
28
35
29
- It was also confirmed that the issue submitted in #301 is no longer reproduced,
36
+ It is also confirmed that the issue submitted below is no longer reproduced ,
30
37
although it is unclear when it was explicitly fixed .
31
38
39
+ * #237
40
+ * #301
41
+
32
42
2.14 .2 (28 - Jan - 2023 )
33
43
2.14 .1 (21 - Nov - 2022 )
34
44
You can’t perform that action at this time.
0 commit comments