Skip to content

Commit 1573a6f

Browse files
chore: Update generation configuration at Thu Jan 15 02:36:30 UTC 2026 (#2271)
* chore: Update generation configuration at Fri Dec 12 02:33:32 UTC 2025 * chore: Update generation configuration at Sat Dec 13 02:30:44 UTC 2025 * chore: generate libraries at Sat Dec 13 02:31:10 UTC 2025 * chore: Update generation configuration at Mon Dec 15 02:36:37 UTC 2025 * chore: Update generation configuration at Tue Dec 16 02:33:32 UTC 2025 * chore: Update generation configuration at Wed Dec 17 02:31:43 UTC 2025 * chore: generate libraries at Wed Dec 17 02:32:14 UTC 2025 * chore: Update generation configuration at Thu Dec 18 02:31:47 UTC 2025 * chore: Update generation configuration at Fri Dec 19 02:32:56 UTC 2025 * chore: Update generation configuration at Sat Dec 20 02:30:34 UTC 2025 * chore: generate libraries at Sat Dec 20 02:31:05 UTC 2025 * chore: Update generation configuration at Wed Dec 24 02:32:45 UTC 2025 * chore: Update generation configuration at Thu Dec 25 02:34:43 UTC 2025 * chore: Update generation configuration at Tue Dec 30 02:34:58 UTC 2025 * chore: Update generation configuration at Wed Dec 31 02:34:58 UTC 2025 * chore: Update generation configuration at Tue Jan 6 02:36:25 UTC 2026 * chore: Update generation configuration at Wed Jan 7 02:36:22 UTC 2026 * chore: Update generation configuration at Thu Jan 8 02:36:11 UTC 2026 * chore: Update generation configuration at Fri Jan 9 02:37:04 UTC 2026 * chore: Update generation configuration at Sat Jan 10 02:32:59 UTC 2026 * chore: Update generation configuration at Tue Jan 13 02:35:39 UTC 2026 * chore: generate libraries at Tue Jan 13 02:36:12 UTC 2026 * chore: Update generation configuration at Wed Jan 14 02:40:55 UTC 2026 * chore: generate libraries at Wed Jan 14 02:41:26 UTC 2026 * chore: Update generation configuration at Thu Jan 15 02:36:30 UTC 2026
1 parent 3733c1c commit 1573a6f

8 files changed

Lines changed: 24 additions & 33 deletions

File tree

.github/scripts/update_generation_config.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,17 @@ function get_latest_released_version() {
1818
group_id_url_path="$(sed 's|\.|/|g' <<< "${group_id}")"
1919
url="https://repo1.maven.org/maven2/${group_id_url_path}/${artifact_id}/maven-metadata.xml"
2020
xml_content=$(curl -s --fail "${url}")
21-
latest=$(xmllint --xpath 'metadata/versioning/latest/text()' - <<< "${xml_content}")
21+
22+
# 1. Extract all version tags
23+
# 2. Strip the XML tags to leave just the version numbers
24+
# 3. Filter for strictly numbers.numbers.numbers (e.g., 2.54.0)
25+
# 4. Sort by version (V) and take the last one (tail -n 1)
26+
latest=$(echo "${xml_content}" \
27+
| grep -oE '<version>[0-9]+\.[0-9]+\.[0-9]+</version>' \
28+
| sed -E 's/<[^>]+>//g' \
29+
| sort -V \
30+
| tail -n 1)
31+
2232
if [[ -z "${latest}" ]]; then
2333
echo "The latest version of ${group_id}:${artifact_id} is empty."
2434
echo "The returned json from maven.org is invalid: ${json_content}"

.github/workflows/hermetic_library_generation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
40-
- uses: googleapis/sdk-platform-java/.github/scripts@v2.64.2
40+
- uses: googleapis/sdk-platform-java/.github/scripts@v2.65.1
4141
if: env.SHOULD_RUN == 'true'
4242
with:
4343
base_ref: ${{ github.base_ref }}

README.md

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ If you are using Maven without the 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:26.72.0')
52+
implementation platform('com.google.cloud:libraries-bom:26.74.0-rc2')
5353
5454
implementation 'com.google.cloud:google-cloud-firestore'
5555
```
@@ -195,29 +195,10 @@ information.
195195

196196
Apache 2.0 - See [LICENSE][license] for more information.
197197

198-
## CI Status
199-
200-
Java Version | Status
201-
------------ | ------
202-
Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2]
203-
Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3]
204-
Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4]
205-
Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
206-
207198
Java is a registered trademark of Oracle and/or its affiliates.
208199

209200
[product-docs]: https://cloud.google.com/firestore
210201
[javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-firestore/latest/history
211-
[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java7.svg
212-
[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java7.html
213-
[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java8.svg
214-
[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java8.html
215-
[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java8-osx.svg
216-
[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java8-osx.html
217-
[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java8-win.svg
218-
[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java8-win.html
219-
[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java11.svg
220-
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-firestore/java11.html
221202
[stability-image]: https://img.shields.io/badge/stability-stable-green
222203
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-firestore.svg
223204
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-firestore/3.34.0

generation_config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
gapic_generator_version: 2.64.2
2-
googleapis_commitish: b32495a713a68dd0dff90cf0b24021debfca048a
3-
libraries_bom_version: 26.72.0
1+
gapic_generator_version: 2.65.1
2+
googleapis_commitish: 415914bd49d41beaae8a9adb348ee2587c93aa70
3+
libraries_bom_version: 26.74.0-rc2
44
libraries:
55
- api_shortname: firestore
66
name_pretty: Cloud Firestore

google-cloud-firestore-admin/src/main/java/com/google/cloud/firestore/v1/FirestoreAdminSettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@
142142
* }</pre>
143143
*
144144
* Please refer to the [Client Side Retry
145-
* Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for
146-
* additional support in setting retries.
145+
* Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting
146+
* retries.
147147
*
148148
* <p>To configure the RetrySettings of a Long Running Operation method, create an
149149
* OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to

google-cloud-firestore-admin/src/main/java/com/google/cloud/firestore/v1/stub/FirestoreAdminStubSettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@
163163
* }</pre>
164164
*
165165
* Please refer to the [Client Side Retry
166-
* Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for
167-
* additional support in setting retries.
166+
* Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting
167+
* retries.
168168
*
169169
* <p>To configure the RetrySettings of a Long Running Operation method, create an
170170
* OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to

google-cloud-firestore/src/main/java/com/google/cloud/firestore/v1/FirestoreSettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@
116116
* }</pre>
117117
*
118118
* Please refer to the [Client Side Retry
119-
* Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for
120-
* additional support in setting retries.
119+
* Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting
120+
* retries.
121121
*/
122122
@Generated("by gapic-generator-java")
123123
public class FirestoreSettings extends ClientSettings<FirestoreSettings> {

google-cloud-firestore/src/main/java/com/google/cloud/firestore/v1/stub/FirestoreStubSettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@
135135
* }</pre>
136136
*
137137
* Please refer to the [Client Side Retry
138-
* Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for
139-
* additional support in setting retries.
138+
* Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting
139+
* retries.
140140
*/
141141
@Generated("by gapic-generator-java")
142142
public class FirestoreStubSettings extends StubSettings<FirestoreStubSettings> {

0 commit comments

Comments
 (0)