Skip to content

Commit a0bc789

Browse files
committed
Merge upstream/master into upgrade-protobuf-36.0-rc2
2 parents 456dc21 + d51ec50 commit a0bc789

51 files changed

Lines changed: 2662 additions & 169 deletions

File tree

Some content is hidden

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

.github/workflows/branch-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
fail-fast: false # Should swap to true if we grow a large matrix
2121

2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v7
2424
- uses: actions/setup-java@v5
2525
with:
2626
java-version: ${{ matrix.jre }}
2727
distribution: 'temurin'
2828

2929
- name: Gradle cache
30-
uses: actions/cache@v5
30+
uses: actions/cache@v6
3131
with:
3232
path: |
3333
~/.gradle/caches

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
name: "Gradle wrapper validation"
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313
- uses: gradle/actions/wrapper-validation@v6

.github/workflows/testing.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
fail-fast: false # Should swap to true if we grow a large matrix
2222

2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- uses: actions/setup-java@v5
2626
with:
2727
java-version: ${{ matrix.jre }}
2828
distribution: 'temurin'
2929

3030
- name: Gradle cache
31-
uses: actions/cache@v5
31+
uses: actions/cache@v6
3232
with:
3333
path: |
3434
~/.gradle/caches
@@ -37,7 +37,7 @@ jobs:
3737
restore-keys: |
3838
${{ runner.os }}-gradle-
3939
- name: Maven cache
40-
uses: actions/cache@v5
40+
uses: actions/cache@v6
4141
with:
4242
path: |
4343
~/.m2/repository
@@ -46,7 +46,7 @@ jobs:
4646
restore-keys: |
4747
${{ runner.os }}-maven-
4848
- name: Protobuf cache
49-
uses: actions/cache@v5
49+
uses: actions/cache@v6
5050
with:
5151
path: /tmp/protobuf-cache
5252
key: ${{ runner.os }}-maven-${{ hashFiles('buildscripts/make_dependencies.sh') }}
@@ -71,7 +71,7 @@ jobs:
7171
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
7272
run: ./gradlew :grpc-all:coveralls -PskipAndroid=true -x compileJava
7373
- name: Codecov
74-
uses: codecov/codecov-action@v6
74+
uses: codecov/codecov-action@v7
7575
with:
7676
token: ${{ secrets.CODECOV_TOKEN }}
7777

@@ -88,15 +88,15 @@ jobs:
8888
USE_BAZEL_VERSION: ${{ matrix.bazel_version }}
8989

9090
steps:
91-
- uses: actions/checkout@v6
91+
- uses: actions/checkout@v7
9292

9393
- name: Check versions match in MODULE.bazel and repositories.bzl
9494
run: |
9595
diff -u <(sed -n '/GRPC_DEPS_START/,/GRPC_DEPS_END/ {/GRPC_DEPS_/! p}' MODULE.bazel) \
9696
<(sed -n '/GRPC_DEPS_START/,/GRPC_DEPS_END/ {/GRPC_DEPS_/! p}' repositories.bzl)
9797
9898
- name: Bazel cache
99-
uses: actions/cache@v5
99+
uses: actions/cache@v6
100100
with:
101101
path: |
102102
~/.cache/bazel/*/cache

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [
2020
"com.google.re2j:re2j:1.8",
2121
"com.google.s2a.proto.v2:s2a-proto:0.1.3",
2222
"com.google.truth:truth:1.4.5",
23-
"dev.cel:runtime:0.13.0",
24-
"dev.cel:protobuf:0.13.0",
25-
"dev.cel:common:0.13.0",
23+
"dev.cel:runtime:0.13.1",
24+
"dev.cel:protobuf:0.13.1",
25+
"dev.cel:common:0.13.1",
2626
"com.squareup.okhttp:okhttp:2.7.5",
2727
"com.squareup.okio:okio:2.10.0", # 3.0+ needs swapping to -jvm; need work to avoid flag-day
2828
"io.netty:netty-buffer:4.2.15.Final",

auth/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ java_library(
1111
"//api",
1212
artifact("com.google.auth:google-auth-library-credentials"),
1313
artifact("com.google.code.findbugs:jsr305"),
14+
artifact("com.google.code.gson:gson"),
1415
artifact("com.google.guava:guava"),
1516
],
1617
)

auth/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ tasks.named("jar").configure {
1717
dependencies {
1818
api project(':grpc-api'),
1919
libraries.google.auth.credentials
20-
implementation libraries.guava
20+
implementation libraries.guava,
21+
libraries.gson
2122
testImplementation project(':grpc-testing'),
2223
project(':grpc-core'),
2324
project(":grpc-context"), // Override google-auth dependency with our newer version

0 commit comments

Comments
 (0)