Oleg Zhurakousky
e2b17931ac
Fix docs
2022-04-29 12:26:15 +02:00
buildmaster
5264b1b32f
Update SNAPSHOT to 3.2.3
2022-04-27 10:19:08 +00:00
Olga Maciaszek-Sharma
a8962b0206
Revert "Update SNAPSHOT to 3.2.3"
...
This reverts commit 5c698b8b1b .
2022-04-27 10:56:23 +02:00
Olga Maciaszek-Sharma
478861e5c2
Revert "Going back to snapshots"
...
This reverts commit 07c683d02a .
2022-04-27 10:56:20 +02:00
Olga Maciaszek-Sharma
f6f9ae8830
Revert "Bumping versions to 3.2.4-SNAPSHOT after release"
...
This reverts commit f4ead8d7c7 .
2022-04-27 10:56:16 +02:00
buildmaster
f4ead8d7c7
Bumping versions to 3.2.4-SNAPSHOT after release
2022-04-26 15:34:13 +00:00
buildmaster
07c683d02a
Going back to snapshots
2022-04-26 15:34:12 +00:00
buildmaster
5c698b8b1b
Update SNAPSHOT to 3.2.3
2022-04-26 15:31:19 +00:00
Soby Chacko
5b5487de4a
Generated docs
2022-03-30 16:13:28 -04:00
spencergibb
45d5ecf5ff
Moves core/docs to root of project for compatibility
...
Resolves https://github.com/spring-cloud/spring-cloud-stream/issues/2312
2022-03-30 16:08:26 -04:00
Soby Chacko
98c22b5ff6
Restructuring core
2022-03-28 13:33:49 -04:00
Oleg Zhurakousky
58a7a74cb4
GH-2280 Add per-binding poller configuration
2022-03-16 15:50:55 +01:00
Oleg Zhurakousky
1d896435c7
GH-2292 Update documentation explaining reactive/imparative composition
...
Resolves #2292
2022-03-11 17:38:03 +01:00
buildmaster
c00a8e28be
Bumping versions to 3.2.3-SNAPSHOT after release
2022-02-16 18:10:47 +00:00
buildmaster
ade24c521b
Going back to snapshots
2022-02-16 18:10:46 +00:00
buildmaster
699f2baf5e
Update SNAPSHOT to 3.2.2
2022-02-16 18:08:42 +00:00
Mandy Neumann
ede1d0f0f7
Fix some spelling errors
2022-01-18 10:34:40 +01:00
Oleg Zhurakousky
738b658ae9
GH-2265 Add support for creating explicit bindings
...
Resolves #2265
2022-01-14 15:55:12 +01:00
buildmaster
f25ce49cb1
Bumping versions to 3.2.2-SNAPSHOT after release
2021-12-01 16:39:17 +00:00
buildmaster
c7a2d02f55
Going back to snapshots
2021-12-01 16:39:16 +00:00
buildmaster
94c2a01687
Update SNAPSHOT to 3.2.1
2021-12-01 16:36:05 +00:00
buildmaster
b0901d57f3
Bumping versions to 3.2.1-SNAPSHOT after release
2021-12-01 11:42:58 +00:00
buildmaster
2863fb03fe
Going back to snapshots
2021-12-01 11:42:57 +00:00
buildmaster
7c1b7d7021
Update SNAPSHOT to 3.2.0
2021-12-01 11:40:15 +00:00
Oleg Zhurakousky
abefd534f9
Fix spelling errors in doc
2021-12-01 11:03:50 +01:00
Oleg Zhurakousky
ec2422418b
GH-2213 Add docs to clarify SpEL usage
...
Resolves #2213
2021-11-30 14:04:10 +01:00
Eugen Cristea
f860177381
Content Type Negotiation
...
message handler example fix
2021-11-30 11:15:28 +01:00
Oleg Zhurakousky
a2495bc920
GH-2243 Document spring.cloud.stream.dynamic-destination-cache-size property
...
Resolves #2243
2021-11-03 16:31:07 +01:00
buildmaster
67d20e8367
Going back to snapshots
2021-11-03 08:36:00 +00:00
buildmaster
470b42d4d2
Update SNAPSHOT to 3.2.0-RC1
2021-11-03 08:34:20 +00:00
Soby Chacko
ac33329260
Remove schema registry references from the docs
2021-11-02 15:43:05 +01:00
Artem Bilan
f8a570a2cb
Remove poller props in favor of Spring Boot
...
Starting with Spring Boot `2.6`, the auto-configuration
for Spring Integration introduces `poller` properties.
The `DefaultPollerProperties` and its respective `ChannelBindingAutoConfiguration` are not needed any more.
* Add `PollerConfigEnvironmentPostProcessor` to remap deprecated
`spring.cloud.stream.poller` into respective `spring.integration.poller`
properties
* Mention in the docs a deprecation move and its replacement
Related to: https://github.com/spring-projects/spring-boot/pull/27992
Resolves #2233
2021-10-18 16:07:21 +02:00
buildmaster
b44e55d247
Going back to snapshots
2021-10-01 13:41:23 +00:00
buildmaster
b174cb4a32
Update SNAPSHOT to 3.2.0-M2
2021-10-01 13:38:47 +00:00
buildmaster
c5a58f0fc1
Going back to snapshots
2021-07-30 14:52:58 +00:00
buildmaster
174b973d8f
Update SNAPSHOT to 3.2.0-M1
2021-07-30 14:51:14 +00:00
Oleg Zhurakousky
6036a9695b
Fix POMs for 3.2
2021-07-13 16:32:40 +02:00
Oleg Zhurakousky
89e09afa74
GH-2151 Document ProducerMessageHandlerCustomizer
...
Resolves #2151
2021-06-29 12:00:24 +02:00
Soby Chacko
76c0a2488b
StreamBridge and ChannelInterceptors enhancements
...
Currently, when `StreamBridge` creates an output binding, the framework
applies all the available channel interceptors on it by default. This
creates unwanted side effects and the application does not have a way
to control this. Change this behavior by only applying channel interceptors
annoatated with `@GlobalChannelInterceptor`. This way, the user can
provide patterns to decide which interceptors need to be applied on
specific `StreamBridge` bindings.
Adding tests to verify.
Adding docs.
Resolves https://github.com/spring-cloud/spring-cloud-stream/issues/2180
2021-06-11 16:44:41 +02:00
LiangYong
71f1af3c51
fix document example code missing semicolon issue
2021-06-08 15:21:08 -04:00
buildmaster
2f90a08f0b
Bumping versions to 3.1.4-SNAPSHOT after release
2021-05-26 15:24:55 +00:00
buildmaster
fe163257fa
Going back to snapshots
2021-05-26 15:24:54 +00:00
buildmaster
50ba1b08a7
Update SNAPSHOT to 3.1.3
2021-05-26 15:22:18 +00:00
Oleg Zhurakousky
70537b924e
GH-2164 Update documentation
...
Remove obsolete docs and add deprecations and update what's new section
Resolves #2164
2021-05-25 14:53:08 +02:00
Oleg Zhurakousky
2677035779
GH-2114 Add support for multiple binders to StreamBridge
...
Resolves #2114
2021-05-25 14:33:25 +02:00
Oleg Zhurakousky
717a8e4f8b
polish docs
...
Resolves #2150
2021-05-25 12:51:38 +02:00
Ильиных Илья Сергеевич
245e80ab52
Fixed spring-cloud-stream.adoc documentation rendering
2021-05-25 12:50:22 +02:00
Wai Loon
689d64c655
Fixed typo in spring-cloud-stream.adoc
2021-05-25 12:44:46 +02:00
Oleg Zhurakousky
dadb8af280
GH-2143 Add documentation for batch producers
...
Resolves #2143
2021-05-25 12:42:19 +02:00
Oleg Zhurakousky
b2b95dc7d2
GH-2168 Ensure output binding is not assumed for RoutingFunction
...
Given that RoutingFunction may actualy route to Consumer, there is no need for output binding.
This fix addresses it where no output binding is created initially and instead the output binding will be created if and when the firt output is produced.
Resolves #2168
2021-05-07 15:21:59 +02:00