Skip to content

Commit 2877b7e

Browse files
authored
Release 8.5.2 (#342)
* deps: bump go-client to 8.5.2 * deps: bump java-client to 8.5.2 * deps: bump spring-client to 8.5.2
1 parent c4f34bf commit 2877b7e

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

go/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
toolchain go1.21.8
66

7-
require github.com/camunda/zeebe/clients/go/v8 v8.5.0
7+
require github.com/camunda/zeebe/clients/go/v8 v8.5.2
88

99
require (
1010
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
@@ -17,7 +17,7 @@ require (
1717
github.com/pmezard/go-difflib v1.0.0 // indirect
1818
github.com/rogpeppe/go-internal v1.9.0 // indirect
1919
github.com/stretchr/testify v1.9.0 // indirect
20-
golang.org/x/net v0.22.0 // indirect
20+
golang.org/x/net v0.23.0 // indirect
2121
golang.org/x/oauth2 v0.18.0 // indirect
2222
golang.org/x/sys v0.18.0 // indirect
2323
golang.org/x/text v0.14.0 // indirect

go/go.sum

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 h1:zV3ejI06
22
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496/go.mod h1:oGkLhpf+kjZl6xBf758TQhh5XrAeiJv/7FRz/2spLIg=
33
github.com/camunda/zeebe/clients/go/v8 v8.5.0 h1:cEKkBNsu17dIYOG5NyF8HZOuNx6bmJSkqjr4YsbLkzM=
44
github.com/camunda/zeebe/clients/go/v8 v8.5.0/go.mod h1:UO1POEqpIUY04pidoY3lVD3UXXFqLn+dsYIaCuwymYk=
5+
github.com/camunda/zeebe/clients/go/v8 v8.5.1 h1:pqQYBFU/qjgwMsL2Dj1WkOez9JBDAKycFK/xrr3gAjk=
6+
github.com/camunda/zeebe/clients/go/v8 v8.5.1/go.mod h1:mx6wq3Z6Mfjda3yDe6Pl1G6BjX+VjkYYtWgoRQPgoFQ=
7+
github.com/camunda/zeebe/clients/go/v8 v8.5.2 h1:08OOgFzJnQoWAVONhD07U3em3wkWTXB/oFtzvKnHneE=
8+
github.com/camunda/zeebe/clients/go/v8 v8.5.2/go.mod h1:mx6wq3Z6Mfjda3yDe6Pl1G6BjX+VjkYYtWgoRQPgoFQ=
59
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
610
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
711
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
@@ -45,6 +49,8 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v
4549
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
4650
golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc=
4751
golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
52+
golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
53+
golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
4854
golang.org/x/oauth2 v0.18.0 h1:09qnuIAgzdx1XplqJvW6CQqMCtGZykZWcXzPMPUusvI=
4955
golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8=
5056
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

java/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ provides a Zeebe client.
1313
<dependency>
1414
<groupId>io.camunda</groupId>
1515
<artifactId>zeebe-client-java</artifactId>
16-
<version>8.5.0</version>
16+
<version>8.5.2</version>
1717
</dependency>
1818
```
1919

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>
1313
<maven.compiler.target>11</maven.compiler.target>
14-
<zeebe.version>8.5.0</zeebe.version>
14+
<zeebe.version>8.5.2</zeebe.version>
1515
<log4j.version>2.19.0</log4j.version>
1616
<main.class>io.camunda.getstarted.DeployAndStartInstance</main.class>
1717
</properties>

spring/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provides a Zeebe client.
1212
<dependency>
1313
<groupId>io.camunda</groupId>
1414
<artifactId>spring-zeebe-starter</artifactId>
15-
<version>8.5.0</version>
15+
<version>8.5.2</version>
1616
</dependency>
1717
```
1818

spring/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<properties>
2020
<java.version>11</java.version>
2121
<spring-zeebe.version>8.1.17</spring-zeebe.version>
22-
<zeebe.version>8.5.0</zeebe.version>
22+
<zeebe.version>8.5.2</zeebe.version>
2323
</properties>
2424

2525
<dependencies>

0 commit comments

Comments
 (0)