Start version 6.4

* Move `whats-new` to `changes-6.2-6.3.adoc`
* Upgrade dependency to the latest (including Gradle)
* Move Spring dependencies to based on SF-6.2
* Fix some deprecations and incompatibility
This commit is contained in:
Artem Bilan
2024-05-28 20:07:35 -04:00
parent dc96ff6a2d
commit 8b2da4f996
18 changed files with 150 additions and 201 deletions

View File

@@ -254,6 +254,7 @@
* xref:samples.adoc[]
* xref:resources.adoc[]
* xref:history.adoc[]
** xref:changes-6.2-6.3.adoc[]
** xref:changes-6.1-6.2.adoc[]
** xref:changes-6.0-6.1.adoc[]
** xref:changes-5.5-6.0.adoc[]

View File

@@ -0,0 +1,39 @@
[[migration-6.2-6.3]]
= Changes between 6.2 and 6.3
[[x6.3-new-components]]
== New Components
[[x6.3-general]]
== General Changes
The `MessageHistory` header is now mutable, append-only container.
And all the subsequent tracks don't create new message - only their entry is added to existing message history header.
See xref:message-history.adoc[Message History Chapter] for more information.
All the `MessageChannel` implementations based on the `UnicastingDispatcher` now can be configured with a `Predicate<Exception> failoverStrategy` for dynamic decision for the failover on the exception thrown from the current `MessageHandler`.
See xref:channel/configuration.adoc[Message Channel Configuration] for more information.
[[x6.3-security-changes]]
== Security Support Changes
The `spring-integration-security` module is completely removed (being deprecated previously) in favor of API from `spring-security-messaging` module.
See xref:security.adoc[Security in Spring Integration] for more information.
[[x6.3-mqtt]]
== MQTT Support Changes
The fine-grained configuration based on `MqttSubscription` API is exposed on the `Mqttv5PahoMessageDrivenChannelAdapter`.
See xref:mqtt.adoc[MQTT Support] for more information.
[[x6.3-testing]]
== Testing Support Changes
The `MockIntegrationContext.substituteTriggerFor()` API has been introduced.
See xref:testing.adoc[Testing Support] for more information.
[[x6.3-jms]]
== JMS Support Changes
The `ChannelPublishingJmsMessageListener` can now be supplied with a `RetryTemplate` and `RecoveryCallback<Message<?>>` for retries on the downstream send operations.
See xref:jms.adoc#jms-message-driven-channel-adapter[Message Driven Channel Adapter] for more information.

View File

@@ -15,13 +15,13 @@ This section details the compatible https://www.oracle.com/technetwork/java/java
[[supported-java-versions]]
=== Compatible Java Versions
For Spring Integration 6.3.x, the minimum compatible Java version is Java SE 17.
For Spring Integration 6.4.x, the minimum compatible Java version is Java SE 17.
Older versions of Java are not supported.
[[supported-spring-versions]]
=== Compatible Versions of the Spring Framework
Spring Integration 6.3.x requires Spring Framework 6.1 or later.
Spring Integration 6.4.x requires Spring Framework 6.2 or later.
[[code-conventions]]
== Code Conventions

View File

@@ -2,50 +2,19 @@
= What's New?
[[spring-integration-intro-new]]
For those who are already familiar with Spring Integration, this chapter provides a brief overview of the new features of version 6.3.
For those who are already familiar with Spring Integration, this chapter provides a brief overview of the new features of version 6.4.
If you are interested in the changes and features that were introduced in earlier versions, see the xref:history.adoc[Change History].
[[what-s-new-in-spring-integration-6-3]]
== What's New in Spring Integration 6.3?
[[what-s-new-in-spring-integration-6-4]]
== What's New in Spring Integration 6.4?
If you are interested in more details, see the Issue Tracker tickets that were resolved as part of the 6.3 development process.
If you are interested in more details, see the Issue Tracker tickets that were resolved as part of the 6.4 development process.
In general the project has been moved to the latest dependency versions.
[[x6.3-new-components]]
[[x6.4-new-components]]
=== New Components
[[x6.3-general]]
=== General Changes
The `MessageHistory` header is now mutable, append-only container.
And all the subsequent tracks don't create new message - only their entry is added to existing message history header.
See xref:message-history.adoc[Message History Chapter] for more information.
All the `MessageChannel` implementations based on the `UnicastingDispatcher` now can be configured with a `Predicate<Exception> failoverStrategy` for dynamic decision for the failover on the exception thrown from the current `MessageHandler`.
See xref:channel/configuration.adoc[Message Channel Configuration] for more information.
[[x6.3-security-changes]]
=== Security Support Changes
The `spring-integration-security` module is completely removed (being deprecated previously) in favor of API from `spring-security-messaging` module.
See xref:security.adoc[Security in Spring Integration] for more information.
[[x6.3-mqtt]]
=== MQTT Support Changes
The fine-grained configuration based on `MqttSubscription` API is exposed on the `Mqttv5PahoMessageDrivenChannelAdapter`.
See xref:mqtt.adoc[MQTT Support] for more information.
[[x6.3-testing]]
=== Testing Support Changes
The `MockIntegrationContext.substituteTriggerFor()` API has been introduced.
See xref:testing.adoc[Testing Support] for more information.
[[x6.3-jms]]
=== JMS Support Changes
The `ChannelPublishingJmsMessageListener` can now be supplied with a `RetryTemplate` and `RecoveryCallback<Message<?>>` for retries on the downstream send operations.
See xref:jms.adoc#jms-message-driven-channel-adapter[Message Driven Channel Adapter] for more information.
[[x6.4-general]]
=== General Changes