camunda-community-hub / spring-zeebe

DEPRECATED. Easily use the Zeebe Java Client in your Spring or Spring Boot projects
Apache License 2.0
208 stars 120 forks source link

Can a Spring Zeebe client with version 8.5 connect to zeebe version 8.1? #914

Closed mashimaro7646 closed 3 months ago

mashimaro7646 commented 3 months ago

Can a Spring Zeebe client with version 8.5 connect to zeebe version 8.1? The server previously installed zeebe version 8.1 and is currently using it in production. Now due to security issues, the client needs to upgrade spring to version 3.3, so spring zeebe also needs to be upgraded to 8.5. However, it is difficult to upgrade the production zeebe to 8.5, so I want to try to use the 8.5 client to connect to zeebe.

sephiroth-j commented 3 months ago

No, the Zeebe client 8.5 can only communicate with Zeebe that have the same or a newer version.

see also Version compatibility of 8.5

mashimaro7646 commented 3 months ago

Thank you so much