diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index dcdda8c6d..516d73666 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -1,3 +1,18 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. docker: image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest - digest: sha256:9669c169d0582f13d6b2d319a43a78fc49f296a883aa48519bd0e5c7d34087c4 + # created: 2022-04-06T16:30:03.627422514Z + digest: sha256:4a8d2d787ea374ba929e37c39c4b16d2498044e24ef123077125b946cac2dcdc + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a4f5f28c3..6fa8373a0 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -5,3 +5,6 @@ Thank you for opening a Pull Request! Before submitting your PR, there are a few - [ ] Appropriate docs were updated (if necessary) Fixes # ☕️ + +If you write sample code, please follow the [samples format]( +https://github.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md). diff --git a/.github/auto-label.yaml b/.github/auto-label.yaml index 1e4706499..5e6999f09 100644 --- a/.github/auto-label.yaml +++ b/.github/auto-label.yaml @@ -1,4 +1,16 @@ -product: true +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. requestsize: enabled: true staleness: diff --git a/.github/workflows/approve-readme.yaml b/.github/workflows/approve-readme.yaml index 7513acaeb..f5fc7d516 100644 --- a/.github/workflows/approve-readme.yaml +++ b/.github/workflows/approve-readme.yaml @@ -1,3 +1,18 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Github action job to test core java library features on +# downstream client libraries before they are released. on: pull_request: name: auto-merge-readme @@ -6,7 +21,7 @@ jobs: runs-on: ubuntu-latest if: github.repository_owner == 'googleapis' && github.head_ref == 'autosynth-readme' steps: - - uses: actions/github-script@v3 + - uses: actions/github-script@v6 with: github-token: ${{secrets.YOSHI_APPROVER_TOKEN}} script: | diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index 9b4fd4d83..7a106d007 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -1,3 +1,18 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Github action job to test core java library features on +# downstream client libraries before they are released. on: pull_request: name: auto-release @@ -6,7 +21,7 @@ jobs: runs-on: ubuntu-latest if: contains(github.head_ref, 'release-please') steps: - - uses: actions/github-script@v3 + - uses: actions/github-script@v6 with: github-token: ${{secrets.YOSHI_APPROVER_TOKEN}} debug: true @@ -16,13 +31,13 @@ jobs: return; } - // only approve PRs like "chore: release " - if ( !context.payload.pull_request.title.startsWith("chore: release") ) { + // only approve PRs like "chore(main): release " + if ( !context.payload.pull_request.title.startsWith("chore(main): release") ) { return; } // only approve PRs with pom.xml and versions.txt changes - const filesPromise = github.pulls.listFiles.endpoint({ + const filesPromise = github.rest.pulls.listFiles.endpoint({ owner: context.repo.owner, repo: context.repo.repo, pull_number: context.payload.pull_request.number, @@ -54,7 +69,7 @@ jobs: return; } - const promise = github.pulls.list.endpoint({ + const promise = github.rest.pulls.list.endpoint({ owner: context.repo.owner, repo: context.repo.repo, state: 'open' @@ -71,7 +86,7 @@ jobs: } // approve release PR - await github.pulls.createReview({ + await github.rest.pulls.createReview({ owner: context.repo.owner, repo: context.repo.repo, body: 'Rubber stamped release!', @@ -80,7 +95,7 @@ jobs: }); // attach kokoro:force-run and automerge labels - await github.issues.addLabels({ + await github.rest.issues.addLabels({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.payload.pull_request.number, diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 05de1f60d..83ef7f9c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,3 +1,18 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Github action job to test core java library features on +# downstream client libraries before they are released. on: push: branches: @@ -12,8 +27,8 @@ jobs: matrix: java: [8, 11, 17] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: zulu java-version: ${{matrix.java}} @@ -24,8 +39,8 @@ jobs: windows: runs-on: windows-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: zulu java-version: 8 @@ -39,8 +54,8 @@ jobs: matrix: java: [8, 11, 17] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: zulu java-version: ${{matrix.java}} @@ -49,8 +64,8 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: zulu java-version: 11 @@ -61,8 +76,8 @@ jobs: clirr: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: zulu java-version: 8 diff --git a/.github/workflows/samples.yaml b/.github/workflows/samples.yaml index c46230a78..912ed8b2b 100644 --- a/.github/workflows/samples.yaml +++ b/.github/workflows/samples.yaml @@ -1,3 +1,18 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Github action job to test core java library features on +# downstream client libraries before they are released. on: pull_request: name: samples @@ -5,9 +20,10 @@ jobs: checkstyle: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: + distribution: zulu java-version: 8 - name: Run checkstyle run: mvn -P lint --quiet --batch-mode checkstyle:check diff --git a/.kokoro/build.bat b/.kokoro/build.bat index 05826ad93..067cf4a4c 100644 --- a/.kokoro/build.bat +++ b/.kokoro/build.bat @@ -1,3 +1,18 @@ +:: Copyright 2022 Google LLC +:: +:: Licensed under the Apache License, Version 2.0 (the "License"); +:: you may not use this file except in compliance with the License. +:: You may obtain a copy of the License at +:: +:: http://www.apache.org/licenses/LICENSE-2.0 +:: +:: Unless required by applicable law or agreed to in writing, software +:: distributed under the License is distributed on an "AS IS" BASIS, +:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +:: See the License for the specific language governing permissions and +:: limitations under the License. +:: Github action job to test core java library features on +:: downstream client libraries before they are released. :: See documentation in type-shell-output.bat "C:\Program Files\Git\bin\bash.exe" %~dp0build.sh diff --git a/.kokoro/nightly/integration.cfg b/.kokoro/nightly/integration.cfg index e51c7b4c6..a2907a257 100644 --- a/.kokoro/nightly/integration.cfg +++ b/.kokoro/nightly/integration.cfg @@ -13,12 +13,12 @@ env_vars: { # TODO: remove this after we've migrated all tests and scripts env_vars: { key: "GCLOUD_PROJECT" - value: "gcloud-devel" + value: "java-docs-samples-testing" } env_vars: { key: "GOOGLE_CLOUD_PROJECT" - value: "gcloud-devel" + value: "java-docs-samples-testing" } env_vars: { diff --git a/.kokoro/nightly/java11-integration.cfg b/.kokoro/nightly/java11-integration.cfg new file mode 100644 index 000000000..58049cc38 --- /dev/null +++ b/.kokoro/nightly/java11-integration.cfg @@ -0,0 +1,37 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Configure the docker image for kokoro-trampoline. +env_vars: { + key: "TRAMPOLINE_IMAGE" + value: "gcr.io/cloud-devrel-public-resources/java11014" +} + +env_vars: { + key: "JOB_TYPE" + value: "integration" +} +# TODO: remove this after we've migrated all tests and scripts +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "GOOGLE_CLOUD_PROJECT" + value: "gcloud-devel" +} + +env_vars: { + key: "ENABLE_FLAKYBOT" + value: "true" +} + +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "secret_manager/java-it-service-account" +} + +env_vars: { + key: "SECRET_MANAGER_KEYS" + value: "java-it-service-account" +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 310220ab9..d0b3bdc84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,100 @@ # Changelog + +### [0.122.22](https://github.com/googleapis/java-logging-logback/compare/v0.122.21...v0.122.22) (2022-05-05) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.7.6 ([#759](https://github.com/googleapis/java-logging-logback/issues/759)) ([0128793](https://github.com/googleapis/java-logging-logback/commit/01287934b04cf8f487308b34080123c7b4065ef7)) + +### [0.122.21](https://github.com/googleapis/java-logging-logback/compare/v0.122.20...v0.122.21) (2022-04-21) + + +### Bug Fixes + +* Reenable staleness bot ([#738](https://github.com/googleapis/java-logging-logback/issues/738)) ([947a4ae](https://github.com/googleapis/java-logging-logback/commit/947a4aec8ded52e0d7da6cb16c7289c7b060a3d7)) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.7.5 ([#744](https://github.com/googleapis/java-logging-logback/issues/744)) ([e7cfbe2](https://github.com/googleapis/java-logging-logback/commit/e7cfbe236a3a0125f4174fc9e74f1a9f6c260b1d)) + +### [0.122.20](https://github.com/googleapis/java-logging-logback/compare/v0.122.19...v0.122.20) (2022-04-15) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.10.0 ([#739](https://github.com/googleapis/java-logging-logback/issues/739)) ([e603a4b](https://github.com/googleapis/java-logging-logback/commit/e603a4b385d80bd8afb6e31824aaa34484d69e2f)) + +### [0.122.19](https://github.com/googleapis/java-logging-logback/compare/v0.122.18...v0.122.19) (2022-04-01) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.7.4 ([#731](https://github.com/googleapis/java-logging-logback/issues/731)) ([3e48cb0](https://github.com/googleapis/java-logging-logback/commit/3e48cb03a757d2237dd2da251c1d34468adfa4e4)) + +### [0.122.18](https://github.com/googleapis/java-logging-logback/compare/v0.122.17...v0.122.18) (2022-03-30) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.7.3 ([#727](https://github.com/googleapis/java-logging-logback/issues/727)) ([34cb2a7](https://github.com/googleapis/java-logging-logback/commit/34cb2a76799f83ddd66cabec216dcb8746b82613)) + +### [0.122.17](https://github.com/googleapis/java-logging-logback/compare/v0.122.16...v0.122.17) (2022-03-29) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.7.2 ([#722](https://github.com/googleapis/java-logging-logback/issues/722)) ([d0d55ef](https://github.com/googleapis/java-logging-logback/commit/d0d55ef8ccdf39433d6cca4fad22186ff8ada456)) +* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.9.0 ([#723](https://github.com/googleapis/java-logging-logback/issues/723)) ([fd500fe](https://github.com/googleapis/java-logging-logback/commit/fd500fe480cfd05c54a899f14b84cad1e26fc1a0)) + +### [0.122.16](https://github.com/googleapis/java-logging-logback/compare/v0.122.15...v0.122.16) (2022-03-10) + + +### Dependencies + +* update actions/checkout action to v3 ([#705](https://github.com/googleapis/java-logging-logback/issues/705)) ([a7427a0](https://github.com/googleapis/java-logging-logback/commit/a7427a0648847c123d6bea0d752fb892a412468d)) +* update dependency ch.qos.logback:logback-classic to v1.2.11 ([#714](https://github.com/googleapis/java-logging-logback/issues/714)) ([181ac4a](https://github.com/googleapis/java-logging-logback/commit/181ac4abadf852752b95e44fe1ae3bfbed924aad)) +* update dependency com.google.cloud:google-cloud-logging to v3.7.1 ([#713](https://github.com/googleapis/java-logging-logback/issues/713)) ([4d6f04d](https://github.com/googleapis/java-logging-logback/commit/4d6f04dc9644c205965eecdbdf40ad3d022fa076)) + +### [0.122.15](https://github.com/googleapis/java-logging-logback/compare/v0.122.14...v0.122.15) (2022-03-03) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.7.0 ([#698](https://github.com/googleapis/java-logging-logback/issues/698)) ([2a5ddba](https://github.com/googleapis/java-logging-logback/commit/2a5ddbaaa54ca5d8bc26887de3038e7ee8c2d4f8)) +* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.8.0 ([#707](https://github.com/googleapis/java-logging-logback/issues/707)) ([198d41f](https://github.com/googleapis/java-logging-logback/commit/198d41fc905fc532a8ba7de511dfe9c928235c47)) + +### [0.122.14](https://github.com/googleapis/java-logging-logback/compare/v0.122.13...v0.122.14) (2022-02-14) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.6.3 ([#691](https://github.com/googleapis/java-logging-logback/issues/691)) ([e346f21](https://github.com/googleapis/java-logging-logback/commit/e346f2198385d3f86f3770765f55a4bef742fdbf)) + +### [0.122.13](https://github.com/googleapis/java-logging-logback/compare/v0.122.12...v0.122.13) (2022-02-11) + + +### Dependencies + +* update actions/github-script action to v6 ([#686](https://github.com/googleapis/java-logging-logback/issues/686)) ([82a0f26](https://github.com/googleapis/java-logging-logback/commit/82a0f264d054827c9816ddb4400e952d3e95776e)) + +### [0.122.12](https://github.com/googleapis/java-logging-logback/compare/v0.122.11...v0.122.12) (2022-02-09) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.6.2 ([#674](https://github.com/googleapis/java-logging-logback/issues/674)) ([c0db36f](https://github.com/googleapis/java-logging-logback/commit/c0db36f0ae9c4754880229d4ac5e9e52d0e95086)) +* update dependency org.slf4j:slf4j-api to v1.7.36 ([#681](https://github.com/googleapis/java-logging-logback/issues/681)) ([bd4c4da](https://github.com/googleapis/java-logging-logback/commit/bd4c4da1a260f5261a6b3daa522aa9fea0e6deb3)) + +### [0.122.11](https://github.com/googleapis/java-logging-logback/compare/v0.122.10...v0.122.11) (2022-02-03) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-logging to v3.6.1 ([#660](https://github.com/googleapis/java-logging-logback/issues/660)) ([c80212f](https://github.com/googleapis/java-logging-logback/commit/c80212f5131b7df1349d0fbd8212383978952a29)) + ## [0.123.0](https://github.com/googleapis/java-logging-logback/compare/v0.122.9...v0.123.0) (2022-01-18) @@ -11,8 +106,7 @@ ### Bug Fixes -* **java:** run Maven in plain console-friendly mode ([#1301](https://github.com/googleapis/java-logging-logback/issues/1301)) ([#621](https://github.com/googleapis/java-logging-logback/issues/621)) ([e5de531](https://github.com/googleapis/java-logging-logback/commit/e5de531465015ae735e45ee5b6dc52bdd281ee6e)) - +* **java:** run Maven in plain console-friendly mode ([#1301](https://www.github.com/googleapis/java-logging-logback/issues/1301)) ([#621](https://www.github.com/googleapis/java-logging-logback/issues/621)) ([e5de531](https://www.github.com/googleapis/java-logging-logback/commit/e5de531465015ae735e45ee5b6dc52bdd281ee6e)) ### Dependencies @@ -20,6 +114,7 @@ * update dependency org.easymock:easymock to v4 ([#640](https://github.com/googleapis/java-logging-logback/issues/640)) ([c1c5afc](https://github.com/googleapis/java-logging-logback/commit/c1c5afcf7a4501295e253c663fd4ac05c2fcd339)) * update dependency org.slf4j:slf4j-api to v1.7.33 ([#652](https://github.com/googleapis/java-logging-logback/issues/652)) ([37ca717](https://github.com/googleapis/java-logging-logback/commit/37ca7179c455451fdd34baae0463223d67a36b5b)) + ### [0.122.9](https://www.github.com/googleapis/java-logging-logback/compare/v0.122.8...v0.122.9) (2022-01-10) diff --git a/README.md b/README.md index 893510da7..49d25737e 100644 --- a/README.md +++ b/README.md @@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file: com.google.cloud google-cloud-logging-logback - 0.122.9-alpha + 0.123.11-alpha ``` If you are using Gradle without BOM, add this to your dependencies ```Groovy -implementation 'com.google.cloud:google-cloud-logging-logback:0.122.9-alpha' +implementation 'com.google.cloud:google-cloud-logging-logback:0.123.11-alpha' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.122.9-alpha" +libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.123.11-alpha" ``` ## Authentication diff --git a/owlbot.py b/owlbot.py index 146f14389..60ceb691c 100644 --- a/owlbot.py +++ b/owlbot.py @@ -21,4 +21,5 @@ '.github/CODEOWNERS', '.github/blunderbuss.yml', 'CONTRIBUTING.md', -]) \ No newline at end of file + '.github/auto-label.yaml', +]) diff --git a/pom.xml b/pom.xml index f8b4685cf..546d5e27d 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ 4.0.0 google-cloud-logging-logback - 0.123.0-alpha + 0.123.12-alpha jar Google Cloud Logging Logback Appender https://github.com/googleapis/java-logging-logback @@ -14,18 +14,18 @@ - 1.2.10 + 1.2.11 4.3 1.1.3 - 3.6.0 - 1.7.33 + 3.7.6 + 1.7.36 1.10.1 com.google.cloud google-cloud-shared-config - 1.2.5 + 1.4.0 @@ -65,7 +65,7 @@ com.google.cloud google-cloud-shared-dependencies - 2.6.0 + 2.10.0 pom import @@ -141,7 +141,7 @@ org.apache.maven.plugins maven-project-info-reports-plugin - 3.1.2 + 3.3.0 @@ -168,7 +168,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.3.1 + 3.4.0 html diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml index ea2c701f2..b5b6eee04 100644 --- a/samples/install-without-bom/pom.xml +++ b/samples/install-without-bom/pom.xml @@ -29,7 +29,7 @@ com.google.cloud google-cloud-logging-logback - 0.122.9-alpha + 0.123.11-alpha diff --git a/samples/pom.xml b/samples/pom.xml index 54fe07a32..03df7bbe0 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -46,7 +46,7 @@ org.sonatype.plugins nexus-staging-maven-plugin - 1.6.8 + 1.6.13 true diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index 97a219196..e45639233 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -28,7 +28,7 @@ com.google.cloud google-cloud-logging-logback - 0.123.0-alpha + 0.123.12-alpha diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index c90da86c9..2081f9ad8 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -30,7 +30,7 @@ com.google.cloud libraries-bom - 24.2.0 + 25.2.0 pom import diff --git a/versions.txt b/versions.txt index 2f47cd598..a10ff5b40 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-logging-logback:0.123.0-alpha:0.123.0-alpha +google-cloud-logging-logback:0.123.12-alpha:0.123.12-alpha