Commit Graph

285 Commits

Author SHA1 Message Date
buildmaster
85ffd4d92d Going back to snapshots 2022-03-31 20:05:34 +00:00
buildmaster
a9bd88acce Update SNAPSHOT to 4.0.0-M2 2022-03-31 20:02:59 +00:00
spencergibb
6b9f6a5163 Moves core/docs to root of project for compatibility
Resolves https://github.com/spring-cloud/spring-cloud-stream/issues/2312
2022-03-30 16:05:21 -04:00
Soby Chacko
e1232ae731 Restructuring the repository 2022-02-23 19:42:29 -05:00
Marcus Kempe
5c62dd6b55 Language improvement spring-cloud-stream docs
Improved language in the Bindings chapter.
2022-02-08 10:52:39 +01:00
buildmaster
333017b8b7 Going back to snapshots 2022-01-27 14:55:34 +00:00
buildmaster
9dbe9ef691 Update SNAPSHOT to 4.0.0-M1 2022-01-27 14:53:31 +00:00
buildmaster
1ccf0ad607 Going back to snapshots 2022-01-27 14:28:46 +00:00
buildmaster
44cdca6462 Update SNAPSHOT to 4.0.0-M1 2022-01-27 14:27:15 +00:00
Oleg Zhurakousky
d7ae0ca987 Merge branch '4.x' into main 2022-01-18 14:13:20 +01:00
Mandy Neumann
72820c1544 Fix some spelling errors 2022-01-18 10:35:42 +01:00
Mandy Neumann
ede1d0f0f7 Fix some spelling errors 2022-01-18 10:34:40 +01:00
Oleg Zhurakousky
872edb2f24 GH-2265 Add support for creating explicit bindings
Resolves #2265
2022-01-14 15:57:41 +01:00
Oleg Zhurakousky
738b658ae9 GH-2265 Add support for creating explicit bindings
Resolves #2265
2022-01-14 15:55:12 +01:00
Soby Chacko
be5b2df1f8 Remove BinderAwareChannelResolver
We deprecated BinderAwareChannelResolver in 3.0.0 in preference to
spring.cloud.stream.sendto.destination and then later on StreamBridge.
Remove BinderAwareChannelResolver and it's related components completely in 4.0.x.
2022-01-07 15:32:15 -05:00
Soby Chacko
6bc8cb20b5 Update version on the docs project 2022-01-04 14:22:05 -05: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
b97badcf2d Fix spelling errors in doc 2021-12-01 11:04:25 +01:00
Oleg Zhurakousky
abefd534f9 Fix spelling errors in doc 2021-12-01 11:03:50 +01:00
Oleg Zhurakousky
adc7eede3d GH-2213 Add docs to clarify SpEL usage
Resolves #2213
2021-11-30 14:06:44 +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