Skip to content

Commit 9c6e3bc

Browse files
authored
Merge pull request #639 from k163377/update-release-notes-and-docs
Update release notes and docs
2 parents a963209 + bd06aa3 commit 9c6e3bc

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,12 @@ see the [inline documentation](https://github.com/FasterXML/jackson-module-kotli
201201
for details on what options are available and what they do.
202202

203203
```kotlin
204+
val kotlinModule = KotlinModule.Builder()
205+
.enable(KotlinFeature.StrictNullChecks)
206+
.build()
204207
val mapper = JsonMapper.builder()
205-
.addModule(KotlinModule(strictNullChecks = true))
206-
.build()
208+
.addModule(kotlinModule)
209+
.build()
207210
```
208211

209212
If your `ObjectMapper` is constructed in Java, there is a builder method

release-notes/CREDITS-2.x

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ Ilya Ryzhenkov (@orangy)
2323
WrongWrong (@k163377)
2424
* #627: Merge creator cache for Constructor and Method
2525
* #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
2729

2830
# 2.14.0
2931

release-notes/VERSION-2.x

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,23 @@ Co-maintainers:
2222
(fix via [jackson-dataformat-xml#547])
2323
#580: Lazy load UNIT_TYPE
2424
(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)
2835

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,
3037
although it is unclear when it was explicitly fixed.
3138

39+
* #237
40+
* #301
41+
3242
2.14.2 (28-Jan-2023)
3343
2.14.1 (21-Nov-2022)
3444

0 commit comments

Comments
 (0)