Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 26, 2025

Bumps the maven-dependencies group with 9 updates:

Package From To
org.axonframework:axon-messaging 4.10.0 4.11.2
org.axonframework:axon-configuration 4.11.0 4.11.2
org.axonframework:axon-server-connector 4.11.0 4.11.2
org.axonframework:axon-spring 4.11.0 4.11.2
org.axonframework:axon-spring-boot-autoconfigure 4.10.0 4.11.2
org.junit.jupiter:junit-jupiter 5.10.1 5.12.2
org.junit.jupiter:junit-jupiter-api 5.10.1 5.12.2
org.jacoco:jacoco-maven-plugin 0.8.11 0.8.13
org.axonframework:axon-test 4.10.0 4.11.2

Updates org.axonframework:axon-messaging from 4.10.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-messaging's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.axonframework:axon-configuration from 4.11.0 to 4.11.2

Updates org.axonframework:axon-server-connector from 4.11.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-server-connector's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.axonframework:axon-spring from 4.11.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-spring's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.axonframework:axon-spring-boot-autoconfigure from 4.10.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-spring-boot-autoconfigure's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.axonframework:axon-configuration from 4.11.0 to 4.11.2

Updates org.axonframework:axon-server-connector from 4.11.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-server-connector's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.axonframework:axon-spring from 4.11.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-spring's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.axonframework:axon-spring-boot-autoconfigure from 4.10.0 to 4.11.2

Release notes

Sourced from org.axonframework:axon-spring-boot-autoconfigure's releases.

Axon Framework v4.11.2

⭐ Features

  • #3170 Persistent streams - auto configuration #3339
  • #3170 Persistent streams - automatic configuration #3184
  • Persistent streams - automatic configuration #3170

📈 Enhancements

  • Ignore aggregates that have been AggregateLifecycle#markDeleted when using the Create-if-missing policy. #3333
  • Split default Avro schema store creation from the schema scan #3329
  • Separate AvroSchemaScan based detection of schemas and creation of a default Avro SchemaStore #3328
  • Proper handling of attempts to recreate event sourcing aggregates marked as deleted #3323

🪲 Bug fixes

  • #3385 Align interceptor behavior for Aggregate Members #3404
  • CommandHandlerInterceptor on Aggregate Member only called if Aggregate has CommandHandlerInterceptor as well #3385
  • Fix default Snapshotter throwing IndexOutOfBoundsException #3375
  • fix Correlation data table #3370
  • Fixes subscription query update permits issue #3356
  • #3171 Support @CreationPolicy annotated interface methods again #3335
  • Reset the Coordinator's processing gate if the Coordinator was aborted and rescheduled #3307

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Axon Framework v4.11.1

⚠️ Chance for duplicate interceptor registration

In 4.11.0 of Axon Framework, Spring Boot auto-configuration support for MessageHandlerInterceptors and MessageDispatchInterceptors was introduced. For those curious how this was achieved, we refer to #3203.

Although the feature on it's own shouldn't cause trouble, be aware that if the Axon Framework application you are working on already exposes MessageHandlerInterceptors and MessageDispatchInterceptors beans in the Spring Application Context. When this is the case, in combination with custom code to wire these beans into your infrastructure components, the chance is high they'll be registered twice due to the aforementioned feature.

As such, we recommend to either:

  1. Remove the custom interceptor auto-configuration, to pass along this task to Axon Framework, or
  2. Exclude the InterceptorAutoConfiguration from your Spring Boot auto-configuration.

By following either road, you should be ascertained that interceptors are not registered twice.

... (truncated)

Commits
  • 9bc19de [maven-release-plugin] prepare release axon-4.11.2
  • 618e7b2 Merge pull request #3410 from AxonFramework/documentation/3348/interceptors-f...
  • 01243a8 Add description on how to create a persistent stream message source
  • 1d265b4 Fine tune JavaDoc
  • 2f66522 Fixed the note, as well as added a hierarchy sample
  • 21a6f9b Add note for Intercepting @EventSourcingHandler annotated methods on..
  • f36581a Merge pull request #3405 from AxonFramework/documentation/3374/allocation-size
  • 184c53f Merge pull request #3404 from AxonFramework/bug/3385/interceptor-chain-not-found
  • 397f961 Add allocation-size details
  • 98fe1c5 Merge branch 'axon-4.11.x' into bug/3385/interceptor-chain-not-found
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter from 5.10.1 to 5.12.2

Release notes

Sourced from org.junit.jupiter:junit-jupiter's releases.

JUnit 5.12.2 = Platform 1.12.2 + Jupiter 5.12.2 + Vintage 5.12.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.1...r5.12.2

JUnit 5.12.1 = Platform 1.12.1 + Jupiter 5.12.1 + Vintage 5.12.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.0...r5.12.1

JUnit 5.12.0 = Platform 1.12.0 + Jupiter 5.12.0 + Vintage 5.12.0

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r5.11.4...r5.12.0

JUnit 5.12.0-RC2 = Platform 1.12.0-RC2 + Jupiter 5.12.0-RC2 + Vintage 5.12.0-RC2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.0-RC1...r5.12.0-RC2

JUnit 5.12.0-RC1 = Platform 1.12.0-RC1 + Jupiter 5.12.0-RC1 + Vintage 5.12.0-RC1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.0-M1...r5.12.0-RC1

JUnit 5.12.0-M1 = Platform 1.12.0-M1 + Jupiter 5.12.0-M1 + Vintage 5.12.0-M1

See Release Notes.

New Contributors

... (truncated)

Commits
  • 0a44659 Release 5.12.2
  • 4c7dfdc Finalize 5.12.2 release notes
  • 561613e Fix handling of CleanupMode.ON_SUCCESS
  • 19d07d2 Add 5.12.2 release notes from template
  • 803cbb6 Add build parameter for enabling dry-run mode for test execution
  • eb43e62 Back to snapshots for further development
  • ba9c9ae Release 5.12.1
  • e28ad4a Finalize 5.12.1 release notes
  • 1044e2c Move entry to 5.12.1 release notes
  • bea821d Fix Javadoc formatting
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-api from 5.10.1 to 5.12.2

Release notes

Sourced from org.junit.jupiter:junit-jupiter-api's releases.

JUnit 5.12.2 = Platform 1.12.2 + Jupiter 5.12.2 + Vintage 5.12.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.1...r5.12.2

JUnit 5.12.1 = Platform 1.12.1 + Jupiter 5.12.1 + Vintage 5.12.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.0...r5.12.1

JUnit 5.12.0 = Platform 1.12.0 + Jupiter 5.12.0 + Vintage 5.12.0

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r5.11.4...r5.12.0

JUnit 5.12.0-RC2 = Platform 1.12.0-RC2 + Jupiter 5.12.0-RC2 + Vintage 5.12.0-RC2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.12.0-RC1...r5.12.0-RC2

JUnit 5.12.0-RC1 = Platform 1.12.0-RC1 + Jupiter 5.12.0-RC1 + Vintage 5.12.0-RC1

See Release Notes.

Full Changelog: https://github...

Description has been truncated

Bumps the maven-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [org.axonframework:axon-messaging](https://github.com/AxonFramework/AxonFramework) | `4.10.0` | `4.11.2` |
| org.axonframework:axon-configuration | `4.11.0` | `4.11.2` |
| [org.axonframework:axon-server-connector](https://github.com/AxonFramework/AxonFramework) | `4.11.0` | `4.11.2` |
| [org.axonframework:axon-spring](https://github.com/AxonFramework/AxonFramework) | `4.11.0` | `4.11.2` |
| [org.axonframework:axon-spring-boot-autoconfigure](https://github.com/AxonFramework/AxonFramework) | `4.10.0` | `4.11.2` |
| [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) | `5.10.1` | `5.12.2` |
| [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.10.1` | `5.12.2` |
| [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) | `0.8.11` | `0.8.13` |
| [org.axonframework:axon-test](https://github.com/AxonFramework/AxonFramework) | `4.10.0` | `4.11.2` |


Updates `org.axonframework:axon-messaging` from 4.10.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.10.0...axon-4.11.2)

Updates `org.axonframework:axon-configuration` from 4.11.0 to 4.11.2

Updates `org.axonframework:axon-server-connector` from 4.11.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.11.0...axon-4.11.2)

Updates `org.axonframework:axon-spring` from 4.11.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.11.0...axon-4.11.2)

Updates `org.axonframework:axon-spring-boot-autoconfigure` from 4.10.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.10.0...axon-4.11.2)

Updates `org.axonframework:axon-configuration` from 4.11.0 to 4.11.2

Updates `org.axonframework:axon-server-connector` from 4.11.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.11.0...axon-4.11.2)

Updates `org.axonframework:axon-spring` from 4.11.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.11.0...axon-4.11.2)

Updates `org.axonframework:axon-spring-boot-autoconfigure` from 4.10.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.10.0...axon-4.11.2)

Updates `org.junit.jupiter:junit-jupiter` from 5.10.1 to 5.12.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit-framework@r5.10.1...r5.12.2)

Updates `org.junit.jupiter:junit-jupiter-api` from 5.10.1 to 5.12.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit-framework@r5.10.1...r5.12.2)

Updates `org.jacoco:jacoco-maven-plugin` from 0.8.11 to 0.8.13
- [Release notes](https://github.com/jacoco/jacoco/releases)
- [Commits](jacoco/jacoco@v0.8.11...v0.8.13)

Updates `org.junit.jupiter:junit-jupiter-api` from 5.10.1 to 5.12.2
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit-framework@r5.10.1...r5.12.2)

Updates `org.axonframework:axon-test` from 4.10.0 to 4.11.2
- [Release notes](https://github.com/AxonFramework/AxonFramework/releases)
- [Changelog](https://github.com/AxonFramework/AxonFramework/blob/master/axon-4-api-changes.md)
- [Commits](AxonFramework/AxonFramework@axon-4.10.0...axon-4.11.2)

---
updated-dependencies:
- dependency-name: org.axonframework:axon-messaging
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-configuration
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-server-connector
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-spring
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-spring-boot-autoconfigure
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-configuration
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-server-connector
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-spring
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-spring-boot-autoconfigure
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 5.12.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-version: 5.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.jacoco:jacoco-maven-plugin
  dependency-version: 0.8.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-version: 5.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
- dependency-name: org.axonframework:axon-test
  dependency-version: 4.11.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner May 26, 2025 14:04
@dependabot dependabot bot added this to the Release 4.11.1 milestone May 26, 2025
@dependabot dependabot bot requested review from abuijze and removed request for a team May 26, 2025 14:04
@dependabot dependabot bot requested a review from CodeDrivenMitch May 26, 2025 14:04
@dependabot dependabot bot requested a review from MateuszNaKodach May 26, 2025 14:04
@github-actions github-actions bot enabled auto-merge May 26, 2025 14:04
@sonarqubecloud
Copy link

@github-actions github-actions bot merged commit 1169c95 into main May 26, 2025
11 checks passed
@dependabot dependabot bot deleted the dependabot/maven/maven-dependencies-1091be351b branch May 26, 2025 14:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant