Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func main() {
```text
module modname

go 1.23.0
go 1.24.0

require (
// ...
Expand Down
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
],
"force": {
"constraints": {
"go": "1.22"
"go": "1.23"
}
}
}
4 changes: 2 additions & 2 deletions .github/workflows/apidiff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
ref: main
- name: Get main commit
id: main
run: echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT

Check warning on line 21 in .github/workflows/apidiff.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:38: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/apidiff.yml:21:7: shellcheck reported issue in this script: SC2086:info:1:38: Double quote to prevent globbing and word splitting [shellcheck]
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.x'
go-version: '1.24.x'
- name: Get changed directories
id: changed_dirs
# Ignore changes to the internal and root directories.
# Ignore added files with --diff-filter=a.
run: |

Check warning on line 30 in .github/workflows/apidiff.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:4:20: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/apidiff.yml:30:7: shellcheck reported issue in this script: SC2086:info:4:20: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 30 in .github/workflows/apidiff.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:8:47: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/apidiff.yml:30:7: shellcheck reported issue in this script: SC2086:info:8:47: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 30 in .github/workflows/apidiff.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:9:19: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/apidiff.yml:30:7: shellcheck reported issue in this script: SC2086:info:9:19: Double quote to prevent globbing and word splitting [shellcheck]
dirs=$(go run ./internal/actions/cmd/changefinder -q --diff-filter=a)
if [ -z "$dirs" ]
then
Expand All @@ -53,7 +53,7 @@
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.x'
go-version: '1.24.x'
- name: Install latest apidiff
run: go install golang.org/x/exp/cmd/apidiff@latest
- uses: actions/checkout@v4
Expand All @@ -61,7 +61,7 @@
ref: main
- name: Create baseline
id: baseline
run: |

Check warning on line 64 in .github/workflows/apidiff.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:41: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/apidiff.yml:64:7: shellcheck reported issue in this script: SC2086:info:2:41: Double quote to prevent globbing and word splitting [shellcheck]
export CHANGED=${{ matrix.changed }}
echo pkg="${CHANGED//\//_}_pkg.main" >> $GITHUB_OUTPUT
- name: Create Go package baseline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
# Bigtable test proxy can be run on any of these Go versions
go: [ '1.22', '1.23']
go: [ '1.23', '1.24']
folders: ['bigtable']
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.24.x
- name: Find new version files
id: versions
# Ignore changes to the internal and root directories.
# Focus on newly added version.go files generated by GAPIC.
# Multiple new version files in a single module file will be deduped.
run: |

Check warning on line 32 in .github/workflows/new_client.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:4:20: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/new_client.yml:32:7: shellcheck reported issue in this script: SC2086:info:4:20: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/new_client.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:8:39: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/new_client.yml:32:7: shellcheck reported issue in this script: SC2086:info:8:39: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 32 in .github/workflows/new_client.yml

View workflow job for this annotation

GitHub Actions / lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:9:19: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/new_client.yml:32:7: shellcheck reported issue in this script: SC2086:info:9:19: Double quote to prevent globbing and word splitting [shellcheck]
dirs=$(go run ./internal/actions/cmd/changefinder -q --base=HEAD~1 --diff-filter=A --path-filter='*version.go' --content-regex='internal\.Version')
if [ -z "$dirs" ]
then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/owlbot_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.24.x
- run: |
git clone -b master --single-branch --depth=1 https://github.com/googleapis/googleapis.git
go run ./internal/postprocessor validate -googleapis-dir=./googleapis
2 changes: 1 addition & 1 deletion .github/workflows/third_party_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.24.x
- name: Find modified go.mod files
id: modfiles
run: |
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/vet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,10 @@ golint ./... 2>&1 | (
) |
tee /dev/stderr | (! read)

staticcheck -go 1.22 ./... 2>&1 | (
staticcheck -go 1.23 ./... 2>&1 | (
grep -v SA1019 |
grep -v go-cloud-debug-agent |
grep -v internal/btree/btree.go |
grep -v httpreplay/internal/proxy/debug.go |
grep -v third_party/go/doc |
grep -v third_party/pkgsite/synopsis.go
) |
tee /dev/stderr | (! read)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.x'
go-version: '1.23.x'
- name: Install tools
run: |
go install golang.org/x/lint/golint@latest && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Our libraries are compatible with the two most recent major Go
releases, the same [policy](https://go.dev/doc/devel/release#policy) the Go
programming language follows. This means the currently supported versions are:

- Go 1.22
- Go 1.23
- Go 1.24

## Authorization

Expand Down
2 changes: 1 addition & 1 deletion accessapproval/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/accessapproval

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion accesscontextmanager/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/accesscontextmanager

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion advisorynotifications/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/advisorynotifications

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion ai/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/ai

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion aiplatform/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/aiplatform

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion alloydb/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/alloydb

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion analytics/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/analytics

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion apigateway/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apigateway

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion apigeeconnect/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apigeeconnect

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion apigeeregistry/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apigeeregistry

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion apihub/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apihub

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion apikeys/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apikeys

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion appengine/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/appengine

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion apphub/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apphub

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion apps/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/apps

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion area120/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/area120

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion artifactregistry/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/artifactregistry

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion asset/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/asset

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/accesscontextmanager v1.9.3
Expand Down
2 changes: 1 addition & 1 deletion assuredworkloads/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/assuredworkloads

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion auth/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/auth

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/compute/metadata v0.6.0
Expand Down
4 changes: 1 addition & 3 deletions auth/oauth2adapt/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module cloud.google.com/go/auth/oauth2adapt

go 1.22.7

toolchain go1.22.12
go 1.23.0

require (
cloud.google.com/go/auth v0.14.1
Expand Down
2 changes: 1 addition & 1 deletion automl/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/automl

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion backupdr/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/backupdr

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion baremetalsolution/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/baremetalsolution

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion batch/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/batch

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion beyondcorp/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/beyondcorp

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion bigquery/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/bigquery

go 1.22.7
go 1.23.0

require (
cloud.google.com/go v0.118.2
Expand Down
2 changes: 1 addition & 1 deletion bigtable/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/bigtable

go 1.22.7
go 1.23.0

require (
cloud.google.com/go v0.118.2
Expand Down
2 changes: 1 addition & 1 deletion billing/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/billing

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion binaryauthorization/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/binaryauthorization

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion certificatemanager/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/certificatemanager

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion channel/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/channel

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/longrunning v0.6.4
Expand Down
2 changes: 1 addition & 1 deletion chat/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/chat

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/cloudbuild

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion cloudcontrolspartner/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/cloudcontrolspartner

go 1.22.7
go 1.23.0

require (
github.com/googleapis/gax-go/v2 v2.14.1
Expand Down
2 changes: 1 addition & 1 deletion clouddms/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cloud.google.com/go/clouddms

go 1.22.7
go 1.23.0

require (
cloud.google.com/go/iam v1.3.1
Expand Down
Loading
Loading