Skip to content

Commit e8882f0

Browse files
authored
chore: Update dependencies to latest as of 2026-02-13 (#2551)
1 parent 4bcf6bd commit e8882f0

File tree

8 files changed

+98
-96
lines changed

8 files changed

+98
-96
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
2626
go build -ldflags "-X github.com/GoogleCloudPlatform/cloud-sql-proxy/v2/cmd.metadataString=container"
2727

2828
# Final Stage
29-
FROM gcr.io/distroless/static:nonroot@sha256:5d09f5106208a46853a7bebc12c4ce0a2da33f863c45716be11bb4a5b2760e41
29+
FROM gcr.io/distroless/static:nonroot@sha256:f43f134f5d60bf7afb3db92f865db42514913f01a53b08cd59a1ac6534671077
3030

3131
LABEL org.opencontainers.image.source="https://github.com/GoogleCloudPlatform/cloud-sql-proxy"
3232

Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
2626
go build -ldflags "-X github.com/GoogleCloudPlatform/cloud-sql-proxy/v2/cmd.metadataString=container.alpine"
2727

2828
# Final stage
29-
FROM alpine:3@sha256:865b95f46d98cf867a156fe4a135ad3fe50d2056aa3f25ed31662dff6da4eb62
29+
FROM alpine:3@sha256:59855d3dceb3ae53991193bd03301e082b2a7faa56a514b03527ae0ec2ce3a95
3030

3131
LABEL org.opencontainers.image.source="https://github.com/GoogleCloudPlatform/cloud-sql-proxy"
3232

Dockerfile.bookworm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
2626
go build -ldflags "-X github.com/GoogleCloudPlatform/cloud-sql-proxy/v2/cmd.metadataString=container.bookworm"
2727

2828
# Final stage
29-
FROM gcr.io/cloud-marketplace-containers/google/debian12@sha256:49793b0935d4a156dcb15c92fc8f3448a2a100cbcbe7f6e0894d5c88fe488219
29+
FROM gcr.io/cloud-marketplace-containers/google/debian12@sha256:8d11f62b1699a326f4ed1f457cae981dd555f5271d63d56b1ef2ae50fba23f4b
3030

3131
LABEL org.opencontainers.image.source="https://github.com/GoogleCloudPlatform/cloud-sql-proxy"
3232

Dockerfile.bullseye

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
2626
go build -ldflags "-X github.com/GoogleCloudPlatform/cloud-sql-proxy/v2/cmd.metadataString=container.bullseye"
2727

2828
# Final stage
29-
FROM gcr.io/cloud-marketplace-containers/google/debian11@sha256:519fb462113ba6aa442eafddfae5ba71f6f5e8375c793c8bdaa237ddf733cf86
29+
FROM gcr.io/cloud-marketplace-containers/google/debian11@sha256:308a07e11bfc84a20518eb34e5e8312ec2d9daf195151d73f71d8b1a53c560cc
3030

3131
LABEL org.opencontainers.image.source="https://github.com/GoogleCloudPlatform/cloud-sql-proxy"
3232

go.mod

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
module github.com/GoogleCloudPlatform/cloud-sql-proxy/v2
22

3-
go 1.24.0
3+
go 1.24.11
4+
5+
toolchain go1.24.13
46

57
require (
68
cloud.google.com/go/cloudsqlconn v1.20.0
79
contrib.go.opencensus.io/exporter/prometheus v0.4.2
810
contrib.go.opencensus.io/exporter/stackdriver v0.13.14
9-
github.com/coreos/go-systemd/v22 v22.6.0
11+
github.com/coreos/go-systemd/v22 v22.7.0
1012
github.com/go-sql-driver/mysql v1.9.3
1113
github.com/google/go-cmp v0.7.0
1214
github.com/hanwen/go-fuse/v2 v2.9.0
1315
github.com/jackc/pgx/v5 v5.8.0
14-
github.com/microsoft/go-mssqldb v1.9.5
16+
github.com/microsoft/go-mssqldb v1.9.6
1517
github.com/spf13/cobra v1.10.2
1618
github.com/spf13/pflag v1.0.10
1719
github.com/spf13/viper v1.21.0
1820
go.opencensus.io v0.24.0
19-
golang.org/x/oauth2 v0.34.0
20-
golang.org/x/sys v0.40.0
21-
google.golang.org/api v0.260.0
21+
golang.org/x/oauth2 v0.35.0
22+
golang.org/x/sys v0.41.0
23+
google.golang.org/api v0.266.0
2224
gopkg.in/natefinch/lumberjack.v2 v2.2.1
2325
)
2426

2527
require (
26-
cloud.google.com/go/auth v0.18.0 // indirect
28+
cloud.google.com/go/auth v0.18.2 // indirect
2729
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2830
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2931
cloud.google.com/go/monitoring v1.24.3 // indirect
@@ -38,15 +40,15 @@ require (
3840
github.com/fsnotify/fsnotify v1.9.0 // indirect
3941
github.com/go-logr/logr v1.4.3 // indirect
4042
github.com/go-logr/stdr v1.2.2 // indirect
41-
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
43+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
4244
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
4345
github.com/golang-sql/sqlexp v0.1.0 // indirect
4446
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
4547
github.com/golang/protobuf v1.5.4 // indirect
4648
github.com/google/s2a-go v0.1.9 // indirect
4749
github.com/google/uuid v1.6.0 // indirect
48-
github.com/googleapis/enterprise-certificate-proxy v0.3.9 // indirect
49-
github.com/googleapis/gax-go/v2 v2.16.0 // indirect
50+
github.com/googleapis/enterprise-certificate-proxy v0.3.12 // indirect
51+
github.com/googleapis/gax-go/v2 v2.17.0 // indirect
5052
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5153
github.com/jackc/pgpassfile v1.0.0 // indirect
5254
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
@@ -56,9 +58,9 @@ require (
5658
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
5759
github.com/prometheus/client_golang v1.23.2 // indirect
5860
github.com/prometheus/client_model v0.6.2 // indirect
59-
github.com/prometheus/common v0.67.4 // indirect
61+
github.com/prometheus/common v0.67.5 // indirect
6062
github.com/prometheus/procfs v0.19.2 // indirect
61-
github.com/prometheus/prometheus v0.308.0 // indirect
63+
github.com/prometheus/prometheus v0.309.1 // indirect
6264
github.com/prometheus/statsd_exporter v0.28.0 // indirect
6365
github.com/russross/blackfriday/v2 v2.1.0 // indirect
6466
github.com/sagikazarmark/locafero v0.12.0 // indirect
@@ -67,22 +69,22 @@ require (
6769
github.com/spf13/cast v1.10.0 // indirect
6870
github.com/subosito/gotenv v1.6.0 // indirect
6971
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
70-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 // indirect
71-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0 // indirect
72-
go.opentelemetry.io/otel v1.39.0 // indirect
73-
go.opentelemetry.io/otel/metric v1.39.0 // indirect
74-
go.opentelemetry.io/otel/trace v1.39.0 // indirect
72+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.65.0 // indirect
73+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
74+
go.opentelemetry.io/otel v1.40.0 // indirect
75+
go.opentelemetry.io/otel/metric v1.40.0 // indirect
76+
go.opentelemetry.io/otel/trace v1.40.0 // indirect
7577
go.yaml.in/yaml/v2 v2.4.3 // indirect
7678
go.yaml.in/yaml/v3 v3.0.4 // indirect
77-
golang.org/x/crypto v0.47.0 // indirect
78-
golang.org/x/net v0.49.0 // indirect
79+
golang.org/x/crypto v0.48.0 // indirect
80+
golang.org/x/net v0.50.0 // indirect
7981
golang.org/x/sync v0.19.0 // indirect
80-
golang.org/x/text v0.33.0 // indirect
82+
golang.org/x/text v0.34.0 // indirect
8183
golang.org/x/time v0.14.0 // indirect
82-
google.golang.org/genproto v0.0.0-20251202230838-ff82c1b0f217 // indirect
83-
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
84-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251222181119-0a764e51fe1b // indirect
85-
google.golang.org/grpc v1.78.0 // indirect
84+
google.golang.org/genproto v0.0.0-20260209200024-4cfbd4190f57 // indirect
85+
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 // indirect
86+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
87+
google.golang.org/grpc v1.79.1 // indirect
8688
google.golang.org/protobuf v1.36.11 // indirect
8789
gopkg.in/yaml.v2 v2.4.0 // indirect
8890
)

0 commit comments

Comments
 (0)