Skip to content

Commit f4099b6

Browse files
Update to Zeebe 8.5.0 (#328)
* deps(maven): update zeebe to 8.5.0 * deps(go): update Zeebe to 8.5.0 * ci: update go version to 1.21 * deps(go): tidy go mod
1 parent 416d889 commit f4099b6

File tree

7 files changed

+32
-2957
lines changed

7 files changed

+32
-2957
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Go
6060
uses: actions/setup-go@v3
6161
with:
62-
go-version: 1.19
62+
go-version: 1.21
6363
- name: Inject C8 client secrets
6464
uses: ./.github/actions/inject-c8-client-secrets/
6565
with:

go/go.mod

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/camunda/camunda-platform-get-started/go
22

3-
go 1.17
3+
go 1.21
44

5-
require github.com/camunda/zeebe/clients/go/v8 v8.4.5
5+
toolchain go1.21.8
6+
7+
require github.com/camunda/zeebe/clients/go/v8 v8.5.0
68

79
require (
810
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
@@ -14,16 +16,15 @@ require (
1416
github.com/mitchellh/go-homedir v1.1.0 // indirect
1517
github.com/pmezard/go-difflib v1.0.0 // indirect
1618
github.com/rogpeppe/go-internal v1.9.0 // indirect
17-
github.com/stretchr/testify v1.8.4 // indirect
18-
golang.org/x/net v0.19.0 // indirect
19-
golang.org/x/oauth2 v0.15.0 // indirect
20-
golang.org/x/sys v0.15.0 // indirect
19+
github.com/stretchr/testify v1.9.0 // indirect
20+
golang.org/x/net v0.22.0 // indirect
21+
golang.org/x/oauth2 v0.18.0 // indirect
22+
golang.org/x/sys v0.18.0 // indirect
2123
golang.org/x/text v0.14.0 // indirect
2224
google.golang.org/appengine v1.6.8 // indirect
23-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
24-
google.golang.org/grpc v1.60.1 // indirect
25-
google.golang.org/protobuf v1.31.0 // indirect
25+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
26+
google.golang.org/grpc v1.62.1 // indirect
27+
google.golang.org/protobuf v1.33.0 // indirect
2628
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
27-
gopkg.in/yaml.v2 v2.4.0 // indirect
2829
gopkg.in/yaml.v3 v3.0.1 // indirect
2930
)

go/go.sum

+16-2,942
Large diffs are not rendered by default.

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.4.5</version>
16+
<version>8.5.0</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.4.5</zeebe.version>
14+
<zeebe.version>8.5.0</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.4.5</version>
15+
<version>8.5.0</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.4.5</zeebe.version>
22+
<zeebe.version>8.5.0</zeebe.version>
2323
</properties>
2424

2525
<dependencies>

0 commit comments

Comments
 (0)