Skip to content

Commit

Permalink
doc: update README.md CHANGELOG.md and added COMPARE_WITH_SOLACE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
helios57 committed Jun 12, 2024
1 parent 841bdea commit 2488073
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [4.2.0] - 2024-06-12
### Changed
- By Solace #290 migrate to producer bindings to use JCSMP producer flows
- By Solace #269 give consumer binding threads readable names
- By Solace #294 DATAGO-76828: add transacted producer support
- Bump versions to spring boot 3.3.0 and spring cloud 2023.0.2

## [4.0.1] - 2024-05-13
### Fixed

Expand Down
13 changes: 13 additions & 0 deletions COMPARE_WITH_SOLACE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Difference between the splace binder and this fork

Additional:
- Support for non-persistent publish and subscribe
- Support for groups in direct subscription using #share subscription on topics.
- Reapply subscriptions on temporary queues after reconnect with more than 60 sec interruption
- Fixed startup error with anonymous queues when broker is under load

Not supported by fork on purpose:
- Batch processing - We judge this feature as unnecessary complex and an anti-pattern
- Selector - This is a JMS feature generating a lot of traffic and the same effect can be done easy by a simple filter
- TopicEndPoint - This is a JMS feature and an anti pattern
- Multi maven project - a simple maven project does the job as well and is less expensive to maintain
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,18 @@ Consult the table below to determine which version of the BOM you need to use:

| Spring Cloud | Spring Cloud Stream Binder Solace | Spring Boot | sol-jcsmp |
|--------------|-----------------------------------|-------------|-----------|
| 2023.0.2 | 4.2.0 | 3.3.0 | 10.23.0 |
| 2023.0.1 | 4.0.1 | 3.2.5 | 10.23.0 |
| 2023.0.1 | 4.0.0 | 3.2.5 | 10.23.0 |

For older versions you can try at your own risk or use the original version from solace:
https://github.com/SolaceDev/solace-spring-cloud

## Fork vs Original

Check out the difference between this fork and the original solace spring cloud stream binder
[COMPARE_WITH_SOLACE.md](COMPARE_WITH_SOLACE.md)

## Using it with Maven

```xml
Expand All @@ -39,7 +45,7 @@ https://github.com/SolaceDev/solace-spring-cloud
<dependency>
<groupId>ch.sbb</groupId>
<artifactId>spring-cloud-stream-binder-solace</artifactId>
<version>4.0.1</version>
<version>4.2.0</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit 2488073

Please sign in to comment.