diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 12e0b48fb..2531061ca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,10 +28,10 @@ jobs: max-parallel: 5 matrix: java_version: ['8', '11', '17', '21', '23'] - kotlin_version: ['1.9.24', '2.0.21', '2.1.0'] + kotlin_version: ['1.9.25', '2.0.21', '2.1.0'] include: - java_version: '8' - kotlin_version: '1.9.24' + kotlin_version: '1.9.25' release_build: 'R' env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" diff --git a/pom.xml b/pom.xml index e5770e1c3..413a1f647 100644 --- a/pom.xml +++ b/pom.xml @@ -62,7 +62,7 @@ 1.8 1.8 - 1.9.24 + 1.9.25 com/fasterxml/jackson/module/kotlin diff --git a/release-notes/VERSION-2.x b/release-notes/VERSION-2.x index 162d064b8..76c23334e 100644 --- a/release-notes/VERSION-2.x +++ b/release-notes/VERSION-2.x @@ -17,6 +17,8 @@ Co-maintainers: ------------------------------------------------------------------------ 2.19.0 (not yet released) + +#889: Kotlin has been upgraded to 1.9.25. #885: A new `StrictNullChecks` option(KotlinFeature.NewStrictNullChecks) has been added which greatly improves throughput. Benchmarks show a consistent throughput drop of less than 2% when enabled (prior to the improvement, the worst throughput drop was more than 30%). Note that the new backend changes the exception thrown to `InvalidNullException` and with it the error message. @@ -28,7 +30,6 @@ Co-maintainers: This is a problematic process that has been marked as deprecated for a very long time and will be removed in 2.20 or later. #878: Fixed a problem where settings like `@JsonSetter(nulls = AS_EMPTY)` were not being applied when the input was `undefined`. #869: By using Enum.entries in the acquisition of KotlinFeature.defaults, the initialization load was reduced, albeit slightly. -#861: Kotlin has been upgraded to 1.9.24. #858: Minor performance improvement of findDefaultCreator in edge cases. #839: Remove useKotlinPropertyNameForGetter and unify with kotlinPropertyNameAsImplicitName. #835: Remove old SingletonSupport class and unified with KotlinFeature.SingletonSupport.