Skip to content

Commit 01bdeb5

Browse files
Merge branch 'main' into updatetime
2 parents 1c8df23 + 95ae207 commit 01bdeb5

File tree

1,143 files changed

+121236
-49374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,143 files changed

+121236
-49374
lines changed

.github/.OwlBot.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ deep-remove-regex:
2020
- /apigateway/apiv1/
2121
- /apigeeconnect/apiv1/
2222
- /apigeeregistry/apiv1/
23+
- /apihub/apiv1/
2324
- /apikeys/apiv2/
2425
- /appengine/apiv1/
2526
- /apphub/apiv1/
@@ -154,6 +155,7 @@ deep-remove-regex:
154155
- /internal/generated/snippets/apigateway/apiv1/
155156
- /internal/generated/snippets/apigeeconnect/apiv1/
156157
- /internal/generated/snippets/apigeeregistry/apiv1/
158+
- /internal/generated/snippets/apihub/apiv1/
157159
- /internal/generated/snippets/apikeys/apiv2/
158160
- /internal/generated/snippets/appengine/apiv1/
159161
- /internal/generated/snippets/apphub/apiv1/
@@ -647,6 +649,8 @@ deep-copy-regex:
647649
dest: /
648650
- source: /google/cloud/asset/v1p5beta1/cloud.google.com/go
649651
dest: /
652+
- source: /google/cloud/apihub/v1/cloud.google.com/go
653+
dest: /
650654
- source: /google/api/apikeys/v2/cloud.google.com/go
651655
dest: /
652656
- source: /google/api/cloudquotas/v1/cloud.google.com/go

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,42 +7,52 @@ assignees: ''
77

88
---
99

10-
**Client**
10+
## Client
1111

1212
e.g. PubSub
1313

14-
**Environment**
14+
## Environment
1515

1616
e.g. Alpine Docker on GKE
17+
e.g. $ go version
1718

18-
**Go Environment**
19+
## Code and Dependencies
1920

20-
$ go version
21-
$ go env
22-
23-
**Code**
24-
25-
e.g.
2621
```go
2722
package main
2823

2924
func main() {
30-
// ...
25+
// ...
3126
}
3227
```
3328

34-
**Expected behavior**
29+
<details>
30+
<summary>go.mod</summary>
31+
32+
```text
33+
module modname
34+
35+
go 1.23.0
36+
37+
require (
38+
// ...
39+
)
40+
```
41+
42+
</details>
43+
44+
## Expected behavior
3545

3646
e.g. Messages arrive really fast.
3747

38-
**Actual behavior**
48+
## Actual behavior
3949

4050
e.g. Messages arrive really slowly.
4151

42-
**Screenshots**
52+
## Screenshots
4353

4454
e.g. A chart showing how messages are slow. Delete if not necessary.
4555

46-
**Additional context**
56+
## Additional context
4757

4858
e.g. Started after upgrading to v0.50.0.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ assignees: ''
77

88
---
99

10-
**Is your feature request related to a problem? Please describe.**
10+
## Is your feature request related to a problem? Please describe.
1111
A clear and concise description of what the problem is. Ex. It would be easier to do Y if the libraries
1212
did X [...]
1313

14-
**Describe the solution you'd like**
14+
## Describe the solution you'd like
1515
A clear and concise description of what you want to happen. What should the API be? How would you use it?
1616

17-
**Describe alternatives you've considered**
17+
## Describe alternatives you've considered
1818
A clear and concise description of any alternative solutions or features you've considered.
1919

20-
**Additional context**
20+
## Additional context
2121
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/migration-issue.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/renovate.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@
1313
"commitMessageAction": "update",
1414
"groupName": "deps",
1515
"ignoreDeps": [
16-
"github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace",
17-
"go.opentelemetry.io/contrib/detectors/gcp",
18-
"go.opentelemetry.io/otel",
19-
"go.opentelemetry.io/otel/metric",
20-
"go.opentelemetry.io/otel/sdk",
21-
"go.opentelemetry.io/otel/trace",
2216
"google.golang.org/genproto"
2317
],
2418
"ignorePaths": [
@@ -36,7 +30,7 @@
3630
],
3731
"force": {
3832
"constraints": {
39-
"go": "1.20"
33+
"go": "1.21"
4034
}
4135
}
4236
}

.github/workflows/apidiff.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
permissions:
77
contents: read
88

9+
env:
10+
GOTOOLCHAIN: local
11+
912
jobs:
1013
scan_changes:
1114
runs-on: ubuntu-latest
@@ -19,7 +22,7 @@ jobs:
1922
- uses: actions/checkout@v4
2023
- uses: actions/setup-go@v5
2124
with:
22-
go-version: '1.22.x'
25+
go-version: '1.23.x'
2326
- name: Get changed directories
2427
id: changed_dirs
2528
# Ignore changes to the internal and root directories.
@@ -50,7 +53,7 @@ jobs:
5053
steps:
5154
- uses: actions/setup-go@v5
5255
with:
53-
go-version: '1.22.x'
56+
go-version: '1.23.x'
5457
- name: Install latest apidiff
5558
run: go install golang.org/x/exp/cmd/apidiff@latest
5659
- uses: actions/checkout@v4

.github/workflows/conformance.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ name: bigtable_conformance
2727
permissions:
2828
contents: read
2929

30+
env:
31+
GOTOOLCHAIN: local
32+
3033
jobs:
3134
bigtable_conformance:
3235
runs-on: ubuntu-latest
3336
strategy:
3437
matrix:
3538
# Bigtable test proxy can be run on any of these Go versions
36-
go: [ '1.20', '1.22']
39+
go: [ '1.21', '1.23']
3740
folders: ['bigtable']
3841
steps:
3942
- uses: actions/checkout@v4

.github/workflows/new_client.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
permissions:
1212
contents: read
1313

14+
env:
15+
GOTOOLCHAIN: local
16+
1417
jobs:
1518
new_versions:
1619
runs-on: ubuntu-latest
@@ -20,7 +23,7 @@ jobs:
2023
fetch-depth: 2
2124
- uses: actions/setup-go@v5
2225
with:
23-
go-version: 1.22.x
26+
go-version: 1.23.x
2427
- name: Find new version files
2528
id: versions
2629
# Ignore changes to the internal and root directories.

.github/workflows/owlbot_validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 1
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.22.x
21+
go-version: 1.23.x
2222
- run: |
2323
git clone -b master --single-branch --depth=1 https://github.com/googleapis/googleapis.git
2424
go run ./internal/postprocessor validate -googleapis-dir=./googleapis

.github/workflows/third_party_check.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
permissions:
99
contents: read
1010

11+
env:
12+
GOTOOLCHAIN: local
13+
1114
jobs:
1215
changed_gomods:
1316
runs-on: ubuntu-latest
@@ -17,7 +20,7 @@ jobs:
1720
fetch-depth: 2
1821
- uses: actions/setup-go@v5
1922
with:
20-
go-version: 1.22.x
23+
go-version: 1.23.x
2124
- name: Find modified go.mod files
2225
id: modfiles
2326
run: |

0 commit comments

Comments
 (0)