Skip to content

Commit

Permalink
deps: upgrade zeebe client to 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lenaschoenburg committed Oct 12, 2022
1 parent a663c62 commit f188971
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 695 deletions.
2 changes: 1 addition & 1 deletion go-chaos/cmd/disconnect.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package cmd
import (
"fmt"

"github.com/camunda-cloud/zeebe/clients/go/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"github.com/spf13/cobra"
"github.com/zeebe-io/zeebe-chaos/go-chaos/internal"
v1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion go-chaos/cmd/topology.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"os"
"text/tabwriter"

"github.com/camunda-cloud/zeebe/clients/go/pkg/pb"
"github.com/camunda/zeebe/clients/go/v8/pkg/pb"
"github.com/spf13/cobra"
"github.com/zeebe-io/zeebe-chaos/go-chaos/internal"
)
Expand Down
2 changes: 1 addition & 1 deletion go-chaos/cmd/topology_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"bytes"
"testing"

"github.com/camunda-cloud/zeebe/clients/go/pkg/pb"
"github.com/camunda/zeebe/clients/go/v8/pkg/pb"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion go-chaos/cmd/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"time"

"github.com/camunda-cloud/zeebe/clients/go/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"github.com/spf13/cobra"
"github.com/zeebe-io/zeebe-chaos/go-chaos/internal"
)
Expand Down
6 changes: 3 additions & 3 deletions go-chaos/cmd/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"strings"
"time"

"github.com/camunda-cloud/zeebe/clients/go/pkg/entities"
"github.com/camunda-cloud/zeebe/clients/go/pkg/worker"
"github.com/camunda-cloud/zeebe/clients/go/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/entities"
"github.com/camunda/zeebe/clients/go/v8/pkg/worker"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions go-chaos/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/zeebe-io/zeebe-chaos/go-chaos
go 1.17

require (
github.com/camunda-cloud/zeebe/clients/go v1.3.14
github.com/camunda/zeebe/clients/go/v8 v8.1.0
github.com/spf13/cobra v1.6.0
github.com/stretchr/testify v1.8.0
google.golang.org/grpc v1.50.0
Expand All @@ -28,7 +28,7 @@ require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
Expand All @@ -50,8 +50,8 @@ require (
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf // indirect
google.golang.org/protobuf v1.28.0 // indirect
google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
698 changes: 17 additions & 681 deletions go-chaos/go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions go-chaos/internal/zeebe.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"os"
"time"

"github.com/camunda-cloud/zeebe/clients/go/pkg/pb"
"github.com/camunda-cloud/zeebe/clients/go/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/pb"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"google.golang.org/grpc"
v1 "k8s.io/api/core/v1"
)
Expand Down
2 changes: 1 addition & 1 deletion go-chaos/internal/zeebe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"testing"
"time"

"github.com/camunda-cloud/zeebe/clients/go/pkg/pb"
"github.com/camunda/zeebe/clients/go/v8/pkg/pb"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit f188971

Please sign in to comment.