-
Notifications
You must be signed in to change notification settings - Fork 229
update SDK & server dependencies for grpc-proxy & Nexus #381
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
53c6770
update SDK & server dependencies for grpc-proxy, codec-server, & nexus
robzienert 4252204
Update codec-server/codec-server/main.go
robzienert b4c6cc1
Update grpc-proxy/proxy-server/main.go
robzienert b60e1ce
Update grpc-proxy/proxy-server/main.go
robzienert 40ee231
Update grpc-proxy/proxy-server/main.go
robzienert 017bf8d
Update grpc-proxy/proxy-server/main.go
robzienert 1875a8c
Update grpc-proxy/proxy-server/main.go
robzienert a76a7b7
Update grpc-proxy/proxy-server/main.go
robzienert c9f205c
Update codec-server/codec-server/main.go
robzienert 762c031
Update codec-server/codec-server/oidc.go
robzienert 1afb300
Update codec-server/codec-server/main.go
bergundy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,87 +1,86 @@ | ||
| module github.com/temporalio/samples-go/codec-server | ||
|
|
||
| go 1.21.1 | ||
| go 1.23.2 | ||
|
|
||
| require ( | ||
| github.com/golang/snappy v0.0.4 | ||
| github.com/google/uuid v1.5.0 | ||
| go.temporal.io/api v1.26.0 | ||
| go.temporal.io/sdk v1.25.1 | ||
| go.temporal.io/server v1.22.4 | ||
| github.com/google/uuid v1.6.0 | ||
| go.temporal.io/api v1.43.0 | ||
| go.temporal.io/sdk v1.32.1 | ||
| go.temporal.io/server v1.26.2 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/aws/aws-sdk-go v1.44.289 // indirect | ||
| github.com/aws/aws-sdk-go v1.53.15 // indirect | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/blang/semver/v4 v4.0.0 // indirect | ||
| github.com/cactus/go-statsd-client/v5 v5.0.0 // indirect | ||
| github.com/cenkalti/backoff/v4 v4.2.1 // indirect | ||
| github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
| github.com/cactus/go-statsd-client/v5 v5.1.0 // indirect | ||
| github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
| github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect | ||
| github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da // indirect | ||
| github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect | ||
| github.com/go-logr/logr v1.2.4 // indirect | ||
| github.com/go-logr/logr v1.4.2 // indirect | ||
| github.com/go-logr/stdr v1.2.2 // indirect | ||
| github.com/gocql/gocql v1.5.2 // indirect | ||
| github.com/gogo/googleapis v1.4.1 // indirect | ||
| github.com/gocql/gocql v1.6.0 // indirect | ||
| github.com/gogo/protobuf v1.3.2 // indirect | ||
| github.com/gogo/status v1.1.1 // indirect | ||
| github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
| github.com/golang-jwt/jwt/v4 v4.5.1 // indirect | ||
| github.com/golang/mock v1.7.0-rc.1 // indirect | ||
| github.com/golang/protobuf v1.5.3 // indirect | ||
| github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect | ||
| github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect | ||
| github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
| github.com/jmoiron/sqlx v1.3.4 // indirect | ||
| github.com/josharian/intern v1.0.0 // indirect | ||
| github.com/klauspost/compress v1.17.9 // indirect | ||
| github.com/mailru/easyjson v0.7.7 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
| github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
| github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
| github.com/nexus-rpc/sdk-go v0.1.0 // indirect | ||
| github.com/olivere/elastic/v7 v7.0.32 // indirect | ||
| github.com/pborman/uuid v1.2.1 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| github.com/prometheus/client_golang v1.16.0 // indirect | ||
| github.com/prometheus/client_model v0.4.0 // indirect | ||
| github.com/prometheus/common v0.44.0 // indirect | ||
| github.com/prometheus/procfs v0.11.0 // indirect | ||
| github.com/prometheus/client_golang v1.20.4 // indirect | ||
| github.com/prometheus/client_model v0.6.1 // indirect | ||
| github.com/prometheus/common v0.60.0 // indirect | ||
| github.com/prometheus/procfs v0.15.1 // indirect | ||
| github.com/robfig/cron v1.2.0 // indirect | ||
| github.com/robfig/cron/v3 v3.0.1 // indirect | ||
| github.com/stretchr/objx v0.5.0 // indirect | ||
| github.com/stretchr/testify v1.8.4 // indirect | ||
| github.com/stretchr/objx v0.5.2 // indirect | ||
| github.com/stretchr/testify v1.10.0 // indirect | ||
| github.com/twmb/murmur3 v1.1.8 // indirect | ||
| github.com/uber-go/tally/v4 v4.1.7 // indirect | ||
| go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.0 // indirect | ||
| go.opentelemetry.io/otel v1.16.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.39.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.39.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.16.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/prometheus v0.39.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.16.0 // indirect | ||
| go.opentelemetry.io/otel/sdk v1.16.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/metric v0.39.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.16.0 // indirect | ||
| go.opentelemetry.io/proto/otlp v0.20.0 // indirect | ||
| github.com/uber-go/tally/v4 v4.1.17-0.20240412215630-22fe011f5ff0 // indirect | ||
| go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 // indirect | ||
| go.opentelemetry.io/otel v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/exporters/prometheus v0.53.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/sdk v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/metric v1.31.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.31.0 // indirect | ||
| go.opentelemetry.io/proto/otlp v1.3.1 // indirect | ||
| go.uber.org/atomic v1.11.0 // indirect | ||
| go.uber.org/dig v1.17.0 // indirect | ||
| go.uber.org/fx v1.20.0 // indirect | ||
| go.uber.org/dig v1.17.1 // indirect | ||
| go.uber.org/fx v1.22.0 // indirect | ||
| go.uber.org/mock v0.4.0 // indirect | ||
| go.uber.org/multierr v1.11.0 // indirect | ||
| go.uber.org/zap v1.24.0 // indirect | ||
| golang.org/x/crypto v0.15.0 // indirect | ||
| golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect | ||
| golang.org/x/net v0.18.0 // indirect | ||
| golang.org/x/sys v0.14.0 // indirect | ||
| golang.org/x/text v0.14.0 // indirect | ||
| golang.org/x/time v0.3.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect | ||
| google.golang.org/grpc v1.59.0 // indirect | ||
| google.golang.org/protobuf v1.31.0 // indirect | ||
| go.uber.org/zap v1.27.0 // indirect | ||
| golang.org/x/crypto v0.29.0 // indirect | ||
| golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc // indirect | ||
| golang.org/x/net v0.31.0 // indirect | ||
| golang.org/x/sync v0.9.0 // indirect | ||
| golang.org/x/sys v0.27.0 // indirect | ||
| golang.org/x/text v0.20.0 // indirect | ||
| golang.org/x/time v0.5.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect | ||
| google.golang.org/grpc v1.67.1 // indirect | ||
| google.golang.org/protobuf v1.35.1 // indirect | ||
| gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect | ||
| gopkg.in/inf.v0 v0.9.1 // indirect | ||
| gopkg.in/square/go-jose.v2 v2.6.0 // indirect | ||
| gopkg.in/validator.v2 v2.0.1 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| ) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.