From 0ed537725ec2cc6b1a1321747721227f730671e2 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:36:53 -0400 Subject: [PATCH 01/40] chore(main): release 1.7.8-SNAPSHOT (#809) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .cloudbuild/cloudbuild-test-a.yaml | 2 +- .cloudbuild/cloudbuild-test-b.yaml | 2 +- .cloudbuild/cloudbuild.yaml | 2 +- java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- versions.txt | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.cloudbuild/cloudbuild-test-a.yaml b/.cloudbuild/cloudbuild-test-a.yaml index bd91a2ad..272418ad 100644 --- a/.cloudbuild/cloudbuild-test-a.yaml +++ b/.cloudbuild/cloudbuild-test-a.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.7.7' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.7.8-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build diff --git a/.cloudbuild/cloudbuild-test-b.yaml b/.cloudbuild/cloudbuild-test-b.yaml index a18401c7..bfaf4f2c 100644 --- a/.cloudbuild/cloudbuild-test-b.yaml +++ b/.cloudbuild/cloudbuild-test-b.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.7.7' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.7.8-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM B build diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index cbf34c06..fe5a5cfa 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.7.7' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.7.8-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build - name: gcr.io/cloud-builders/docker diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 0bfc989b..7f2feb27 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-shared-config pom - 1.7.7 + 1.7.8-SNAPSHOT Google Cloud Shared Config https://github.com/googleapis/java-shared-config @@ -16,7 +16,7 @@ com.google.cloud native-image-shared-config - 1.7.7 + 1.7.8-SNAPSHOT ../native-image-shared-config diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index f424532c..71d61a0b 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud native-image-shared-config pom - 1.7.7 + 1.7.8-SNAPSHOT Native Image Shared Config https://github.com/googleapis/java-shared-config diff --git a/versions.txt b/versions.txt index f8dc4eb7..2ceb1a83 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-shared-config:1.7.7:1.7.7 +google-cloud-shared-config:1.7.7:1.7.8-SNAPSHOT From a30f02d78d39ee8a2a2be0fd8401a647871d10ca Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:51:30 -0400 Subject: [PATCH 02/40] feat: add `libraries_bom_version` in metadata (#1956) (#805) * feat: add libraries_bom_version * add unit tests * remove isfile * add tempdir * restore * add current dir * restore template * remove unit test * restore templates Source-Link: https://github.com/googleapis/synthtool/commit/63cc541da2c45fcfca2136c43e638da1fbae174d Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:dc11e2119c854b57b7f7ed9962391decf002454700020a52b5d0d46c40b80a7e Co-authored-by: Owl Bot Co-authored-by: Lawrence Qiu --- .github/.OwlBot.lock.yaml | 6 ++--- .github/workflows/renovate_config_check.yaml | 25 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/renovate_config_check.yaml diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index d304652e..291f8e29 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Google LLC +# Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -13,5 +13,5 @@ # limitations under the License. docker: image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest - digest: sha256:6f431774e11cc46619cf093fd1481193c4024031073697fa18f0099b943aab88 -# created: 2023-12-01T19:50:20.444857406Z + digest: sha256:dc11e2119c854b57b7f7ed9962391decf002454700020a52b5d0d46c40b80a7e +# created: 2024-04-15T22:37:28.944513098Z diff --git a/.github/workflows/renovate_config_check.yaml b/.github/workflows/renovate_config_check.yaml new file mode 100644 index 00000000..87d8eb2b --- /dev/null +++ b/.github/workflows/renovate_config_check.yaml @@ -0,0 +1,25 @@ +name: Renovate Bot Config Validation + +on: + pull_request: + paths: + - 'renovate.json' + +jobs: + renovate_bot_config_validation: + runs-on: ubuntu-22.04 + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Install Renovate and Config Validator + run: | + npm install -g npm@latest + npm install --global renovate + renovate-config-validator From a3cbf7d84c805045618be9b00ade7a4b6f6fbaaf Mon Sep 17 00:00:00 2001 From: Min Zhu Date: Thu, 18 Apr 2024 15:35:55 -0400 Subject: [PATCH 03/40] chore: pin autovalue temporarily and delete guava rule. (#800) disable renovate bot from updating autovalue temporarily. current autovalue version is 1.10.4 ([here](https://github.com/googleapis/java-shared-config/blob/34164052444ed9bd40a0789ed020b45cf4da17fb/java-shared-config/pom.xml#L29)) This is for lts 7, and I will manually remove this disable later. remove renovate config for guava as there is no guava version setup in this repo, instead, it is updated in sdk-platform-java [here](https://github.com/googleapis/sdk-platform-java/blob/56775a61a054fb67a15023481cd3d0a0cf2b0496/gapic-generator-java-pom-parent/pom.xml#L33). --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 6eb596ac..2a13846c 100644 --- a/renovate.json +++ b/renovate.json @@ -15,9 +15,9 @@ "packageRules": [ { "packagePatterns": [ - "^com.google.guava:" + "^com.google.auto.value:" ], - "versionScheme": "docker" + "enabled": false }, { "packagePatterns": [ From efc5585ec817e327e0381412c2b2436e3ef0510d Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 17:30:19 +0200 Subject: [PATCH 04/40] deps: update dependency com.puppycrawl.tools:checkstyle to v10.16.0 (#816) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.puppycrawl.tools:checkstyle](https://checkstyle.org/) ([source](https://togithub.com/checkstyle/checkstyle)) | `10.15.0` -> `10.16.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.puppycrawl.tools:checkstyle/10.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.puppycrawl.tools:checkstyle/10.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.puppycrawl.tools:checkstyle/10.15.0/10.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.puppycrawl.tools:checkstyle/10.15.0/10.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 7f2feb27..fc099a42 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -521,7 +521,7 @@ com.puppycrawl.tools checkstyle - 10.15.0 + 10.16.0 From 92520e9f9d5f3702b384429584fb6e31a2f1104d Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 17:30:23 +0200 Subject: [PATCH 05/40] build(deps): update dependency org.apache.maven.plugins:maven-jar-plugin to v3.4.1 (#813) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.apache.maven.plugins:maven-jar-plugin](https://maven.apache.org/plugins/) | `3.4.0` -> `3.4.1` | [![age](https://developer.mend.io/api/mc/badges/age/maven/org.apache.maven.plugins:maven-jar-plugin/3.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.apache.maven.plugins:maven-jar-plugin/3.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.apache.maven.plugins:maven-jar-plugin/3.4.0/3.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.apache.maven.plugins:maven-jar-plugin/3.4.0/3.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index fc099a42..41b6bdb8 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -94,7 +94,7 @@ org.apache.maven.plugins maven-jar-plugin - 3.4.0 + 3.4.1 true From fdb1044693c2175782f02a670b550e96f1c15d0b Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 17:32:18 +0200 Subject: [PATCH 06/40] deps: update actions/setup-node action to v4 (#811) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://togithub.com/actions/setup-node) | action | major | `v3` -> `v4` | --- ### Release Notes
actions/setup-node (actions/setup-node) ### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4) [Compare Source](https://togithub.com/actions/setup-node/compare/v3...v4)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). From 32f3debfbec3ab47c2141cc93a1e3f9a905c86fb Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 17:32:32 +0200 Subject: [PATCH 07/40] build(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.4 (#812) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.apache.maven.plugins:maven-gpg-plugin](https://maven.apache.org/plugins/) | `3.2.3` -> `3.2.4` | [![age](https://developer.mend.io/api/mc/badges/age/maven/org.apache.maven.plugins:maven-gpg-plugin/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.apache.maven.plugins:maven-gpg-plugin/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.apache.maven.plugins:maven-gpg-plugin/3.2.3/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.apache.maven.plugins:maven-gpg-plugin/3.2.3/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). --- native-image-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index 71d61a0b..de066603 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -138,7 +138,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.2.3 + 3.2.4 sign-artifacts From 6f536d323dcfe2b63e0b72997b3b1e388955cb60 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 22:04:26 +0200 Subject: [PATCH 08/40] build(deps): update dependency org.apache.maven.plugins:maven-deploy-plugin to v3.1.2 (#817) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.apache.maven.plugins:maven-deploy-plugin](https://maven.apache.org/plugins/) | `3.1.1` -> `3.1.2` | [![age](https://developer.mend.io/api/mc/badges/age/maven/org.apache.maven.plugins:maven-deploy-plugin/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.apache.maven.plugins:maven-deploy-plugin/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.apache.maven.plugins:maven-deploy-plugin/3.1.1/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.apache.maven.plugins:maven-deploy-plugin/3.1.1/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 524af717..22322fc7 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.apache.maven.plugins maven-deploy-plugin - 3.1.1 + 3.1.2 true From 6222364b4795661f282593b135d415827700d635 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 22:06:23 +0200 Subject: [PATCH 09/40] deps: update actions/setup-node action to v4 (#818) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://togithub.com/actions/setup-node) | action | major | `v3` -> `v4` | --- ### Release Notes
actions/setup-node (actions/setup-node) ### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4) [Compare Source](https://togithub.com/actions/setup-node/compare/v3...v4)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). From ffb2a7a3ff131a8d5af869098fdd69d0cdd87c4d Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Apr 2024 22:12:18 +0200 Subject: [PATCH 10/40] deps: update actions/setup-node action to v4 (#819) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://togithub.com/actions/setup-node) | action | major | `v3` -> `v4` | --- ### Release Notes
actions/setup-node (actions/setup-node) ### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4) [Compare Source](https://togithub.com/actions/setup-node/compare/v3...v4)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/googleapis/java-shared-config). From 465bb399aef9aa8383f11c23f10a97df49c1d057 Mon Sep 17 00:00:00 2001 From: Mridula <66699525+mpeddada1@users.noreply.github.com> Date: Tue, 14 May 2024 16:28:07 -0400 Subject: [PATCH 11/40] feat: use maven properties to manage dependency versions for native profile (#824) --- native-image-shared-config/pom.xml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index de066603..a033efab 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -60,6 +60,9 @@ 3.2.5 22.3.5 + 0.10.1 + 5.10.2 + 1.3.0 @@ -166,12 +169,12 @@ org.opentest4j opentest4j - 1.3.0 + ${opentest4j.version} org.junit.vintage junit-vintage-engine - 5.10.2 + ${junit-vintage-engine.version} test @@ -185,7 +188,7 @@ org.junit.vintage junit-vintage-engine - 5.10.2 + ${junit-vintage-engine.version} @@ -201,7 +204,7 @@ org.graalvm.buildtools native-maven-plugin - 0.10.1 + ${native-maven-plugin.version} true From 3961bbf6cb0ea50bea71272b018e60e0971e720b Mon Sep 17 00:00:00 2001 From: Mridula <66699525+mpeddada1@users.noreply.github.com> Date: Thu, 23 May 2024 21:32:39 -0400 Subject: [PATCH 12/40] chore: tag graalvm test images with infrastructure-public-image- suffix (#829) * chore: tag graalvm test images with infrastructure-public-image- suffix --- .cloudbuild/cloudbuild.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index fe5a5cfa..75ce84b6 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -18,7 +18,10 @@ substitutions: steps: # GraalVM A build - name: gcr.io/cloud-builders/docker - args: ["build", "-t", "gcr.io/cloud-devrel-public-resources/graalvm_a:${_JAVA_SHARED_CONFIG_VERSION}", "--file", "graalvm-a.Dockerfile", "."] + args: ["build", + "-t", "gcr.io/cloud-devrel-public-resources/graalvm_a:${_JAVA_SHARED_CONFIG_VERSION}", + "-t", "gcr.io/cloud-devrel-public-resources/graalvm_a:infrastructure-public-image-$SHORT_SHA", + "--file", "graalvm-a.Dockerfile", "."] dir: .cloudbuild id: graalvm-a-build waitFor: ["-"] @@ -29,7 +32,9 @@ steps: # GraalVM B build - name: gcr.io/cloud-builders/docker - args: [ "build", "-t", "gcr.io/cloud-devrel-public-resources/graalvm_b:${_JAVA_SHARED_CONFIG_VERSION}", "--file", "graalvm-b.Dockerfile", "." ] + args: [ "build", "-t", "gcr.io/cloud-devrel-public-resources/graalvm_b:${_JAVA_SHARED_CONFIG_VERSION}", + "-t", "gcr.io/cloud-devrel-public-resources/graalvm_b:infrastructure-public-image-$SHORT_SHA", + "--file", "graalvm-b.Dockerfile", "." ] dir: .cloudbuild id: graalvm-b-build waitFor: [ "-" ] @@ -42,3 +47,5 @@ steps: images: - gcr.io/cloud-devrel-public-resources/graalvm_a:${_JAVA_SHARED_CONFIG_VERSION} - gcr.io/cloud-devrel-public-resources/graalvm_b:${_JAVA_SHARED_CONFIG_VERSION} + - gcr.io/cloud-devrel-public-resources/graalvm_a:infrastructure-public-image-$SHORT_SHA + - gcr.io/cloud-devrel-public-resources/graalvm_b:infrastructure-public-image-$SHORT_SHA From fd3fef7c9c9f8464d1fba3d2992b5b993d056d81 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 28 May 2024 21:06:15 +0200 Subject: [PATCH 13/40] build(deps): update dependency org.codehaus.mojo:build-helper-maven-plugin to v3.6.0 (#827) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 41b6bdb8..c2b7ed4c 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -160,7 +160,7 @@ org.codehaus.mojo build-helper-maven-plugin - 3.5.0 + 3.6.0 org.codehaus.mojo From 0b8f31a40c8c5b68a789b5f08b42a83ef76edc88 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 28 May 2024 21:06:42 +0200 Subject: [PATCH 14/40] build(deps): update dependency org.codehaus.mojo:exec-maven-plugin to v3.3.0 (#828) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index c2b7ed4c..015e918e 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -61,7 +61,7 @@ org.codehaus.mojo exec-maven-plugin - 3.2.0 + 3.3.0 org.sonatype.plugins nexus-staging-maven-plugin - 1.6.13 + 1.7.0 true sonatype-nexus-staging From b0c9e75e778950401df28adb10998a676d6a24ff Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 29 May 2024 00:26:35 +0200 Subject: [PATCH 18/40] deps: update dependency com.puppycrawl.tools:checkstyle to v10.17.0 (#831) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 015e918e..2808476d 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -521,7 +521,7 @@ com.puppycrawl.tools checkstyle - 10.16.0 + 10.17.0 From 07c7cece6ddc793e01b108e96416750fd00c09da Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 11:32:45 -0400 Subject: [PATCH 19/40] feat: [java] allow passing libraries_bom_version from env (#1967) (#825) * feat: [java] allow passing libraries_bom_version from env * reformat Source-Link: https://github.com/googleapis/synthtool/commit/e36d2f164ca698f0264fb6f79ddc4b0fa024a940 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:31aa2ef27b071c2e7844b0eb1d5a24254daff06615b1b138b994dd6345c0b0ea Co-authored-by: Owl Bot Co-authored-by: Diego Marquez --- .github/.OwlBot.lock.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index 5db36a5f..18c720b8 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -13,5 +13,5 @@ # limitations under the License. docker: image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest - digest: sha256:68ba5f5164a4b55529d358bb262feaa000536a0c62980727dd05a91bbb47ea5e -# created: 2024-05-09T16:31:37.168667071Z + digest: sha256:31aa2ef27b071c2e7844b0eb1d5a24254daff06615b1b138b994dd6345c0b0ea +# created: 2024-05-17T15:15:57.6714113Z \ No newline at end of file From 010cc74540ff3c49f6ff79331f4c6dd1d794151f Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 13:00:58 -0400 Subject: [PATCH 20/40] chore(main): release 1.8.0 (#810) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .cloudbuild/cloudbuild-test-a.yaml | 2 +- .cloudbuild/cloudbuild-test-b.yaml | 2 +- .cloudbuild/cloudbuild.yaml | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- versions.txt | 2 +- 7 files changed, 26 insertions(+), 7 deletions(-) diff --git a/.cloudbuild/cloudbuild-test-a.yaml b/.cloudbuild/cloudbuild-test-a.yaml index 272418ad..46732385 100644 --- a/.cloudbuild/cloudbuild-test-a.yaml +++ b/.cloudbuild/cloudbuild-test-a.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.7.8-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.0' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build diff --git a/.cloudbuild/cloudbuild-test-b.yaml b/.cloudbuild/cloudbuild-test-b.yaml index bfaf4f2c..03c51e6a 100644 --- a/.cloudbuild/cloudbuild-test-b.yaml +++ b/.cloudbuild/cloudbuild-test-b.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.7.8-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.0' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM B build diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index 75ce84b6..a663a88c 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.7.8-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.0' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build - name: gcr.io/cloud-builders/docker diff --git a/CHANGELOG.md b/CHANGELOG.md index 04a6d886..880f2621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.8.0](https://github.com/googleapis/java-shared-config/compare/v1.7.7...v1.8.0) (2024-05-29) + + +### Features + +* [java] allow passing libraries_bom_version from env ([#1967](https://github.com/googleapis/java-shared-config/issues/1967)) ([#825](https://github.com/googleapis/java-shared-config/issues/825)) ([07c7cec](https://github.com/googleapis/java-shared-config/commit/07c7cece6ddc793e01b108e96416750fd00c09da)) +* Add `libraries_bom_version` in metadata ([#1956](https://github.com/googleapis/java-shared-config/issues/1956)) ([#805](https://github.com/googleapis/java-shared-config/issues/805)) ([a30f02d](https://github.com/googleapis/java-shared-config/commit/a30f02d78d39ee8a2a2be0fd8401a647871d10ca)) +* Use maven properties to manage dependency versions for native profile ([#824](https://github.com/googleapis/java-shared-config/issues/824)) ([465bb39](https://github.com/googleapis/java-shared-config/commit/465bb399aef9aa8383f11c23f10a97df49c1d057)) + + +### Dependencies + +* Update actions/setup-node action to v4 ([#811](https://github.com/googleapis/java-shared-config/issues/811)) ([fdb1044](https://github.com/googleapis/java-shared-config/commit/fdb1044693c2175782f02a670b550e96f1c15d0b)) +* Update actions/setup-node action to v4 ([#818](https://github.com/googleapis/java-shared-config/issues/818)) ([6222364](https://github.com/googleapis/java-shared-config/commit/6222364b4795661f282593b135d415827700d635)) +* Update actions/setup-node action to v4 ([#819](https://github.com/googleapis/java-shared-config/issues/819)) ([ffb2a7a](https://github.com/googleapis/java-shared-config/commit/ffb2a7a3ff131a8d5af869098fdd69d0cdd87c4d)) +* Update dependency com.puppycrawl.tools:checkstyle to v10.16.0 ([#816](https://github.com/googleapis/java-shared-config/issues/816)) ([efc5585](https://github.com/googleapis/java-shared-config/commit/efc5585ec817e327e0381412c2b2436e3ef0510d)) +* Update dependency com.puppycrawl.tools:checkstyle to v10.17.0 ([#831](https://github.com/googleapis/java-shared-config/issues/831)) ([b0c9e75](https://github.com/googleapis/java-shared-config/commit/b0c9e75e778950401df28adb10998a676d6a24ff)) +* Update dependency org.graalvm.buildtools:native-maven-plugin to v0.10.2 ([#826](https://github.com/googleapis/java-shared-config/issues/826)) ([881e72f](https://github.com/googleapis/java-shared-config/commit/881e72f7e5dc1304929b89e9ec9d1ba9d4d0bead)) + ## [1.7.7](https://github.com/googleapis/java-shared-config/compare/v1.7.6...v1.7.7) (2024-04-17) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 2808476d..ce4c67cd 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-shared-config pom - 1.7.8-SNAPSHOT + 1.8.0 Google Cloud Shared Config https://github.com/googleapis/java-shared-config @@ -16,7 +16,7 @@ com.google.cloud native-image-shared-config - 1.7.8-SNAPSHOT + 1.8.0 ../native-image-shared-config diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index c33d5fa9..73238372 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud native-image-shared-config pom - 1.7.8-SNAPSHOT + 1.8.0 Native Image Shared Config https://github.com/googleapis/java-shared-config diff --git a/versions.txt b/versions.txt index 2ceb1a83..54418122 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-shared-config:1.7.7:1.7.8-SNAPSHOT +google-cloud-shared-config:1.8.0:1.8.0 From 294b91d62981b5f4cb2219bdcde3c5d78143459f Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 11:22:46 -0400 Subject: [PATCH 21/40] chore(main): release 1.8.1-SNAPSHOT (#832) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .cloudbuild/cloudbuild-test-a.yaml | 2 +- .cloudbuild/cloudbuild-test-b.yaml | 2 +- .cloudbuild/cloudbuild.yaml | 2 +- java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- versions.txt | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.cloudbuild/cloudbuild-test-a.yaml b/.cloudbuild/cloudbuild-test-a.yaml index 46732385..f0b32426 100644 --- a/.cloudbuild/cloudbuild-test-a.yaml +++ b/.cloudbuild/cloudbuild-test-a.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.0' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.1-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build diff --git a/.cloudbuild/cloudbuild-test-b.yaml b/.cloudbuild/cloudbuild-test-b.yaml index 03c51e6a..4ed6569b 100644 --- a/.cloudbuild/cloudbuild-test-b.yaml +++ b/.cloudbuild/cloudbuild-test-b.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.0' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.1-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM B build diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index a663a88c..497afcf3 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.0' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.1-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build - name: gcr.io/cloud-builders/docker diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index ce4c67cd..035ce05f 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-shared-config pom - 1.8.0 + 1.8.1-SNAPSHOT Google Cloud Shared Config https://github.com/googleapis/java-shared-config @@ -16,7 +16,7 @@ com.google.cloud native-image-shared-config - 1.8.0 + 1.8.1-SNAPSHOT ../native-image-shared-config diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index 73238372..d56bac88 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud native-image-shared-config pom - 1.8.0 + 1.8.1-SNAPSHOT Native Image Shared Config https://github.com/googleapis/java-shared-config diff --git a/versions.txt b/versions.txt index 54418122..0d9107c3 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-shared-config:1.8.0:1.8.0 +google-cloud-shared-config:1.8.0:1.8.1-SNAPSHOT From 03a0dfb740d3af0576bc6d22946726ac0ec9e041 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 17:23:02 +0200 Subject: [PATCH 22/40] build(deps): update dependency org.apache.maven.plugins:maven-jar-plugin to v3.4.2 (#844) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 035ce05f..05aed576 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -94,7 +94,7 @@ org.apache.maven.plugins maven-jar-plugin - 3.4.1 + 3.4.2 true From ac889bedf09066f54775989999ef72509feb818b Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 17:23:28 +0200 Subject: [PATCH 23/40] build(deps): update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.6.0 (#843) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 05aed576..5f73abe8 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -388,7 +388,7 @@ org.apache.maven.plugins maven-project-info-reports-plugin - 3.5.0 + 3.6.0 From 8a1207c0d718164caa36cabd2fa94f1a5a00c83e Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 17:23:49 +0200 Subject: [PATCH 24/40] build(deps): update surefire.version to v3.3.0 (#842) --- native-image-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index d56bac88..533733eb 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -58,7 +58,7 @@ - 3.2.5 + 3.3.0 22.3.5 0.10.2 5.10.2 From 5235cd3ae3080da2cdf875827c03690b4ccef6d0 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 11:24:10 -0400 Subject: [PATCH 25/40] ci: [java] automatic kokoro label in and /gcbrun comment (#1965) (#841) Source-Link: https://github.com/googleapis/synthtool/commit/bd2bae89f70bad380da47fab9ec25985dfb87d67 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:72f0d373307d128b2cb720c5cb4d90b31f0e86529dd138c632710ae0c69efae3 Co-authored-by: Owl Bot --- .github/.OwlBot.lock.yaml | 4 ++-- .github/trusted-contribution.yml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index 18c720b8..359fe71c 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -13,5 +13,5 @@ # limitations under the License. docker: image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest - digest: sha256:31aa2ef27b071c2e7844b0eb1d5a24254daff06615b1b138b994dd6345c0b0ea -# created: 2024-05-17T15:15:57.6714113Z \ No newline at end of file + digest: sha256:72f0d373307d128b2cb720c5cb4d90b31f0e86529dd138c632710ae0c69efae3 +# created: 2024-06-05T18:32:21.724930324Z diff --git a/.github/trusted-contribution.yml b/.github/trusted-contribution.yml index a0ba1f7d..88d3ac9b 100644 --- a/.github/trusted-contribution.yml +++ b/.github/trusted-contribution.yml @@ -1,3 +1,9 @@ trustedContributors: - renovate-bot - gcf-owl-bot[bot] + +annotations: +- type: comment + text: "/gcbrun" +- type: label + text: "kokoro:force-run" From 1d5fdaf5a705ee25c5db191868d59ee7dde47fb3 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 17:24:35 +0200 Subject: [PATCH 26/40] build(deps): update dependency org.apache.maven.plugins:maven-jxr-plugin to v3.4.0 (#839) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 5f73abe8..c813e2d6 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -456,7 +456,7 @@ org.apache.maven.plugins maven-jxr-plugin - 3.3.2 + 3.4.0 true From fc5b998e458ababdf3dd293ccdb8df42fa624c73 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 17:24:55 +0200 Subject: [PATCH 27/40] build(deps): update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3.5.0 (#835) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index c813e2d6..848fd901 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -49,7 +49,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.4.1 + 3.5.0 org.codehaus.mojo From 8aa189a2a2c1858ba4a5f2c53a6f8a4b73c73b8b Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 17:25:16 +0200 Subject: [PATCH 28/40] build(deps): update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.4.0 (#840) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 848fd901..10e16ae6 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -516,7 +516,7 @@ org.apache.maven.plugins maven-checkstyle-plugin - 3.3.1 + 3.4.0 com.puppycrawl.tools From d787d658f6182f7027580189f1ed8a199dc2fdc3 Mon Sep 17 00:00:00 2001 From: Burke Davison <40617934+burkedavison@users.noreply.github.com> Date: Mon, 24 Jun 2024 15:34:05 +0000 Subject: [PATCH 29/40] ci: make graalvm docker image checks required (#823) * ci: make graalvm docker image checks required * ci: provide full check name to required check list --- .github/sync-repo-settings.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/sync-repo-settings.yaml b/.github/sync-repo-settings.yaml index 494a0510..6d24843d 100644 --- a/.github/sync-repo-settings.yaml +++ b/.github/sync-repo-settings.yaml @@ -49,6 +49,8 @@ branchProtectionRules: - "build (11, java-bigtable, javadoc)" - "javadoc-with-doclet (java-bigtable)" - "cla/google" + - "graalvm-presubmit-shared-config-a (cloud-devrel-kokoro-resources)" + - "graalvm-presubmit-shared-config-b (cloud-devrel-kokoro-resources)" - pattern: java7 # Can admins overwrite branch protection. # Defaults to `true` From ebece6b7df6208527450c12368fcc0c6ce07ac67 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 24 Jun 2024 18:14:47 +0200 Subject: [PATCH 30/40] deps: update actions/checkout digest to 692973e (#814) --- .github/workflows/downstream-dependencies.yaml | 4 ++-- .github/workflows/downstream-maven-plugins.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/downstream-dependencies.yaml b/.github/workflows/downstream-dependencies.yaml index 631e7c3c..5c9c372a 100644 --- a/.github/workflows/downstream-dependencies.yaml +++ b/.github/workflows/downstream-dependencies.yaml @@ -18,7 +18,7 @@ jobs: - java-storage - java-pubsub steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - uses: actions/setup-java@v4 with: distribution: zulu @@ -31,7 +31,7 @@ jobs: flatten-plugin-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - uses: actions/setup-java@v4 with: distribution: zulu diff --git a/.github/workflows/downstream-maven-plugins.yaml b/.github/workflows/downstream-maven-plugins.yaml index 3668d5cd..ac9a5afa 100644 --- a/.github/workflows/downstream-maven-plugins.yaml +++ b/.github/workflows/downstream-maven-plugins.yaml @@ -25,7 +25,7 @@ jobs: - javadoc # maven-javadoc-plugin - javadoc-with-doclet # test javadoc generation with doclet steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - uses: actions/setup-java@v4 with: distribution: zulu @@ -54,7 +54,7 @@ jobs: - java-datastore - java-bigquerystorage steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - uses: actions/setup-java@v4 with: distribution: temurin From 993aa11c21175bbedf30e2d0e9e075737c505fc7 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 12:52:53 -0400 Subject: [PATCH 31/40] chore(main): release 1.8.1 (#846) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .cloudbuild/cloudbuild-test-a.yaml | 2 +- .cloudbuild/cloudbuild-test-b.yaml | 2 +- .cloudbuild/cloudbuild.yaml | 2 +- CHANGELOG.md | 7 +++++++ java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- versions.txt | 2 +- 7 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.cloudbuild/cloudbuild-test-a.yaml b/.cloudbuild/cloudbuild-test-a.yaml index f0b32426..57681050 100644 --- a/.cloudbuild/cloudbuild-test-a.yaml +++ b/.cloudbuild/cloudbuild-test-a.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.1-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.1' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build diff --git a/.cloudbuild/cloudbuild-test-b.yaml b/.cloudbuild/cloudbuild-test-b.yaml index 4ed6569b..94d7819a 100644 --- a/.cloudbuild/cloudbuild-test-b.yaml +++ b/.cloudbuild/cloudbuild-test-b.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.1-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.1' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM B build diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index 497afcf3..ae302805 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.1-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.1' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build - name: gcr.io/cloud-builders/docker diff --git a/CHANGELOG.md b/CHANGELOG.md index 880f2621..122a352c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.8.1](https://github.com/googleapis/java-shared-config/compare/v1.8.0...v1.8.1) (2024-06-24) + + +### Dependencies + +* Update actions/checkout digest to 692973e ([#814](https://github.com/googleapis/java-shared-config/issues/814)) ([ebece6b](https://github.com/googleapis/java-shared-config/commit/ebece6b7df6208527450c12368fcc0c6ce07ac67)) + ## [1.8.0](https://github.com/googleapis/java-shared-config/compare/v1.7.7...v1.8.0) (2024-05-29) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 10e16ae6..8a1b22f5 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-shared-config pom - 1.8.1-SNAPSHOT + 1.8.1 Google Cloud Shared Config https://github.com/googleapis/java-shared-config @@ -16,7 +16,7 @@ com.google.cloud native-image-shared-config - 1.8.1-SNAPSHOT + 1.8.1 ../native-image-shared-config diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index 533733eb..40ec3da9 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud native-image-shared-config pom - 1.8.1-SNAPSHOT + 1.8.1 Native Image Shared Config https://github.com/googleapis/java-shared-config diff --git a/versions.txt b/versions.txt index 0d9107c3..59b0becf 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-shared-config:1.8.0:1.8.1-SNAPSHOT +google-cloud-shared-config:1.8.1:1.8.1 From 658ebed528d2fedca69356979b3201089176da10 Mon Sep 17 00:00:00 2001 From: Burke Davison <40617934+burkedavison@users.noreply.github.com> Date: Tue, 2 Jul 2024 18:12:21 +0000 Subject: [PATCH 32/40] feat: add org.graalvm.sdk:nativeimage dependency (#852) --- native-image-shared-config/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index 40ec3da9..f91d7727 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -60,6 +60,7 @@ 3.3.0 22.3.5 + 24.0.1 0.10.2 5.10.2 1.3.0 @@ -72,6 +73,11 @@ graal-sdk ${graal-sdk.version} + + org.graalvm.sdk + nativeimage + ${graal-sdk-nativeimage.version} + From 0951ea0359277a7b3f874570b28502d299fc5382 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 8 Jul 2024 21:47:23 +0200 Subject: [PATCH 33/40] build(deps): update dependency org.codehaus.mojo:animal-sniffer-maven-plugin to v1.24 (#853) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 8a1b22f5..6531a7e6 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -363,7 +363,7 @@ org.codehaus.mojo animal-sniffer-maven-plugin - 1.23 + 1.24 java8 From 43e0d7dc9f103de1846c117454a7fba3edbee06a Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 8 Jul 2024 21:47:57 +0200 Subject: [PATCH 34/40] deps: update dependency org.junit.vintage:junit-vintage-engine to v5.10.3 (#850) --- native-image-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index f91d7727..88c17b8d 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -62,7 +62,7 @@ 22.3.5 24.0.1 0.10.2 - 5.10.2 + 5.10.3 1.3.0 From 69a47fedba2e8ea7281e80ed9e5487bc1d9b64cb Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 8 Jul 2024 21:48:33 +0200 Subject: [PATCH 35/40] build(deps): update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.6.1 (#849) --- java-shared-config/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 6531a7e6..6bea7bb1 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -388,7 +388,7 @@ org.apache.maven.plugins maven-project-info-reports-plugin - 3.6.0 + 3.6.1 From 2431f357541e78ff1fac72b96cb2ca24da2bb0a2 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 8 Jul 2024 22:19:59 +0200 Subject: [PATCH 36/40] build(deps): update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.7.0 (#838) --- java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 6bea7bb1..4fbeb965 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -415,7 +415,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.6.3 + 3.7.0 html @@ -581,7 +581,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.6.3 + 3.7.0 com.microsoft.doclet.DocFxDoclet false diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index 88c17b8d..707fdc2a 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -131,7 +131,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.6.3 + 3.7.0 attach-javadocs From 3cc88648d2c0ad2f5591d60f034759a535ea9a65 Mon Sep 17 00:00:00 2001 From: Mridula <66699525+mpeddada1@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:09:56 -0400 Subject: [PATCH 37/40] chore: update graalvm jdk 11 image to Graalvm for JDK 17 community image (#854) * chore: update graal-11 image to Graalvm for JDK 17 community image. --- .cloudbuild/graalvm-a.Dockerfile | 3 +-- .cloudbuild/graalvm-a.yaml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.cloudbuild/graalvm-a.Dockerfile b/.cloudbuild/graalvm-a.Dockerfile index 41505aa6..af96946f 100644 --- a/.cloudbuild/graalvm-a.Dockerfile +++ b/.cloudbuild/graalvm-a.Dockerfile @@ -12,8 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ghcr.io/graalvm/graalvm-ce:ol7-java11-22.3.3-b1 - +FROM ghcr.io/graalvm/graalvm-community:17.0.9-ol7 RUN gu install native-image && \ yum update -y && \ yum install -y wget unzip git && \ diff --git a/.cloudbuild/graalvm-a.yaml b/.cloudbuild/graalvm-a.yaml index 9416153e..06db3dcf 100644 --- a/.cloudbuild/graalvm-a.yaml +++ b/.cloudbuild/graalvm-a.yaml @@ -17,7 +17,7 @@ commandTests: - name: "version" command: ["java", "-version"] # java -version outputs to stderr... - expectedError: ["openjdk version \"11.0.20\"", "GraalVM CE 22.3.3"] + expectedError: ["openjdk version \"17.0.9\"", "GraalVM CE 17.0.9"] - name: "maven" command: ["mvn", "-version"] expectedOutput: ["Apache Maven 3.9.4"] From d19cbfeaadebcfe1e385a4289e2dd7c3ef7d4cac Mon Sep 17 00:00:00 2001 From: Mike Eltsufin Date: Mon, 8 Jul 2024 20:17:14 -0400 Subject: [PATCH 38/40] chore: remove invalid CODOWNERS file (#855) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: remove invalid CODOWNERS file * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * update generatedFiles list to exclude CODEOWNERS --------- Co-authored-by: Owl Bot --- synth.metadata | 1 - 1 file changed, 1 deletion(-) diff --git a/synth.metadata b/synth.metadata index 8c24a9be..bd174a05 100644 --- a/synth.metadata +++ b/synth.metadata @@ -16,7 +16,6 @@ } ], "generatedFiles": [ - ".github/CODEOWNERS", ".github/ISSUE_TEMPLATE/bug_report.md", ".github/ISSUE_TEMPLATE/feature_request.md", ".github/ISSUE_TEMPLATE/support_request.md", From b24276b376228959861d229e50668d2accb4f872 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 20:54:30 -0400 Subject: [PATCH 39/40] chore(main): release 1.8.2-SNAPSHOT (#847) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .cloudbuild/cloudbuild-test-a.yaml | 2 +- .cloudbuild/cloudbuild-test-b.yaml | 2 +- .cloudbuild/cloudbuild.yaml | 2 +- java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- versions.txt | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.cloudbuild/cloudbuild-test-a.yaml b/.cloudbuild/cloudbuild-test-a.yaml index 57681050..fdd9c7b9 100644 --- a/.cloudbuild/cloudbuild-test-a.yaml +++ b/.cloudbuild/cloudbuild-test-a.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.1' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.2-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build diff --git a/.cloudbuild/cloudbuild-test-b.yaml b/.cloudbuild/cloudbuild-test-b.yaml index 94d7819a..b6d9f5cd 100644 --- a/.cloudbuild/cloudbuild-test-b.yaml +++ b/.cloudbuild/cloudbuild-test-b.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.1' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.2-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM B build diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index ae302805..e16868ed 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.1' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.8.2-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build - name: gcr.io/cloud-builders/docker diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 4fbeb965..965f9f6a 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-shared-config pom - 1.8.1 + 1.8.2-SNAPSHOT Google Cloud Shared Config https://github.com/googleapis/java-shared-config @@ -16,7 +16,7 @@ com.google.cloud native-image-shared-config - 1.8.1 + 1.8.2-SNAPSHOT ../native-image-shared-config diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index 707fdc2a..a9f53c70 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud native-image-shared-config pom - 1.8.1 + 1.8.2-SNAPSHOT Native Image Shared Config https://github.com/googleapis/java-shared-config diff --git a/versions.txt b/versions.txt index 59b0becf..d4074871 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-shared-config:1.8.1:1.8.1 +google-cloud-shared-config:1.8.1:1.8.2-SNAPSHOT From 80d3070720f8d32075e361b09f9f5d497e1a31e1 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 21:31:13 -0400 Subject: [PATCH 40/40] chore(main): release 1.9.0 (#857) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .cloudbuild/cloudbuild-test-a.yaml | 2 +- .cloudbuild/cloudbuild-test-b.yaml | 2 +- .cloudbuild/cloudbuild.yaml | 2 +- CHANGELOG.md | 12 ++++++++++++ java-shared-config/pom.xml | 4 ++-- native-image-shared-config/pom.xml | 2 +- versions.txt | 2 +- 7 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.cloudbuild/cloudbuild-test-a.yaml b/.cloudbuild/cloudbuild-test-a.yaml index fdd9c7b9..c77ede7b 100644 --- a/.cloudbuild/cloudbuild-test-a.yaml +++ b/.cloudbuild/cloudbuild-test-a.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.2-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.9.0' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build diff --git a/.cloudbuild/cloudbuild-test-b.yaml b/.cloudbuild/cloudbuild-test-b.yaml index b6d9f5cd..adadf25a 100644 --- a/.cloudbuild/cloudbuild-test-b.yaml +++ b/.cloudbuild/cloudbuild-test-b.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.2-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.9.0' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM B build diff --git a/.cloudbuild/cloudbuild.yaml b/.cloudbuild/cloudbuild.yaml index e16868ed..a64de199 100644 --- a/.cloudbuild/cloudbuild.yaml +++ b/.cloudbuild/cloudbuild.yaml @@ -14,7 +14,7 @@ timeout: 7200s # 2 hours substitutions: - _JAVA_SHARED_CONFIG_VERSION: '1.8.2-SNAPSHOT' # {x-version-update:google-cloud-shared-config:current} + _JAVA_SHARED_CONFIG_VERSION: '1.9.0' # {x-version-update:google-cloud-shared-config:current} steps: # GraalVM A build - name: gcr.io/cloud-builders/docker diff --git a/CHANGELOG.md b/CHANGELOG.md index 122a352c..ba0348e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.9.0](https://github.com/googleapis/java-shared-config/compare/v1.8.1...v1.9.0) (2024-07-09) + + +### Features + +* Add org.graalvm.sdk:nativeimage dependency ([#852](https://github.com/googleapis/java-shared-config/issues/852)) ([658ebed](https://github.com/googleapis/java-shared-config/commit/658ebed528d2fedca69356979b3201089176da10)) + + +### Dependencies + +* Update dependency org.junit.vintage:junit-vintage-engine to v5.10.3 ([#850](https://github.com/googleapis/java-shared-config/issues/850)) ([43e0d7d](https://github.com/googleapis/java-shared-config/commit/43e0d7dc9f103de1846c117454a7fba3edbee06a)) + ## [1.8.1](https://github.com/googleapis/java-shared-config/compare/v1.8.0...v1.8.1) (2024-06-24) diff --git a/java-shared-config/pom.xml b/java-shared-config/pom.xml index 965f9f6a..6bd82c81 100644 --- a/java-shared-config/pom.xml +++ b/java-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud google-cloud-shared-config pom - 1.8.2-SNAPSHOT + 1.9.0 Google Cloud Shared Config https://github.com/googleapis/java-shared-config @@ -16,7 +16,7 @@ com.google.cloud native-image-shared-config - 1.8.2-SNAPSHOT + 1.9.0 ../native-image-shared-config diff --git a/native-image-shared-config/pom.xml b/native-image-shared-config/pom.xml index a9f53c70..f341fcd1 100644 --- a/native-image-shared-config/pom.xml +++ b/native-image-shared-config/pom.xml @@ -6,7 +6,7 @@ com.google.cloud native-image-shared-config pom - 1.8.2-SNAPSHOT + 1.9.0 Native Image Shared Config https://github.com/googleapis/java-shared-config diff --git a/versions.txt b/versions.txt index d4074871..82a47cde 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-shared-config:1.8.1:1.8.2-SNAPSHOT +google-cloud-shared-config:1.9.0:1.9.0