Skip to content

Commit 8c5105c

Browse files
committed
deps: update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to 890894a
1 parent 890894a commit 8c5105c

File tree

6 files changed

+130
-42
lines changed

6 files changed

+130
-42
lines changed

samples/golang/gorm/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
toolchain go1.26.1
66

77
require (
8-
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260202051005-08429cdb06e1
8+
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260326114408-890894aaa2cf
99
github.com/google/uuid v1.6.0
1010
github.com/jackc/pgtype v1.14.4
1111
github.com/shopspring/decimal v1.4.0
@@ -76,7 +76,7 @@ require (
7676
go.opentelemetry.io/otel/metric v1.41.0 // indirect
7777
go.opentelemetry.io/otel/trace v1.41.0 // indirect
7878
golang.org/x/crypto v0.48.0 // indirect
79-
golang.org/x/oauth2 v0.34.0 // indirect
79+
golang.org/x/oauth2 v0.36.0 // indirect
8080
golang.org/x/sync v0.19.0 // indirect
8181
golang.org/x/sys v0.41.0 // indirect
8282
golang.org/x/text v0.34.0 // indirect

samples/golang/gorm/go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c/go.mod h1:xomTg6
1111
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
1212
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260202051005-08429cdb06e1 h1:zvuXM5d2zMv4cYgdIfraNhHxgwEnrv8XV4VJwz25bR8=
1313
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260202051005-08429cdb06e1/go.mod h1:zEl5evshMEvjntGTZJPqnsmvVaILPZnR8k8L+genoV8=
14+
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260326114408-890894aaa2cf h1:Xs5kzf4IgX47WoCgzWvyIrS5UKFplYaRUgSpbt8ykkg=
15+
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260326114408-890894aaa2cf/go.mod h1:GMagAsxq5TioXxwDic4r5rmsvMcGmmeR2kfge8g3v6Y=
1416
github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs=
1517
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
1618
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
@@ -307,6 +309,8 @@ golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o=
307309
golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8=
308310
golang.org/x/oauth2 v0.34.0 h1:hqK/t4AKgbqWkdkcAeI8XLmbK+4m4G5YeQRrmiotGlw=
309311
golang.org/x/oauth2 v0.34.0/go.mod h1:lzm5WQJQwKZ3nwavOZ3IS5Aulzxi68dUSgRHujetwEA=
312+
golang.org/x/oauth2 v0.36.0 h1:peZ/1z27fi9hUOFCAZaHyrpWG5lwe0RJEEEeH0ThlIs=
313+
golang.org/x/oauth2 v0.36.0/go.mod h1:YDBUJMTkDnJS+A4BP4eZBjCqtokkg1hODuPjwiGPO7Q=
310314
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
311315
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
312316
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

samples/golang/migrate/go.mod

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
module migrate
22

3-
go 1.24.0
3+
go 1.25.0
44

55
toolchain go1.26.1
66

77
require (
8-
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260202051005-08429cdb06e1
8+
github.com/GoogleCloudPlatform/pgadapter/wrappers/golang v0.0.0-20260326114408-890894aaa2cf
99
github.com/golang-migrate/migrate/v4 v4.19.1
1010
)
1111

1212
require (
1313
cloud.google.com/go/compute/metadata v0.8.0 // indirect
1414
dario.cat/mergo v1.0.2 // indirect
15-
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
15+
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
1616
github.com/Microsoft/go-winio v0.6.2 // indirect
1717
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
18+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1819
github.com/containerd/errdefs v1.0.0 // indirect
1920
github.com/containerd/errdefs/pkg v0.3.0 // indirect
2021
github.com/containerd/log v0.1.0 // indirect
@@ -25,7 +26,7 @@ require (
2526
github.com/docker/docker v28.5.2+incompatible // indirect
2627
github.com/docker/go-connections v0.6.0 // indirect
2728
github.com/docker/go-units v0.5.0 // indirect
28-
github.com/ebitengine/purego v0.8.4 // indirect
29+
github.com/ebitengine/purego v0.10.0 // indirect
2930
github.com/felixge/httpsnoop v1.0.4 // indirect
3031
github.com/go-logr/logr v1.4.3 // indirect
3132
github.com/go-logr/stdr v1.2.2 // indirect
@@ -34,37 +35,37 @@ require (
3435
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
3536
github.com/hashicorp/errwrap v1.1.0 // indirect
3637
github.com/hashicorp/go-multierror v1.1.1 // indirect
37-
github.com/klauspost/compress v1.18.0 // indirect
38+
github.com/klauspost/compress v1.18.2 // indirect
3839
github.com/lib/pq v1.10.9 // indirect
3940
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
4041
github.com/magiconair/properties v1.8.10 // indirect
4142
github.com/moby/docker-image-spec v1.3.1 // indirect
42-
github.com/moby/go-archive v0.1.0 // indirect
43+
github.com/moby/go-archive v0.2.0 // indirect
4344
github.com/moby/patternmatcher v0.6.0 // indirect
4445
github.com/moby/sys/sequential v0.6.0 // indirect
4546
github.com/moby/sys/user v0.4.0 // indirect
4647
github.com/moby/sys/userns v0.1.0 // indirect
47-
github.com/moby/term v0.5.0 // indirect
48+
github.com/moby/term v0.5.2 // indirect
4849
github.com/morikuni/aec v1.0.0 // indirect
4950
github.com/opencontainers/go-digest v1.0.0 // indirect
5051
github.com/opencontainers/image-spec v1.1.1 // indirect
5152
github.com/pkg/errors v0.9.1 // indirect
5253
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
53-
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
54-
github.com/shirou/gopsutil/v4 v4.25.6 // indirect
54+
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
55+
github.com/shirou/gopsutil/v4 v4.26.2 // indirect
5556
github.com/sirupsen/logrus v1.9.3 // indirect
56-
github.com/stretchr/testify v1.11.0 // indirect
57-
github.com/testcontainers/testcontainers-go v0.40.0 // indirect
58-
github.com/tklauser/go-sysconf v0.3.12 // indirect
59-
github.com/tklauser/numcpus v0.6.1 // indirect
57+
github.com/stretchr/testify v1.11.1 // indirect
58+
github.com/testcontainers/testcontainers-go v0.41.0 // indirect
59+
github.com/tklauser/go-sysconf v0.3.16 // indirect
60+
github.com/tklauser/numcpus v0.11.0 // indirect
6061
github.com/yusufpapurcu/wmi v1.2.4 // indirect
61-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
62+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
6263
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
63-
go.opentelemetry.io/otel v1.37.0 // indirect
64-
go.opentelemetry.io/otel/metric v1.37.0 // indirect
65-
go.opentelemetry.io/otel/trace v1.37.0 // indirect
66-
golang.org/x/crypto v0.45.0 // indirect
67-
golang.org/x/oauth2 v0.34.0 // indirect
68-
golang.org/x/sys v0.38.0 // indirect
64+
go.opentelemetry.io/otel v1.41.0 // indirect
65+
go.opentelemetry.io/otel/metric v1.41.0 // indirect
66+
go.opentelemetry.io/otel/trace v1.41.0 // indirect
67+
golang.org/x/crypto v0.48.0 // indirect
68+
golang.org/x/oauth2 v0.36.0 // indirect
69+
golang.org/x/sys v0.41.0 // indirect
6970
gopkg.in/yaml.v3 v3.0.1 // indirect
7071
)

0 commit comments

Comments
 (0)