2.0.0 synchup 1.0.0 - #130
Merged
Merged
Conversation
Spring Boot 4.0.6 brings JUnit 6, whose API is JSpecify @NullMarked. The Kotlin compiler now enforces assertThrows' <T : Throwable> bound as non-null, so the explicit nullable type argument (assertThrows<IllegalArgumentException?>) no longer compiles. Drop the nullable type argument and the redundant Executable wrapper in StringTrimmingUtilsKtTest; SAM conversion supplies the Executable. No behavior change. Kotlin compiler version is unchanged (2.1.10).
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.
This pull request upgrades the project to version
2.0.0-SNAPSHOTand migrates from thecom.fasterxml.jacksonlibrary to thetools.jacksonnamespace throughout the codebase. Additionally, it updates dependencies, refactors code to use the new Jackson APIs, and improves test code readability. A new test dependency for Spring Boot Neo4j integration is also added.Version Upgrades and Dependency Management:
1.0.1-SNAPSHOT(or1.0.0) to2.0.0-SNAPSHOTin allpom.xmlfiles, including the root and submodules. [1] [2] [3] [4] [5] [6] [7] [8]jackson-module-kotlindependency fromcom.fasterxml.jackson.moduletotools.jackson.modulein all relevantpom.xmlfiles. [1] [2] [3]Jackson Migration:
com.fasterxml.jacksontotools.jackson, including serializers and annotations. [1] [2] [3]ComputerSaysNoSerializerto extendValueSerializerand useSerializationContextinstead of the deprecatedJsonSerializerandSerializerProvider.Testing Improvements:
spring-boot-data-neo4j-testdependency for improved Neo4j integration testing inembabel-common-test-neo.StringTrimmingUtilsKtTest.ktto use lambda-basedassertThrowsfor better readability and idiomatic Kotlin. [1] [2]Spring Boot Annotation Update:
AutoConfigureDataNeo4jto use the new package path inNeoIntegrationTest.kt.These changes collectively modernize the codebase, ensure compatibility with the latest Jackson library, and streamline testing and dependency management.