Skip to content

Commit b3d457b

Browse files
committed
Merge branch 'main' into singe-channel-creds
2 parents 5f52e87 + 0731847 commit b3d457b

File tree

8 files changed

+18
-10
lines changed

8 files changed

+18
-10
lines changed

.cloudbuild/library_generation/library_generation.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ FROM docker.io/library/python:3.13.2-slim@sha256:6b3223eb4d93718828223966ad31690
3838

3939
ARG OWLBOT_CLI_COMMITTISH=3a68a9c0de318784b3aefadcc502a6521b3f1bc5
4040
ARG PROTOC_VERSION=25.8
41-
ARG GRPC_VERSION=1.76.0
41+
ARG GRPC_VERSION=1.76.1
4242
ENV HOME=/home
4343
ENV OS_ARCHITECTURE="linux-x86_64"
4444

.cloudbuild/library_generation/library_generation_airlock.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FROM us-docker.pkg.dev/artifact-foundry-prod/docker-3p-trusted/python@sha256:afc
3939

4040
ARG OWLBOT_CLI_COMMITTISH=3a68a9c0de318784b3aefadcc502a6521b3f1bc5
4141
ARG PROTOC_VERSION=25.8
42-
ARG GRPC_VERSION=1.76.0
42+
ARG GRPC_VERSION=1.76.1
4343
ENV HOME=/home
4444
ENV OS_ARCHITECTURE="linux-x86_64"
4545

.github/release-please.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ extraFiles:
1818
hermetic_build/library_generation/owlbot/templates/java_library/.kokoro/presubmit/graalvm-native-c.cfg
1919
- generation_config.yaml
2020
branches:
21+
- branch: protobuf-4.x-rc
22+
bumpMinorPreMajor: true
23+
handleGHRelease: true
24+
manifest: true
25+
releaseType: java-yoshi
2126
- branch: 2.23.x
2227
releaseType: java-backport
2328
manifest: true

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ jobs:
402402
working-directory: java-showcase
403403
run: |
404404
mvn versions:set -B -ntp -DnewVersion=local
405-
mvn clirr:check -B -ntp -Dclirr.skip=false -DcomparisonVersion=$SHOWCASE_CLIENT_VERSION
405+
mvn clirr:check -B -ntp -DcomparisonVersion=$SHOWCASE_CLIENT_VERSION
406406
407407
gapic-generator-java-bom:
408408
runs-on: ubuntu-22.04

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ target/
1313
*.vim
1414

1515
# Vscode Settings
16-
.vscode/settings.json
16+
.vscode
1717

1818
# Python
1919
**/__pycache__/
2020
.venv
21+
.python-version
2122

2223
# library generation
2324
**/googleapis

gapic-generator-java-pom-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<!-- External dependencies, especially gRPC and Protobuf version, should be
2828
consistent across modules in this repository -->
2929
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
30-
<grpc.version>1.76.0</grpc.version>
30+
<grpc.version>1.76.1</grpc.version>
3131
<google.auth.version>1.40.0</google.auth.version>
3232
<google.http-client.version>2.0.2</google.http-client.version>
3333
<gson.version>2.12.1</gson.version>

gax-java/dependencies.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ version.gax_httpjson=2.72.2-SNAPSHOT
2828

2929
version.com_google_protobuf=3.25.8
3030
version.google_java_format=1.15.0
31-
version.io_grpc=1.76.0
31+
version.io_grpc=1.76.1
3232

3333
# Maven artifacts.
3434
# Note, the actual name of each property matters (bazel build scripts depend on it).

java-showcase/gapic-showcase/pom.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
<properties>
2020
<gapic-showcase.version>0.36.2</gapic-showcase.version>
21+
<!-- This is the last version supporting slf4j 1.x, do not upgrade -->
2122
<slf4j1-logback.version>1.2.13</slf4j1-logback.version>
23+
<slf4j2-logback.version>1.5.21</slf4j2-logback.version>
2224
</properties>
2325

2426
<build>
@@ -244,13 +246,13 @@
244246
<dependency>
245247
<groupId>ch.qos.logback</groupId>
246248
<artifactId>logback-classic</artifactId>
247-
<version>1.5.16</version>
249+
<version>${slf4j2-logback.version}</version>
248250
<scope>test</scope>
249251
</dependency>
250252
<dependency>
251253
<groupId>ch.qos.logback</groupId>
252254
<artifactId>logback-core</artifactId>
253-
<version>1.5.16</version>
255+
<version>${slf4j2-logback.version}</version>
254256
<scope>test</scope>
255257
</dependency>
256258
</dependencies>
@@ -333,13 +335,13 @@
333335
<dependency>
334336
<groupId>ch.qos.logback</groupId>
335337
<artifactId>logback-classic</artifactId>
336-
<version>1.2.13</version>
338+
<version>${slf4j1-logback.version}</version>
337339
<scope>test</scope>
338340
</dependency>
339341
<dependency>
340342
<groupId>ch.qos.logback</groupId>
341343
<artifactId>logback-core</artifactId>
342-
<version>1.3.15</version>
344+
<version>${slf4j1-logback.version}</version>
343345
<scope>test</scope>
344346
</dependency>
345347
</dependencies>

0 commit comments

Comments
 (0)