-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/Spring Boot 3 #882
Conversation
The changes are mostly due to the javax-->jakarta package rename, but there are some more things that needed to be changed for Spring Boot 3 to work. One of them is the upgrade to a newer version of flapdoodle embedded MongoDB with considerable changes to the API. Another one is that the hack for getting the spring.application.name property as a default value into our configuration property classes does not seem to work anymore, so it is replaced by a BeanPostProcessor. Fixes #852
Fixes #852
…ame test database Fixes #852
… might or might not be there Fixes #852
…870) * fix #862: Made start form key retrieval more robust * chore(deps): bump org.jetbrains.dokka:dokka-maven-plugin (#860) Bumps [org.jetbrains.dokka:dokka-maven-plugin](https://github.com/Kotlin/dokka) from 1.8.20 to 1.9.0. - [Release notes](https://github.com/Kotlin/dokka/releases) - [Commits](Kotlin/dokka@v1.8.20...v1.9.0) --- updated-dependencies: - dependency-name: org.jetbrains.dokka:dokka-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump org.apache.maven.plugins:maven-enforcer-plugin (#866) Bumps [org.apache.maven.plugins:maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/apache/maven-enforcer/releases) - [Commits](apache/maven-enforcer@enforcer-3.4.0...enforcer-3.4.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-enforcer-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump jgiven.version from 1.2.5 to 1.3.0 (#868) Bumps `jgiven.version` from 1.2.5 to 1.3.0. Updates `com.tngtech.jgiven:jgiven-junit5` from 1.2.5 to 1.3.0 - [Release notes](https://github.com/TNG/jgiven/releases) - [Changelog](https://github.com/TNG/JGiven/blob/master/CHANGELOG.md) - [Commits](TNG/JGiven@v1.2.5...v1.3.0) Updates `com.tngtech.jgiven:jgiven-spring` from 1.2.5 to 1.3.0 - [Release notes](https://github.com/TNG/jgiven/releases) - [Changelog](https://github.com/TNG/JGiven/blob/master/CHANGELOG.md) - [Commits](TNG/JGiven@v1.2.5...v1.3.0) Updates `com.tngtech.jgiven:jgiven-spring-junit5` from 1.2.5 to 1.3.0 - [Release notes](https://github.com/TNG/jgiven/releases) - [Changelog](https://github.com/TNG/JGiven/blob/master/CHANGELOG.md) - [Commits](TNG/JGiven@v1.2.5...v1.3.0) Updates `com.tngtech.jgiven:jgiven-html5-report` from 1.2.5 to 1.3.0 - [Release notes](https://github.com/TNG/jgiven/releases) - [Changelog](https://github.com/TNG/JGiven/blob/master/CHANGELOG.md) - [Commits](TNG/JGiven@v1.2.5...v1.3.0) --- updated-dependencies: - dependency-name: com.tngtech.jgiven:jgiven-junit5 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.tngtech.jgiven:jgiven-spring dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.tngtech.jgiven:jgiven-spring-junit5 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.tngtech.jgiven:jgiven-html5-report dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump axon-gateway-extension.version from 1.1.2 to 2.0.0 Bumps `axon-gateway-extension.version` from 1.1.2 to 2.0.0. Updates `io.holixon.axon.gateway:axon-gateway-extension` from 1.1.2 to 2.0.0 - [Release notes](https://github.com/holixon/axon-gateway-extension/releases) - [Commits](holixon/axon-gateway-extension@1.1.2...2.0.0) Updates `io.holixon.axon.gateway:axon-gateway-spring-boot-starter` from 1.1.2 to 2.0.0 --- updated-dependencies: - dependency-name: io.holixon.axon.gateway:axon-gateway-extension dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.holixon.axon.gateway:axon-gateway-spring-boot-starter dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Tim Silhan <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Simon Zambrovski <[email protected]>
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
Main branch to upgrade to Spring Boot 3, Camunda 7.20 and Axon 4.8.
Will fix #852