Skip to content

Commit 8ff5f8b

Browse files
committed
refactor: rename camunda/zeebe repo
The repository camunda/zeebe will be rename to camunda/camunda, this commit adjusts all references to this repository.
1 parent c4f34bf commit 8ff5f8b

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

go/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This guide explains how to set up a Go project to automate a process using
88
The client requires you to install Go with a version greater than or equal to 1.17. See [here](https://go.dev/doc/install) on how to do this for your platform.
99

1010
The open source library
11-
[github.com/camunda/zeebe/clients/go/v8](https://docs.camunda.io/docs/apis-clients/go-client/) provides a Zeebe client
11+
[github.com/camunda/camunda/clients/go/v8](https://docs.camunda.io/docs/apis-clients/go-client/) provides a Zeebe client
1212
for Go.
1313

1414
To install using Go modules, simply run:
1515

1616
```sh
17-
go get github.com/camunda/zeebe/clients/go/v8@v8.4.5
17+
go get github.com/camunda/camunda/clients/go/v8@v8.4.5
1818
```
1919

2020
# Create Client
@@ -26,9 +26,9 @@ a `clientId` and `clientSecret` from a [client credentials
2626
pair](https://docs.camunda.io/docs/components/modeler/bpmn/service-tasks/).
2727

2828
The credentials can be specified by implementing your own
29-
[zbc.CredentialsProvider](https://pkg.go.dev/github.com/camunda/zeebe/clients/go/pkg/zbc#CredentialsProvider) or
29+
[zbc.CredentialsProvider](https://pkg.go.dev/github.com/camunda/camunda/clients/go/pkg/zbc#CredentialsProvider) or
3030
using the existing
31-
[OAuthCredentialsProvider](https://pkg.go.dev/github.com/camunda/zeebe/clients/go/pkg/zbc#OAuthCredentialsProvider)
31+
[OAuthCredentialsProvider](https://pkg.go.dev/github.com/camunda/camunda/clients/go/pkg/zbc#OAuthCredentialsProvider)
3232
which is compatible with Camunda Platform 8 SaaS clusters out of the box.
3333

3434
```golang

go/go.mod

+1-1
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/camunda/clients/go/v8 v8.5.0
88

99
require (
1010
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect

go/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 h1:zV3ejI06GQ59hwDQAvmK1qxOQGB3WuVTRoY0okPTAv0=
22
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496/go.mod h1:oGkLhpf+kjZl6xBf758TQhh5XrAeiJv/7FRz/2spLIg=
3-
github.com/camunda/zeebe/clients/go/v8 v8.5.0 h1:cEKkBNsu17dIYOG5NyF8HZOuNx6bmJSkqjr4YsbLkzM=
4-
github.com/camunda/zeebe/clients/go/v8 v8.5.0/go.mod h1:UO1POEqpIUY04pidoY3lVD3UXXFqLn+dsYIaCuwymYk=
3+
github.com/camunda/camunda/clients/go/v8 v8.5.0 h1:cEKkBNsu17dIYOG5NyF8HZOuNx6bmJSkqjr4YsbLkzM=
4+
github.com/camunda/camunda/clients/go/v8 v8.5.0/go.mod h1:UO1POEqpIUY04pidoY3lVD3UXXFqLn+dsYIaCuwymYk=
55
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
66
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
77
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

go/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import (
1919
"embed"
2020
"errors"
2121
"fmt"
22-
"github.com/camunda/zeebe/clients/go/v8/pkg/entities"
23-
"github.com/camunda/zeebe/clients/go/v8/pkg/pb"
24-
"github.com/camunda/zeebe/clients/go/v8/pkg/worker"
25-
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
22+
"github.com/camunda/camunda/clients/go/v8/pkg/entities"
23+
"github.com/camunda/camunda/clients/go/v8/pkg/pb"
24+
"github.com/camunda/camunda/clients/go/v8/pkg/worker"
25+
"github.com/camunda/camunda/clients/go/v8/pkg/zbc"
2626
"log"
2727
"os"
2828
"os/signal"

0 commit comments

Comments
 (0)