Skip to content

Commit

Permalink
Upgrade temporal sdk to 1.25.0 (#429)
Browse files Browse the repository at this point in the history
* update temporal sdk to 1.25.0

* fix lint for mock client file

* update test data for grpc update
  • Loading branch information
rivaldya authored Oct 10, 2023
1 parent 85c1192 commit 4d373ed
Show file tree
Hide file tree
Showing 4 changed files with 285 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func testGRPCServerReflection(t *testing.T, enabled bool) {
names, err := doGatewayReflectionList(ctx)
if enabled {
require.Nil(t, err)
require.Equal(t, []string{"gateway.Gateway", "grpc.reflection.v1alpha.ServerReflection"}, names)
require.Equal(t, []string{"gateway.Gateway", "grpc.reflection.v1.ServerReflection", "grpc.reflection.v1alpha.ServerReflection"}, names)
} else {
require.NotNil(t, err)
}
Expand Down
23 changes: 13 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ require (
github.com/spf13/cast v1.5.0
github.com/spf13/viper v1.13.0
github.com/stretchr/testify v1.8.4
go.temporal.io/api v1.23.0
go.temporal.io/sdk v1.24.0
google.golang.org/grpc v1.55.0
google.golang.org/protobuf v1.30.0
go.temporal.io/api v1.24.0
go.temporal.io/sdk v1.25.0
google.golang.org/grpc v1.57.0
google.golang.org/protobuf v1.31.0
gopkg.in/square/go-jose.v2 v2.6.0
gopkg.in/yaml.v2 v2.4.0
)
Expand All @@ -47,13 +47,14 @@ require (
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
Expand All @@ -69,13 +70,15 @@ require (
github.com/stretchr/objx v0.5.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20221010152910-d6f0a8c073c2 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/exp v0.0.0-20221011201855-a3968a42eed6 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 4d373ed

Please sign in to comment.