Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 88543bf

Browse files
committed
chore: Manual run of owl automation.
Adds a breaking change difference for FIELD_* methods, which were introduced in an early grpc version. This change bumps the grpc version from 0.12.0 to 2.5.2, so the breaking change does appropriately bump the major version.
1 parent e5b016e commit 88543bf

File tree

58 files changed

+31532
-0
lines changed

Some content is hidden

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

58 files changed

+31532
-0
lines changed

google-cloud-datastore-bom/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,26 @@
5454
<artifactId>google-cloud-datastore</artifactId>
5555
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-datastore:current} -->
5656
</dependency>
57+
<dependency>
58+
<groupId>com.google.api.grpc</groupId>
59+
<artifactId>grpc-google-cloud-datastore-admin-v1</artifactId>
60+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datastore-admin-v1:current} -->
61+
</dependency>
62+
<dependency>
63+
<groupId>com.google.api.grpc</groupId>
64+
<artifactId>grpc-google-cloud-datastore-v1</artifactId>
65+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datastore-v1:current} -->
66+
</dependency>
5767
<dependency>
5868
<groupId>com.google.api.grpc</groupId>
5969
<artifactId>proto-google-cloud-datastore-v1</artifactId>
6070
<version>0.96.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datastore-v1:current} -->
6171
</dependency>
72+
<dependency>
73+
<groupId>com.google.api.grpc</groupId>
74+
<artifactId>proto-google-cloud-datastore-admin-v1</artifactId>
75+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datastore-admin-v1:current} -->
76+
</dependency>
6277
</dependencies>
6378
</dependencyManagement>
6479

google-cloud-datastore/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@
1818
<site.installationModule>google-cloud-datastore</site.installationModule>
1919
</properties>
2020
<dependencies>
21+
<dependency>
22+
<groupId>com.google.api.grpc</groupId>
23+
<artifactId>grpc-google-cloud-datastore-v1</artifactId>
24+
<scope>test</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.google.api.grpc</groupId>
28+
<artifactId>grpc-google-cloud-datastore-admin-v1</artifactId>
29+
<scope>test</scope>
30+
</dependency>
2131
<dependency>
2232
<groupId>com.google.cloud</groupId>
2333
<artifactId>google-cloud-core-http</artifactId>
@@ -26,6 +36,10 @@
2636
<groupId>com.google.api.grpc</groupId>
2737
<artifactId>proto-google-cloud-datastore-v1</artifactId>
2838
</dependency>
39+
<dependency>
40+
<groupId>com.google.api.grpc</groupId>
41+
<artifactId>proto-google-cloud-datastore-admin-v1</artifactId>
42+
</dependency>
2943
<dependency>
3044
<groupId>com.google.cloud.datastore</groupId>
3145
<artifactId>datastore-v1-proto-client</artifactId>
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.google.api.grpc</groupId>
6+
<artifactId>grpc-google-cloud-datastore-admin-v1</artifactId>
7+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datastore-admin-v1:current} -->
8+
<name>grpc-google-cloud-datastore-admin-v1</name>
9+
<description>GRPC library for google-cloud-datastore</description>
10+
<parent>
11+
<groupId>com.google.cloud</groupId>
12+
<artifactId>google-cloud-datastore-parent</artifactId>
13+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-datastore:current} -->
14+
</parent>
15+
<dependencies>
16+
<dependency>
17+
<groupId>io.grpc</groupId>
18+
<artifactId>grpc-api</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>io.grpc</groupId>
22+
<artifactId>grpc-stub</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>io.grpc</groupId>
26+
<artifactId>grpc-protobuf</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.google.protobuf</groupId>
30+
<artifactId>protobuf-java</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.api.grpc</groupId>
34+
<artifactId>proto-google-common-protos</artifactId>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.google.api.grpc</groupId>
38+
<artifactId>proto-google-cloud-datastore-admin-v1</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.google.guava</groupId>
42+
<artifactId>guava</artifactId>
43+
</dependency>
44+
</dependencies>
45+
46+
<profiles>
47+
<profile>
48+
<id>java9</id>
49+
<activation>
50+
<jdk>[9,)</jdk>
51+
</activation>
52+
<dependencies>
53+
<dependency>
54+
<groupId>javax.annotation</groupId>
55+
<artifactId>javax.annotation-api</artifactId>
56+
</dependency>
57+
</dependencies>
58+
</profile>
59+
</profiles>
60+
61+
<build>
62+
<plugins>
63+
<plugin>
64+
<groupId>org.codehaus.mojo</groupId>
65+
<artifactId>flatten-maven-plugin</artifactId>
66+
</plugin>
67+
</plugins>
68+
</build>
69+
</project>

0 commit comments

Comments
 (0)