Skip to content

Commit 9b3d60b

Browse files
deps: regenerating with new Protobuf (2.2.x) (#873)
* fix: applying a different code generation * deps: shared deps 2.10.1 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 814a638 commit 9b3d60b

File tree

76 files changed

+2483
-3499
lines changed

Some content is hidden

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

76 files changed

+2483
-3499
lines changed

.github/workflows/ci.yaml

Lines changed: 63 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,87 @@
1-
'on':
1+
# Copyright 2022 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
# Github action job to test core java library features on
15+
# downstream client libraries before they are released.
16+
on:
217
push:
318
branches:
4-
- 2.2.x
5-
pull_request: null
19+
- main
20+
pull_request:
621
name: ci
722
jobs:
823
units:
924
runs-on: ubuntu-latest
1025
strategy:
1126
fail-fast: false
1227
matrix:
13-
java:
14-
- 8
15-
- 11
16-
- 17
28+
java: [8, 11, 17]
1729
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/setup-java@v3
20-
with:
21-
distribution: zulu
22-
java-version: ${{matrix.java}}
23-
- run: java -version
24-
- run: .kokoro/build.sh
25-
env:
26-
JOB_TYPE: test
30+
- uses: actions/checkout@v3
31+
- uses: actions/setup-java@v3
32+
with:
33+
distribution: zulu
34+
java-version: ${{matrix.java}}
35+
- run: java -version
36+
- run: .kokoro/build.sh
37+
env:
38+
JOB_TYPE: test
2739
windows:
2840
runs-on: windows-latest
2941
steps:
30-
- uses: actions/checkout@v3
31-
- uses: actions/setup-java@v3
32-
with:
33-
distribution: zulu
34-
java-version: 8
35-
- run: java -version
36-
- run: .kokoro/build.bat
37-
env:
38-
JOB_TYPE: test
42+
- uses: actions/checkout@v3
43+
- uses: actions/setup-java@v3
44+
with:
45+
distribution: zulu
46+
java-version: 8
47+
- run: java -version
48+
- run: .kokoro/build.bat
49+
env:
50+
JOB_TYPE: test
3951
dependencies:
4052
runs-on: ubuntu-latest
4153
strategy:
4254
matrix:
43-
java:
44-
- 8
45-
- 11
46-
- 17
55+
java: [8, 11, 17]
4756
steps:
48-
- uses: actions/checkout@v3
49-
- uses: actions/setup-java@v3
50-
with:
51-
distribution: zulu
52-
java-version: ${{matrix.java}}
53-
- run: java -version
54-
- run: .kokoro/dependencies.sh
57+
- uses: actions/checkout@v3
58+
- uses: actions/setup-java@v3
59+
with:
60+
distribution: zulu
61+
java-version: ${{matrix.java}}
62+
- run: java -version
63+
- run: .kokoro/dependencies.sh
5564
lint:
5665
runs-on: ubuntu-latest
5766
steps:
58-
- uses: actions/checkout@v3
59-
- uses: actions/setup-java@v3
60-
with:
61-
distribution: zulu
62-
java-version: 11
63-
- run: java -version
64-
- run: .kokoro/build.sh
65-
env:
66-
JOB_TYPE: lint
67+
- uses: actions/checkout@v3
68+
- uses: actions/setup-java@v3
69+
with:
70+
distribution: zulu
71+
java-version: 11
72+
- run: java -version
73+
- run: .kokoro/build.sh
74+
env:
75+
JOB_TYPE: lint
6776
clirr:
6877
runs-on: ubuntu-latest
6978
steps:
70-
- uses: actions/checkout@v3
71-
- uses: actions/setup-java@v3
72-
with:
73-
distribution: zulu
74-
java-version: 8
75-
- run: java -version
76-
- run: .kokoro/build.sh
77-
env:
78-
JOB_TYPE: clirr
79+
- uses: actions/checkout@v3
80+
- uses: actions/setup-java@v3
81+
with:
82+
distribution: zulu
83+
java-version: 8
84+
- run: java -version
85+
- run: .kokoro/build.sh
86+
env:
87+
JOB_TYPE: clirr

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ If you are using Maven without BOM, add this to your dependencies:
4949
If you are using Gradle 5.x or later, add this to your dependencies
5050

5151
```Groovy
52-
implementation platform('com.google.cloud:libraries-bom:25.1.0')
52+
implementation platform('com.google.cloud:libraries-bom:26.1.3')
5353
5454
implementation 'com.google.cloud:google-cloud-datastore'
5555
```
5656
If you are using Gradle without BOM, add this to your dependencies
5757

5858
```Groovy
59-
implementation 'com.google.cloud:google-cloud-datastore:2.3.1'
59+
implementation 'com.google.cloud:google-cloud-datastore:2.11.5'
6060
```
6161

6262
If you are using SBT, add this to your dependencies
6363

6464
```Scala
65-
libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "2.3.1"
65+
libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "2.11.5"
6666
```
6767

6868
## Authentication

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
<dependency>
152152
<groupId>com.google.cloud</groupId>
153153
<artifactId>google-cloud-shared-dependencies</artifactId>
154-
<version>2.10.0</version>
154+
<version>2.10.1</version>
155155
<type>pom</type>
156156
<scope>import</scope>
157157
</dependency>

0 commit comments

Comments
 (0)