Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Zeebe 8.5.0 #328

Merged
merged 4 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
- name: Inject C8 client secrets
uses: ./.github/actions/inject-c8-client-secrets/
with:
Expand Down
21 changes: 11 additions & 10 deletions go/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
module github.com/camunda/camunda-platform-get-started/go

go 1.17
go 1.21

require github.com/camunda/zeebe/clients/go/v8 v8.4.5
toolchain go1.21.8

require github.com/camunda/zeebe/clients/go/v8 v8.5.0

require (
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
Expand All @@ -14,16 +16,15 @@ require (
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/oauth2 v0.15.0 // indirect
golang.org/x/sys v0.15.0 // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/oauth2 v0.18.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
google.golang.org/grpc v1.60.1 // indirect
google.golang.org/protobuf v1.31.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2,958 changes: 16 additions & 2,942 deletions go/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ provides a Zeebe client.
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-client-java</artifactId>
<version>8.4.5</version>
<version>8.5.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<zeebe.version>8.4.5</zeebe.version>
<zeebe.version>8.5.0</zeebe.version>
<log4j.version>2.19.0</log4j.version>
<main.class>io.camunda.getstarted.DeployAndStartInstance</main.class>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provides a Zeebe client.
<dependency>
<groupId>io.camunda</groupId>
<artifactId>spring-zeebe-starter</artifactId>
<version>8.4.5</version>
<version>8.5.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<properties>
<java.version>11</java.version>
<spring-zeebe.version>8.1.17</spring-zeebe.version>
<zeebe.version>8.4.5</zeebe.version>
<zeebe.version>8.5.0</zeebe.version>
</properties>

<dependencies>
Expand Down
Loading