chore(deps)!: upgrade to java 25 and needed deps#415
Merged
Conversation
Bumps [org.springdoc:springdoc-openapi-starter-webmvc-ui](https://github.com/springdoc/springdoc-openapi) from 2.8.13 to 3.0.0. - [Release notes](https://github.com/springdoc/springdoc-openapi/releases) - [Changelog](https://github.com/springdoc/springdoc-openapi/blob/main/CHANGELOG.md) - [Commits](springdoc/springdoc-openapi@v2.8.13...v3.0.0) --- updated-dependencies: - dependency-name: org.springdoc:springdoc-openapi-starter-webmvc-ui dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
- Bump Spring Boot version to 4.0.1 - Update Lombok to 1.18.42 and configure annotation processor - Refactor TestRestRequest to use the newer RestClient API - Delete unused gtfs.zip file
- Upgrade Docker image build to Java 25. - Bump Maven compiler source and target to 25 across all modules - Upgrade maven version
- Replace `jetbrains-annotations` dependency with `jspecify` 1.0.0 - Migrate usages of `@org.jetbrains.annotations.Nullable` to `@org.jspecify.annotations.Nullable` - Migrate usages of `@org.jetbrains.annotations.NotNull` to `@org.jspecify.annotations.NonNull`
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 Java 25 and updates several dependencies and configurations to ensure compatibility. It also modernizes the integration test setup by switching to the new
RestClientAPI and replaces the usage of JetBrains annotations with JSpecify. Below are the most important changes grouped by theme:Java and Dependency Upgrades:
pom.xml), and GitHub Actions workflows. This ensures the codebase is built and run using Java 25. [1] F122d1a5L7, [2] [3] [4] [5] [6] [7]springdoc-openapi-starter-webmvc-uifrom 2.8.14 to 3.0.0. [1] [2]Annotation and API Modernization:
org.jetbrains.annotations.Nullablewithorg.jspecify.annotations.Nullablefor nullability annotations across the codebase. [1] [2] [3] [4] [5] [6] [7]Integration Test Improvements:
TestRestTemplateto the newRestClientAPI, including adding a test configuration (TestRestClientConfig) and updatingTestRestRequestto useRestClient. This provides better flexibility and future-proofs test HTTP client usage. [1] [2] [3] [4]Build and Compilation Enhancements:
Minor Code and Formatting Updates:
mainmethods package-private (removedpublic) in entry-point classes, which is a minor visibility adjustment. [1] [2]pom.xmlfiles for consistency. [1] [2] [3] [4]These updates ensure the project is aligned with the latest Java and Spring ecosystem standards and improve test maintainability and code clarity.