Skip to content

Commit 8960e64

Browse files
fix: update all dependencies (#703)
* fix: update all dependencies * chore: go mod tidy + update Python version --------- Co-authored-by: Knut Olav Løite <koloite@gmail.com>
1 parent ea2b883 commit 8960e64

File tree

24 files changed

+336
-340
lines changed

24 files changed

+336
-340
lines changed

.github/workflows/integration-tests-on-emulator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Set up Ruby
4747
uses: ruby/setup-ruby@v1
4848
with:
49-
ruby-version: '3.4.7'
49+
ruby-version: '3.4.8'
5050
working-directory: spannerlib/wrappers/spannerlib-ruby
5151
bundler-cache: true
5252
- name: Compile and Run Ruby Integration Tests

.github/workflows/python-spanner-lib-wrapper-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v6
2929
with:
30-
python-version: '3.10'
30+
python-version: '3.14'
3131
cache: 'pip'
3232

3333
- name: Install Nox

.github/workflows/python-spanner-lib-wrapper-unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
- name: Set up Python
2929
uses: actions/setup-python@v6
3030
with:
31-
python-version: '3.10'
31+
python-version: '3.14'
3232
cache: 'pip'
3333

3434
- name: Install Nox
3535
run: pip install nox
3636

3737
- name: Run Unit Tests
38-
run: nox -s unit-3.10
38+
run: nox -s unit-3.14

.github/workflows/release-python-spanner-lib-wrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Python
4545
uses: actions/setup-python@v6
4646
with:
47-
python-version: '3.10'
47+
python-version: '3.14'
4848
cache: 'pip'
4949

5050
- name: Install Build Dependencies

.github/workflows/release-ruby-wrapper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Ruby
4343
uses: ruby/setup-ruby@v1
4444
with:
45-
ruby-version: '3.4.7'
45+
ruby-version: '3.4.8'
4646
bundler-cache: true
4747
working-directory: 'spannerlib/wrappers/spannerlib-ruby'
4848

@@ -95,7 +95,7 @@ jobs:
9595
- name: Set up Ruby
9696
uses: ruby/setup-ruby@v1
9797
with:
98-
ruby-version: '3.4.7'
98+
ruby-version: '3.4.8'
9999
bundler-cache: true
100100
working-directory: 'spannerlib/wrappers/spannerlib-ruby'
101101

.github/workflows/release-spannermockserver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v6
2626
with:
27-
python-version: "3.10"
27+
python-version: "3.14"
2828

2929
- name: Install build dependencies
3030
run: |

.github/workflows/ruby-wrapper-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Ruby
2424
uses: ruby/setup-ruby@v1
2525
with:
26-
ruby-version: '3.4.7'
26+
ruby-version: '3.4.8'
2727
bundler-cache: true
2828
working-directory: spannerlib/wrappers/spannerlib-ruby
2929

benchmarks/go.mod

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@ module github.com/googleapis/go-sql-spanner/benchmarks
22

33
go 1.24.0
44

5-
toolchain go1.25.5
5+
toolchain go1.25.6
66

77
replace github.com/googleapis/go-sql-spanner => ../
88

99
require (
1010
cloud.google.com/go v0.123.0
1111
cloud.google.com/go/spanner v1.87.0
1212
github.com/google/uuid v1.6.0
13-
github.com/googleapis/go-sql-spanner v1.21.0
14-
google.golang.org/api v0.257.0
15-
google.golang.org/grpc v1.77.0
13+
github.com/googleapis/go-sql-spanner v1.22.0
14+
google.golang.org/api v0.262.0
15+
google.golang.org/grpc v1.78.0
1616
google.golang.org/protobuf v1.36.11
1717
)
1818

1919
require (
2020
cel.dev/expr v0.24.0 // indirect
21-
cloud.google.com/go/auth v0.17.0 // indirect
21+
cloud.google.com/go/auth v0.18.1 // indirect
2222
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2323
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2424
cloud.google.com/go/iam v1.5.3 // indirect
25-
cloud.google.com/go/longrunning v0.7.0 // indirect
25+
cloud.google.com/go/longrunning v0.8.0 // indirect
2626
cloud.google.com/go/monitoring v1.24.3 // indirect
2727
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.3 // indirect
2828
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
@@ -36,8 +36,8 @@ require (
3636
github.com/go-logr/stdr v1.2.2 // indirect
3737
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
3838
github.com/google/s2a-go v0.1.9 // indirect
39-
github.com/googleapis/enterprise-certificate-proxy v0.3.7 // indirect
40-
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
39+
github.com/googleapis/enterprise-certificate-proxy v0.3.11 // indirect
40+
github.com/googleapis/gax-go/v2 v2.16.0 // indirect
4141
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
4242
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
4343
github.com/spiffe/go-spiffe/v2 v2.6.0 // indirect
@@ -46,19 +46,19 @@ require (
4646
go.opentelemetry.io/contrib/detectors/gcp v1.38.0 // indirect
4747
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.62.0 // indirect
4848
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 // indirect
49-
go.opentelemetry.io/otel v1.38.0 // indirect
50-
go.opentelemetry.io/otel/metric v1.38.0 // indirect
51-
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
52-
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
53-
go.opentelemetry.io/otel/trace v1.38.0 // indirect
54-
golang.org/x/crypto v0.45.0 // indirect
55-
golang.org/x/net v0.47.0 // indirect
56-
golang.org/x/oauth2 v0.33.0 // indirect
57-
golang.org/x/sync v0.18.0 // indirect
58-
golang.org/x/sys v0.38.0 // indirect
59-
golang.org/x/text v0.31.0 // indirect
49+
go.opentelemetry.io/otel v1.39.0 // indirect
50+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
51+
go.opentelemetry.io/otel/sdk v1.39.0 // indirect
52+
go.opentelemetry.io/otel/sdk/metric v1.39.0 // indirect
53+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
54+
golang.org/x/crypto v0.47.0 // indirect
55+
golang.org/x/net v0.49.0 // indirect
56+
golang.org/x/oauth2 v0.34.0 // indirect
57+
golang.org/x/sync v0.19.0 // indirect
58+
golang.org/x/sys v0.40.0 // indirect
59+
golang.org/x/text v0.33.0 // indirect
6060
golang.org/x/time v0.14.0 // indirect
61-
google.golang.org/genproto v0.0.0-20250804133106-a7a43d27e69b // indirect
62-
google.golang.org/genproto/googleapis/api v0.0.0-20251111163417-95abcf5c77ba // indirect
63-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251213004720-97cd9d5aeac2 // indirect
61+
google.golang.org/genproto v0.0.0-20251202230838-ff82c1b0f217 // indirect
62+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
63+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260122232226-8e98ce8d340d // indirect
6464
)

0 commit comments

Comments
 (0)