Skip to content

Commit d349983

Browse files
authored
Merge branch 'main' into sajc-universe-domain
2 parents e3b6176 + 5977c1f commit d349983

File tree

9 files changed

+23
-29
lines changed

9 files changed

+23
-29
lines changed

.cloudbuild/library_generation/library_generation.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ FROM docker.io/library/python:3.13.2-alpine3.20@sha256:816feb29731cdee64b15b0ae9
5858

5959
ARG OWLBOT_CLI_COMMITTISH=3a68a9c0de318784b3aefadcc502a6521b3f1bc5
6060
ARG PROTOC_VERSION=25.5
61-
ARG GRPC_VERSION=1.70.0
61+
ARG GRPC_VERSION=1.71.0
6262
ENV HOME=/home
6363
ENV OS_ARCHITECTURE="linux-x86_64"
6464

.cloudbuild/library_generation/library_generation_airlock.Dockerfile

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

6161
ARG OWLBOT_CLI_COMMITTISH=3a68a9c0de318784b3aefadcc502a6521b3f1bc5
6262
ARG PROTOC_VERSION=25.5
63-
ARG GRPC_VERSION=1.70.0
63+
ARG GRPC_VERSION=1.71.0
6464
ENV HOME=/home
6565
ENV OS_ARCHITECTURE="linux-x86_64"
6666

.kokoro/presubmit/downstream-build.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ scriptDir=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
2525
cd "${scriptDir}/../.." # git repo root
2626
source "$scriptDir/common.sh"
2727

28-
# Use GCP Maven Mirror
29-
mkdir -p "${HOME}/.m2"
30-
cp settings.xml "${HOME}/.m2"
31-
3228
# Publish this repo's modules to local maven to make them available for downstream libraries
3329
mvn install --projects '!gapic-generator-java' \
3430
-Danimal.sniffer.skip \

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ for gapic-generator-java's Bazel build.
4444
There are 4 layers of testing in this repo:
4545
1. Traditional unit tests. These tests usually focus on testing one very specific test case at a time. For example, [MethodTest](https://github.com/googleapis/sdk-platform-java/blob/main/gapic-generator-java/src/test/java/com/google/api/generator/gapic/model/MethodTest.java)
4646
2. Golden unit tests. These tests start with a test proto, we create different test cases in the proto, load the proto in unit tests and save the generated file as golden files. For example, [routing header proto](https://github.com/googleapis/sdk-platform-java/blob/main/gapic-generator-java/src/test/proto/explicit_dynamic_routing_header_testing.proto) -> Load in the [unit test](https://github.com/googleapis/sdk-platform-java/blob/main/gapic-generator-java/src/test/java/com/google/api/generator/gapic/composer/grpc/GrpcServiceStubClassComposerTest.java#L56-L64) -> Saved as [golden](https://github.com/googleapis/sdk-platform-java/blob/main/gapic-generator-java/src/test/java/com/google/api/generator/gapic/composer/grpc/goldens/GrpcRoutingHeadersStub.golden)
47-
3. Showcase integration tests. They test the generated library's behavior against a mock server, see [README.md](https://github.com/googleapis/sdk-platform-java/blob/main/showcase/README.md) of showcase module for details.
47+
3. Showcase integration tests. They test the generated library's behavior against a mock server, see [README.md](https://github.com/googleapis/sdk-platform-java/blob/main/java-showcase/README.md) of showcase module for details.
4848
4. Golden integration tests. These tests generate a full client library with real protos from googleapis, for example, golden integration tests for [compute](https://github.com/googleapis/sdk-platform-java/tree/main/test/integration/goldens/compute). However, we _should_ stop adding new ones, and rely on golden unit tests and showcase tests.
4949
5050
Based on where the code changes are, we should add different tests, in general
@@ -60,7 +60,7 @@ Based on where the code changes are, we should add different tests, in general
6060
6161
See the [Unit Tests](https://github.com/googleapis/sdk-platform-java/blob/main/gapic-generator-java/DEVELOPMENT.md#unit-tests) section in gapic-generator-java/DEVELOPMENT.md for how to run traditional and golden unit tests.
6262
63-
See [Running the Integration Tests](https://github.com/googleapis/sdk-platform-java/blob/main/showcase/README.md#running-the-integration-tests) and [Update the Golden Showcase Files](https://github.com/googleapis/sdk-platform-java/blob/main/showcase/README.md#update-the-golden-showcase-files) sections in showcase/README.md for how to run and update showcase integration tests.
63+
See [Running the Integration Tests](https://github.com/googleapis/sdk-platform-java/blob/main/java-showcase/README.md#running-the-integration-tests) and [Update the Golden Showcase Files](https://github.com/googleapis/sdk-platform-java/blob/main/java-showcase/README.md#update-the-golden-showcase-files) sections in java-showcase/README.md for how to run and update showcase integration tests.
6464
6565
See the [Integration Tests](https://github.com/googleapis/sdk-platform-java/blob/main/gapic-generator-java/DEVELOPMENT.md#integration-tests) section in gapic-generator-java/DEVELOPMENT.md for how to run golden integration tests.
6666

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
<!-- External dependencies, especially gRPC and Protobuf version, should be
2727
consistent across modules in this repository -->
2828
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
29-
<grpc.version>1.70.0</grpc.version>
30-
<google.auth.version>1.35.1-SNAPSHOT</google.auth.version>
29+
<grpc.version>1.71.0</grpc.version>
30+
<google.auth.version>1.36.0</google.auth.version>
3131
<google.http-client.version>1.47.0</google.http-client.version>
3232
<gson.version>2.12.1</gson.version>
3333
<guava.version>33.4.0-jre</guava.version>

gax-java/dependencies.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ version.gax_httpjson=2.66.1-SNAPSHOT
2828

2929
version.com_google_protobuf=3.25.5
3030
version.google_java_format=1.15.0
31-
version.io_grpc=1.70.0
31+
version.io_grpc=1.71.0
3232

3333
# Maven artifacts.
3434
# Note, the actual name of each property matters (bazel build scripts depend on it).
@@ -37,8 +37,8 @@ version.io_grpc=1.70.0
3737
# 2) Replace all characters which are neither alphabetic nor digits with the underscore ('_') character
3838
maven.com_google_api_grpc_proto_google_common_protos=com.google.api.grpc:proto-google-common-protos:2.52.0
3939
maven.com_google_api_grpc_grpc_google_common_protos=com.google.api.grpc:grpc-google-common-protos:2.52.0
40-
maven.com_google_auth_google_auth_library_oauth2_http=com.google.auth:google-auth-library-oauth2-http:1.35.0
41-
maven.com_google_auth_google_auth_library_credentials=com.google.auth:google-auth-library-credentials:1.35.0
40+
maven.com_google_auth_google_auth_library_oauth2_http=com.google.auth:google-auth-library-oauth2-http:1.36.0
41+
maven.com_google_auth_google_auth_library_credentials=com.google.auth:google-auth-library-credentials:1.36.0
4242
maven.io_opentelemetry_opentelemetry_api=io.opentelemetry:opentelemetry-api:1.47.0
4343
maven.io_opencensus_opencensus_api=io.opencensus:opencensus-api:0.31.1
4444
maven.io_opencensus_opencensus_contrib_grpc_metrics=io.opencensus:opencensus-contrib-grpc-metrics:0.31.1

java-shared-dependencies/first-party-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<site.installationModule>${project.artifactId}</site.installationModule>
2525
<grpc-gcp.version>1.6.1</grpc-gcp.version>
26-
<google.oauth-client.version>1.37.0</google.oauth-client.version>
26+
<google.oauth-client.version>1.39.0</google.oauth-client.version>
2727
<google.api-client.version>2.7.2</google.api-client.version>
2828
</properties>
2929

java-showcase/owlbot.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
for library in s.get_staging_dirs():
2020
# put any special-case replacements here
21-
print('moving library asdasd: ')
22-
print(library)
2321
s.move(library)
2422

2523
s.remove_staging_dirs()
@@ -36,4 +34,4 @@
3634
"license-checks.xml",
3735
"renovate.json",
3836
".gitignore"
39-
])
37+
])

settings.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1919
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
2020
https://maven.apache.org/xsd/settings-1.0.0.xsd">
21-
<mirrors>
22-
<mirror>
23-
<!-- Google's Maven Central mirror for Americas
24-
https://maven-central.storage.googleapis.com/index.html
25-
-->
26-
<id>google-maven-central</id>
27-
<name>GCS Maven Central mirror</name>
28-
<url>https://maven-central.storage-download.googleapis.com/maven2/</url>
29-
<mirrorOf>central</mirrorOf>
30-
</mirror>
31-
</mirrors>
32-
</settings>
21+
<!-- <mirrors>-->
22+
<!-- <mirror>-->
23+
<!-- &lt;!&ndash; Google's Maven Central mirror for Americas-->
24+
<!-- https://maven-central.storage.googleapis.com/index.html-->
25+
<!-- &ndash;&gt;-->
26+
<!-- <id>google-maven-central</id>-->
27+
<!-- <name>GCS Maven Central mirror</name>-->
28+
<!-- <url>https://maven-central.storage-download.googleapis.com/maven2/</url>-->
29+
<!-- <mirrorOf>central</mirrorOf>-->
30+
<!-- </mirror>-->
31+
<!-- </mirrors>-->
32+
</settings>

0 commit comments

Comments
 (0)