Skip to content

Commit f5eb9e3

Browse files
antlai-temporalSushisourceychebotarevTHardy98jmbarzee
authored
Update next-server branch with main changes (#792)
Co-authored-by: Spencer Judge <[email protected]> Co-authored-by: Yuri <[email protected]> Co-authored-by: Thomas Hardy <[email protected]> Co-authored-by: Jacob Barzee <[email protected]> Co-authored-by: Rodrigo Zhou <[email protected]> Co-authored-by: Dan Davison <[email protected]> Co-authored-by: Andrew Yuan <[email protected]> Co-authored-by: Chad Retz <[email protected]>
1 parent 4504b96 commit f5eb9e3

File tree

12 files changed

+385
-263
lines changed

12 files changed

+385
-263
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build-test:
1010
strategy:
11-
fail-fast: true
11+
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest, macos-latest, macos-13, windows-latest, ubuntu-arm]
1414
include:

cmd/temporal/main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ import (
55

66
"github.com/temporalio/cli/temporalcli"
77

8+
// Prevent the pinned version of sqlite driver from unintentionally changing
9+
// until https://gitlab.com/cznic/sqlite/-/issues/196 is resolved.
10+
_ "modernc.org/sqlite"
811
// Embed time zone database as a fallback if platform database can't be found
912
_ "time/tzdata"
1013
)

go.mod

Lines changed: 63 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,32 @@ require (
1111
github.com/mattn/go-isatty v0.0.20
1212
github.com/nexus-rpc/sdk-go v0.3.0
1313
github.com/olekukonko/tablewriter v0.0.5
14-
github.com/spf13/cobra v1.8.1
14+
github.com/spf13/cobra v1.9.1
1515
github.com/spf13/pflag v1.0.6
1616
github.com/stretchr/testify v1.10.0
1717
github.com/temporalio/ui-server/v2 v2.36.0
1818
go.temporal.io/api v1.46.0
1919
go.temporal.io/sdk v1.33.0
2020
go.temporal.io/server v1.28.0-130.0
21-
google.golang.org/grpc v1.70.0
22-
google.golang.org/protobuf v1.36.5
21+
google.golang.org/grpc v1.71.0
22+
google.golang.org/protobuf v1.36.6
2323
gopkg.in/yaml.v3 v3.0.1
24+
modernc.org/sqlite v1.34.1
2425
)
2526

2627
require (
27-
cel.dev/expr v0.20.0 // indirect
28-
cloud.google.com/go v0.118.2 // indirect
29-
cloud.google.com/go/auth v0.14.1 // indirect
30-
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
28+
cel.dev/expr v0.22.1 // indirect
29+
cloud.google.com/go v0.120.0 // indirect
30+
cloud.google.com/go/auth v0.15.0 // indirect
31+
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
3132
cloud.google.com/go/compute/metadata v0.6.0 // indirect
32-
cloud.google.com/go/iam v1.4.0 // indirect
33-
cloud.google.com/go/monitoring v1.24.0 // indirect
34-
cloud.google.com/go/storage v1.50.0 // indirect
33+
cloud.google.com/go/iam v1.4.2 // indirect
34+
cloud.google.com/go/monitoring v1.24.1 // indirect
35+
cloud.google.com/go/storage v1.51.0 // indirect
3536
filippo.io/edwards25519 v1.1.0 // indirect
36-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.26.0 // indirect
37-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.50.0 // indirect
38-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.50.0 // indirect
37+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
38+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
39+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
3940
github.com/apache/thrift v0.21.0 // indirect
4041
github.com/aws/aws-sdk-go v1.55.6 // indirect
4142
github.com/benbjohnson/clock v1.3.5 // indirect
@@ -45,8 +46,8 @@ require (
4546
github.com/cactus/go-statsd-client/v5 v5.1.0 // indirect
4647
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
4748
github.com/cespare/xxhash/v2 v2.3.0 // indirect
48-
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
49-
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
49+
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
50+
github.com/coreos/go-oidc/v3 v3.13.0 // indirect
5051
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da // indirect
5152
github.com/emirpasic/gods v1.18.1 // indirect
5253
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
@@ -56,34 +57,35 @@ require (
5657
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
5758
github.com/go-logr/logr v1.4.2 // indirect
5859
github.com/go-logr/stdr v1.2.2 // indirect
59-
github.com/go-sql-driver/mysql v1.9.0 // indirect
60+
github.com/go-sql-driver/mysql v1.9.1 // indirect
6061
github.com/gocql/gocql v1.7.0 // indirect
6162
github.com/gogo/protobuf v1.3.2 // indirect
62-
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
63-
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
63+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
6464
github.com/golang/mock v1.7.0-rc.1 // indirect
65-
github.com/golang/snappy v0.0.4 // indirect
66-
github.com/gomarkdown/markdown v0.0.0-20241105142532-d03b89096d81 // indirect
65+
github.com/golang/snappy v1.0.0 // indirect
66+
github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b // indirect
67+
github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e // indirect
6768
github.com/google/s2a-go v0.1.9 // indirect
68-
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
69+
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
6970
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
7071
github.com/gorilla/mux v1.8.1 // indirect
7172
github.com/gorilla/securecookie v1.1.2 // indirect
7273
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
73-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
74+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
7475
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
76+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
7577
github.com/iancoleman/strcase v0.3.0 // indirect
7678
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7779
github.com/jackc/pgpassfile v1.0.0 // indirect
7880
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
79-
github.com/jackc/pgx/v5 v5.7.2 // indirect
81+
github.com/jackc/pgx/v5 v5.7.4 // indirect
8082
github.com/jackc/puddle/v2 v2.2.2 // indirect
8183
github.com/jmespath/go-jmespath v0.4.0 // indirect
8284
github.com/jmoiron/sqlx v1.4.0 // indirect
8385
github.com/josharian/intern v1.0.0 // indirect
8486
github.com/klauspost/compress v1.18.0 // indirect
85-
github.com/labstack/echo/v4 v4.9.1 // indirect
86-
github.com/labstack/gommon v0.4.0 // indirect
87+
github.com/labstack/echo/v4 v4.13.3 // indirect
88+
github.com/labstack/gommon v0.4.2 // indirect
8789
github.com/lib/pq v1.10.9 // indirect
8890
github.com/mailru/easyjson v0.9.0 // indirect
8991
github.com/mattn/go-colorable v0.1.14 // indirect
@@ -97,10 +99,10 @@ require (
9799
github.com/pkg/errors v0.9.1 // indirect
98100
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
99101
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
100-
github.com/prometheus/client_golang v1.21.0 // indirect
102+
github.com/prometheus/client_golang v1.21.1 // indirect
101103
github.com/prometheus/client_model v0.6.1 // indirect
102-
github.com/prometheus/common v0.62.0 // indirect
103-
github.com/prometheus/procfs v0.15.1 // indirect
104+
github.com/prometheus/common v0.63.0 // indirect
105+
github.com/prometheus/procfs v0.16.0 // indirect
104106
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
105107
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
106108
github.com/rivo/uniseg v0.4.7 // indirect
@@ -116,44 +118,48 @@ require (
116118
github.com/uber-common/bark v1.3.0 // indirect
117119
github.com/uber-go/tally/v4 v4.1.17-0.20240412215630-22fe011f5ff0 // indirect
118120
github.com/valyala/bytebufferpool v1.0.0 // indirect
119-
github.com/valyala/fasttemplate v1.2.1 // indirect
121+
github.com/valyala/fasttemplate v1.2.2 // indirect
120122
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
121-
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect
122-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
123-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
124-
go.opentelemetry.io/otel v1.34.0 // indirect
125-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.34.0 // indirect
126-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
127-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
128-
go.opentelemetry.io/otel/exporters/prometheus v0.56.0 // indirect
129-
go.opentelemetry.io/otel/metric v1.34.0 // indirect
130-
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
131-
go.opentelemetry.io/otel/sdk/metric v1.34.0 // indirect
132-
go.opentelemetry.io/otel/trace v1.34.0 // indirect
123+
go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect
124+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
125+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
126+
go.opentelemetry.io/otel v1.35.0 // indirect
127+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.35.0 // indirect
128+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
129+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 // indirect
130+
go.opentelemetry.io/otel/exporters/prometheus v0.57.0 // indirect
131+
go.opentelemetry.io/otel/metric v1.35.0 // indirect
132+
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
133+
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
134+
go.opentelemetry.io/otel/trace v1.35.0 // indirect
133135
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
134136
go.temporal.io/version v0.3.0 // indirect
135137
go.uber.org/atomic v1.11.0 // indirect
136-
go.uber.org/dig v1.18.0 // indirect
138+
go.uber.org/dig v1.18.1 // indirect
137139
go.uber.org/fx v1.23.0 // indirect
138140
go.uber.org/mock v0.5.0 // indirect
139141
go.uber.org/multierr v1.11.0 // indirect
140142
go.uber.org/zap v1.27.0 // indirect
141-
golang.org/x/crypto v0.35.0 // indirect
142-
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
143-
golang.org/x/net v0.36.0 // indirect
144-
golang.org/x/oauth2 v0.26.0 // indirect
145-
golang.org/x/sync v0.11.0 // indirect
146-
golang.org/x/sys v0.30.0 // indirect
147-
golang.org/x/text v0.22.0 // indirect
148-
golang.org/x/time v0.10.0 // indirect
149-
google.golang.org/api v0.222.0 // indirect
150-
google.golang.org/genproto v0.0.0-20250218202821-56aae31c358a // indirect
151-
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
152-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
143+
golang.org/x/crypto v0.36.0 // indirect
144+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
145+
golang.org/x/net v0.38.0 // indirect
146+
golang.org/x/oauth2 v0.28.0 // indirect
147+
golang.org/x/sync v0.12.0 // indirect
148+
golang.org/x/sys v0.31.0 // indirect
149+
golang.org/x/text v0.23.0 // indirect
150+
golang.org/x/time v0.11.0 // indirect
151+
google.golang.org/api v0.228.0 // indirect
152+
google.golang.org/genproto v0.0.0-20250324211829-b45e905df463 // indirect
153+
google.golang.org/genproto/googleapis/api v0.0.0-20250324211829-b45e905df463 // indirect
154+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
153155
gopkg.in/inf.v0 v0.9.1 // indirect
154156
gopkg.in/validator.v2 v2.0.1 // indirect
155-
modernc.org/libc v1.61.11 // indirect
157+
modernc.org/cc/v4 v4.25.2 // indirect
158+
modernc.org/gc/v2 v2.6.5 // indirect
159+
modernc.org/gc/v3 v3.0.0 // indirect
160+
modernc.org/libc v1.55.3 // indirect
156161
modernc.org/mathutil v1.7.1 // indirect
157-
modernc.org/memory v1.8.2 // indirect
158-
modernc.org/sqlite v1.34.5 // indirect
162+
modernc.org/memory v1.9.1 // indirect
163+
modernc.org/strutil v1.2.1 // indirect
164+
modernc.org/token v1.1.0 // indirect
159165
)

0 commit comments

Comments
 (0)