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

Commit e0ca81e

Browse files
chore: Update generation configuration at Thu Jan 15 02:36:04 UTC 2026 (#1902)
* chore: Update generation configuration at Fri Dec 12 02:32:32 UTC 2025 * chore: Update generation configuration at Sat Dec 13 02:30:20 UTC 2025 * chore: generate libraries at Sat Dec 13 02:30:50 UTC 2025 * chore: Update generation configuration at Mon Dec 15 02:35:49 UTC 2025 * chore: Update generation configuration at Tue Dec 16 02:33:10 UTC 2025 * chore: Update generation configuration at Wed Dec 17 02:31:06 UTC 2025 * chore: generate libraries at Wed Dec 17 02:31:35 UTC 2025 * chore: Update generation configuration at Thu Dec 18 02:31:17 UTC 2025 * chore: Update generation configuration at Fri Dec 19 02:32:34 UTC 2025 * chore: Update generation configuration at Sat Dec 20 02:30:09 UTC 2025 * chore: generate libraries at Sat Dec 20 02:30:38 UTC 2025 * chore: Update generation configuration at Wed Dec 24 02:32:17 UTC 2025 * chore: Update generation configuration at Thu Dec 25 02:34:13 UTC 2025 * chore: Update generation configuration at Tue Dec 30 02:34:32 UTC 2025 * chore: Update generation configuration at Wed Dec 31 02:34:12 UTC 2025 * chore: Update generation configuration at Tue Jan 6 02:36:01 UTC 2026 * chore: generate libraries at Tue Jan 6 02:36:32 UTC 2026 * chore: Update generation configuration at Wed Jan 7 02:35:57 UTC 2026 * chore: Update generation configuration at Thu Jan 8 02:35:34 UTC 2026 * chore: Update generation configuration at Fri Jan 9 02:36:13 UTC 2026 * chore: Update generation configuration at Sat Jan 10 02:32:33 UTC 2026 * chore: Update generation configuration at Tue Jan 13 02:35:14 UTC 2026 * chore: generate libraries at Tue Jan 13 02:35:44 UTC 2026 * chore: Update generation configuration at Wed Jan 14 02:40:07 UTC 2026 * chore: generate libraries at Wed Jan 14 02:40:41 UTC 2026 * chore: Update generation configuration at Thu Jan 15 02:36:04 UTC 2026 --------- Co-authored-by: Diego Marquez <diegomarquezp@google.com>
1 parent 3853159 commit e0ca81e

File tree

207 files changed

+231
-240
lines changed

Some content is hidden

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

207 files changed

+231
-240
lines changed

.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}"

.kokoro/presubmit/graalvm-native-a.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.54.2" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.55.1" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native-b.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.54.2" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.55.1" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native-c.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.54.2" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.55.1" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

README.md

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If you are using Maven without the BOM, add this to your dependencies:
5151
If you are using Gradle 5.x or later, add this to your dependencies:
5252

5353
```Groovy
54-
implementation platform('com.google.cloud:libraries-bom:26.72.0')
54+
implementation platform('com.google.cloud:libraries-bom:26.74.0-rc2')
5555
5656
implementation 'com.google.cloud:google-cloud-logging'
5757
```
@@ -438,29 +438,10 @@ information.
438438

439439
Apache 2.0 - See [LICENSE][license] for more information.
440440

441-
## CI Status
442-
443-
Java Version | Status
444-
------------ | ------
445-
Java 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2]
446-
Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3]
447-
Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4]
448-
Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
449-
450441
Java is a registered trademark of Oracle and/or its affiliates.
451442

452443
[product-docs]: https://cloud.google.com/logging/docs
453444
[javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-logging/latest/history
454-
[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java7.svg
455-
[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java7.html
456-
[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java8.svg
457-
[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java8.html
458-
[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java8-osx.svg
459-
[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java8-osx.html
460-
[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java8-win.svg
461-
[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java8-win.html
462-
[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java11.svg
463-
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java11.html
464445
[stability-image]: https://img.shields.io/badge/stability-stable-green
465446
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-logging.svg
466447
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-logging/3.23.9

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: logging
66
name_pretty: Cloud Logging

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/ConfigClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google LLC
2+
* Copyright 2026 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/ConfigSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google LLC
2+
* Copyright 2026 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -132,8 +132,8 @@
132132
* }</pre>
133133
*
134134
* Please refer to the [Client Side Retry
135-
* Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for
136-
* additional support in setting retries.
135+
* Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting
136+
* retries.
137137
*
138138
* <p>To configure the RetrySettings of a Long Running Operation method, create an
139139
* OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google LLC
2+
* Copyright 2026 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google LLC
2+
* Copyright 2026 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -95,8 +95,8 @@
9595
* }</pre>
9696
*
9797
* Please refer to the [Client Side Retry
98-
* Guide](https://github.com/googleapis/google-cloud-java/blob/main/docs/client_retries.md) for
99-
* additional support in setting retries.
98+
* Guide](https://docs.cloud.google.com/java/docs/client-retries) for additional support in setting
99+
* retries.
100100
*/
101101
@Generated("by gapic-generator-java")
102102
public class LoggingSettings extends ClientSettings<LoggingSettings> {

0 commit comments

Comments
 (0)