Skip to content

Commit 5e4eb51

Browse files
committed
Merge branch 'main' into otel
2 parents 08e1719 + 899c50b commit 5e4eb51

File tree

356 files changed

+5091
-3233
lines changed

Some content is hidden

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

356 files changed

+5091
-3233
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Google LLC
1+
# Copyright 2024 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16-
digest: sha256:81f75d962cd28b7ad10740a643b8069b8fa0357cb495b782eef8560bb7a8fd65
17-
# created: 2023-12-05T19:16:19.735195992Z
16+
digest: sha256:0d1bb26a1a99ae0456176bf891b8490e9aab424a5cb4e4d301d9703c4dc43b58
17+
# created: 2024-01-30T19:46:55.029238294Z

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# For syntax help see:
55
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax
66

7-
# The @googleapis/api-bigtable is the default owner for changes in this repo
8-
* @googleapis/yoshi-java @googleapis/api-bigtable
7+
# The @googleapis/api-bigtable @googleapis/api-bigtable-partners is the default owner for changes in this repo
8+
* @googleapis/yoshi-java @googleapis/api-bigtable @googleapis/api-bigtable-partners
99

1010
# for handwritten libraries, keep codeowner_team in .repo-metadata.json as owner
11-
**/*.java @googleapis/api-bigtable
11+
**/*.java @googleapis/api-bigtable @googleapis/api-bigtable-partners
1212

1313

1414
# The java-samples-reviewers team is the default owner for samples changes

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Thank you for opening a Pull Request! Before submitting your PR, there are a few
44
- [ ] Code coverage does not decrease (if any source code was changed)
55
- [ ] Appropriate docs were updated (if necessary)
66
- [ ] Rollback plan is reviewed and LGTMed
7+
- [ ] All new data plane features have a completed end to end testing plan
78

89
Fixes #<issue_number_goes_here> ☕️
910

.github/workflows/conformance.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
conformance:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
27-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v4
2828
with:
2929
repository: googleapis/cloud-bigtable-clients-test
3030
ref: main
3131
path: cloud-bigtable-clients-test
32-
- uses: actions/setup-java@v3
32+
- uses: actions/setup-java@v4
3333
with:
3434
distribution: zulu
3535
java-version: 8
36-
- uses: actions/setup-go@v4
36+
- uses: actions/setup-go@v5
3737
with:
3838
go-version: '>=1.20.2'
3939
- run: java -version
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Renovate Bot Config Validation
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'renovate.json'
7+
8+
jobs:
9+
renovate_bot_config_validation:
10+
runs-on: ubuntu-22.04
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '20'
20+
21+
- name: Install Renovate and Config Validator
22+
run: |
23+
npm install -g npm@latest
24+
npm install --global renovate
25+
renovate-config-validator
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
pull_request:
3+
name: Unmanaged dependency check
4+
jobs:
5+
unmanaged_dependency_check:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-java@v4
10+
with:
11+
distribution: temurin
12+
java-version: 11
13+
- name: Install modules
14+
shell: bash
15+
run: .kokoro/build.sh
16+
- name: Unmanaged dependency check
17+
uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.23.0
18+
with:
19+
bom-path: google-cloud-bigtable-bom/pom.xml

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ api_key
4242
artman-genfiles
4343

4444
.flattened-pom.xml
45+
dependency-reduced-pom.xml

.kokoro/presubmit/graalvm-native-17.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm17:22.3.3"
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.25.0"
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm:22.3.3"
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.25.0"
77
}
88

99
env_vars: {

.kokoro/release/bump_snapshot.cfg

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

0 commit comments

Comments
 (0)