From 0aae9174d4b20fe962f96d73519abc502b08af74 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Fri, 4 Feb 2022 01:36:40 +0000
Subject: [PATCH 01/10] chore(main): release 2.0.6-SNAPSHOT (#599)
:robot: I have created a release *beep* *boop*
---
### Updating meta-information for bleeding-edge SNAPSHOT release.
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
---
pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
versions.txt | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 73f08002..672a614b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-dns
jar
- 2.0.5
+ 2.0.6-SNAPSHOT
Google Cloud DNS Parent
https://github.com/googleapis/java-dns
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index 894c45d0..b612ba40 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-dns
- 2.0.5
+ 2.0.6-SNAPSHOT
diff --git a/versions.txt b/versions.txt
index d18ac4a3..c25bf467 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-dns:2.0.5:2.0.5
\ No newline at end of file
+google-cloud-dns:2.0.5:2.0.6-SNAPSHOT
\ No newline at end of file
From bb5be9e748ece46fee2bd5e0338c1cc20aa32a27 Mon Sep 17 00:00:00 2001
From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com>
Date: Mon, 7 Feb 2022 22:14:39 +0000
Subject: [PATCH 02/10] chore: enable auto release in java (#1349) (#602)
* chore: fix auto-release
* chore: remove codecov.yml
* chore: update license headers for yaml files
Source-Link: https://github.com/googleapis/synthtool/commit/5b777277a01a93e7f10c9279521e807b934e78d4
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:ebc2104854c5b81c6fd72ca79400a2e20e0d510c5e0654fd1a19e5c9be160ca6
---
.github/.OwlBot.lock.yaml | 2 +-
.github/workflows/approve-readme.yaml | 15 +++++++++++++++
.github/workflows/auto-release.yaml | 19 +++++++++++++++++--
.github/workflows/ci.yaml | 15 +++++++++++++++
.github/workflows/samples.yaml | 15 +++++++++++++++
.kokoro/build.bat | 15 +++++++++++++++
6 files changed, 78 insertions(+), 3 deletions(-)
diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml
index 8807efca..a8ddd81a 100644
--- a/.github/.OwlBot.lock.yaml
+++ b/.github/.OwlBot.lock.yaml
@@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
- digest: sha256:7c853edc4136ae8f19f9d46d4569d38de2e446db2eea057f32e412bdba255846
+ digest: sha256:ebc2104854c5b81c6fd72ca79400a2e20e0d510c5e0654fd1a19e5c9be160ca6
diff --git a/.github/workflows/approve-readme.yaml b/.github/workflows/approve-readme.yaml
index c5132427..1bb18232 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
diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml
index 59c7cadd..2ba3082b 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
@@ -16,8 +31,8 @@ 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;
}
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 05de1f60..6b5e56aa 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:
diff --git a/.github/workflows/samples.yaml b/.github/workflows/samples.yaml
index c46230a7..d5d964df 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
diff --git a/.kokoro/build.bat b/.kokoro/build.bat
index 05826ad9..cc602c9e 100644
--- a/.kokoro/build.bat
+++ b/.kokoro/build.bat
@@ -1,3 +1,18 @@
:: See documentation in type-shell-output.bat
+# 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.
"C:\Program Files\Git\bin\bash.exe" %~dp0build.sh
From eed495a44b35b4dbc5cff6715957c63f2a7aeb4c Mon Sep 17 00:00:00 2001
From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com>
Date: Tue, 8 Feb 2022 00:48:42 +0000
Subject: [PATCH 03/10] chore: update auto-release script to fix breaking
changes in v5 (#1350) (#603)
Source-Link: https://github.com/googleapis/synthtool/commit/53a58c23eb4decb3a17fab07388d42799e158b5f
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:3c950ed12391ebaffd1ee66d0374766a1c50144ebe6a7a0042300b2e6bb5856b
---
.github/.OwlBot.lock.yaml | 2 +-
.github/workflows/auto-release.yaml | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml
index a8ddd81a..9786771c 100644
--- a/.github/.OwlBot.lock.yaml
+++ b/.github/.OwlBot.lock.yaml
@@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
- digest: sha256:ebc2104854c5b81c6fd72ca79400a2e20e0d510c5e0654fd1a19e5c9be160ca6
+ digest: sha256:3c950ed12391ebaffd1ee66d0374766a1c50144ebe6a7a0042300b2e6bb5856b
diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml
index 2ba3082b..18e23230 100644
--- a/.github/workflows/auto-release.yaml
+++ b/.github/workflows/auto-release.yaml
@@ -37,7 +37,7 @@ jobs:
}
// 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,
@@ -69,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'
@@ -86,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!',
@@ -95,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,
From 0b7a545e9b407b0057515b5582611832cf0b14f0 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 8 Feb 2022 22:53:07 +0100
Subject: [PATCH 04/10] build(deps): update dependency
com.google.cloud:google-cloud-shared-config to v1.2.7 (#604)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | `1.2.6` -> `1.2.7` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-config
### [`v1.2.7`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#127-httpsgithubcomgoogleapisjava-shared-configcomparev126v127-2022-02-04)
[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.2.6...v1.2.7)
---
### Configuration
📅 **Schedule**: 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, click this checkbox.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-dns).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 672a614b..b6e13704 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 1.2.6
+ 1.2.7
From a47f01cd16bd5061778efcd1313b2e3a127edf29 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 8 Feb 2022 23:00:59 +0100
Subject: [PATCH 05/10] chore(deps): update dependency
com.google.cloud:libraries-bom to v24.3.0 (#605)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `24.2.0` -> `24.3.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Configuration
📅 **Schedule**: 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, click this checkbox.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-dns).
---
samples/snippets/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index d9c60892..36664fa2 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -30,7 +30,7 @@
com.google.cloud
libraries-bom
- 24.2.0
+ 24.3.0
pom
import
From 54f0614cc4421b8cfdfa6ab3cf7e9061c4ddc78f Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Wed, 9 Feb 2022 21:17:01 +0100
Subject: [PATCH 06/10] chore(deps): update dependency
com.google.cloud:google-cloud-dns to v2.0.5 (#600)
---
samples/install-without-bom/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 81758979..968c1b07 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
google-cloud-dns
- 2.0.4
+ 2.0.5
From 5e382f294d55aac72583cfd6b0013ea870a9298c Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Thu, 10 Feb 2022 19:43:01 +0100
Subject: [PATCH 07/10] build(deps): update dependency
org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.1 (#601)
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index b6e13704..bc4b4b7f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -166,7 +166,7 @@
org.apache.maven.plugins
maven-project-info-reports-plugin
- 3.1.2
+ 3.2.1
From 9c4b48f43ca195dd6fbf46ec48c97d7b05d60485 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 11 Feb 2022 22:12:58 +0100
Subject: [PATCH 08/10] build(deps): update dependency
org.apache.maven.plugins:maven-javadoc-plugin to v3.3.2 (#606)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.apache.maven.plugins:maven-javadoc-plugin](https://maven.apache.org/plugins/) | `3.3.1` -> `3.3.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Configuration
📅 **Schedule**: 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, click this checkbox.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-dns).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index bc4b4b7f..cc9153bf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -193,7 +193,7 @@
org.apache.maven.plugins
maven-javadoc-plugin
- 3.3.1
+ 3.3.2
html
From 07a5e5fffa7c7653fc6ee656afe6afaca0745f4e Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 11 Feb 2022 22:42:59 +0100
Subject: [PATCH 09/10] deps: update actions/github-script action to v6 (#607)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [actions/github-script](https://togithub.com/actions/github-script) | action | major | `v5` -> `v6` |
---
### Release Notes
actions/github-script
### [`v6`](https://togithub.com/actions/github-script/compare/v5...v6)
[Compare Source](https://togithub.com/actions/github-script/compare/v5...v6)
---
### Configuration
📅 **Schedule**: At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
â™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, click this checkbox.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-dns).
From 49494a762bf1a8769853a395c6dc03da644d2779 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Fri, 11 Feb 2022 22:06:50 +0000
Subject: [PATCH 10/10] chore(main): release 2.0.6 (#608)
:robot: I have created a release *beep* *boop*
---
### [2.0.6](https://github.com/googleapis/java-dns/compare/v2.0.5...v2.0.6) (2022-02-11)
### Dependencies
* update actions/github-script action to v6 ([#607](https://github.com/googleapis/java-dns/issues/607)) ([07a5e5f](https://github.com/googleapis/java-dns/commit/07a5e5fffa7c7653fc6ee656afe6afaca0745f4e))
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
---
CHANGELOG.md | 7 +++++++
pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
versions.txt | 2 +-
4 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1d73979..8e9a0c67 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+### [2.0.6](https://github.com/googleapis/java-dns/compare/v2.0.5...v2.0.6) (2022-02-11)
+
+
+### Dependencies
+
+* update actions/github-script action to v6 ([#607](https://github.com/googleapis/java-dns/issues/607)) ([07a5e5f](https://github.com/googleapis/java-dns/commit/07a5e5fffa7c7653fc6ee656afe6afaca0745f4e))
+
### [2.0.5](https://github.com/googleapis/java-dns/compare/v2.0.4...v2.0.5) (2022-02-03)
diff --git a/pom.xml b/pom.xml
index cc9153bf..f9cf34ae 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-dns
jar
- 2.0.6-SNAPSHOT
+ 2.0.6
Google Cloud DNS Parent
https://github.com/googleapis/java-dns
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index b612ba40..5dfe2652 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-dns
- 2.0.6-SNAPSHOT
+ 2.0.6
diff --git a/versions.txt b/versions.txt
index c25bf467..8c4e46ed 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-dns:2.0.5:2.0.6-SNAPSHOT
\ No newline at end of file
+google-cloud-dns:2.0.6:2.0.6
\ No newline at end of file