Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turned ChangeRequest into a functional object. #789

Merged
merged 2 commits into from
Mar 26, 2016

Conversation

mderka
Copy link

@mderka mderka commented Mar 25, 2016

This fixed #679.

I will adjust documentation when the code review on this is nearing the end. Created an issue #788.

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Mar 25, 2016
@mderka mderka added api: dns Issues related to the Cloud DNS API. and removed cla: yes This human has signed the Contributor License Agreement. labels Mar 25, 2016
@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Mar 25, 2016
@coveralls
Copy link

Coverage Status

Coverage increased (+0.01%) to 85.585% when pulling fcb90a2 on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@mderka
Copy link
Author

mderka commented Mar 25, 2016

Since I was forced to fix the examples, I also right away added a commit to fix #788. This should be now complete.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.01%) to 85.585% when pulling 5c5ed78 on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.01%) to 85.585% when pulling d47cc99 on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@@ -269,7 +270,7 @@ RecordSet toCreate = RecordSet.builder("www.someexampledomain.com.", RecordSet.T
.ttl(24, TimeUnit.HOURS)
.addRecord(ip)
.build();
ChangeRequest.Builder changeBuilder = ChangeRequest.builder().add(toCreate);
ChangeRequestInfo.Builder changeBuilder = ChangeRequest.builder().add(toCreate);

This comment was marked as spam.

This comment was marked as spam.

@@ -23,6 +23,7 @@
package com.google.gcloud.examples.dns.snippets;

import com.google.gcloud.dns.ChangeRequest;
import com.google.gcloud.dns.ChangeRequestInfo;

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.004%) to 85.579% when pulling 729201c on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.004%) to 85.579% when pulling 729201c on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@@ -161,7 +161,7 @@ public Builder toBuilder() {

@Override
public boolean equals(Object obj) {
if (obj instanceof ChangeRequest) {
if (obj.getClass().equals(ChangeRequest.class)) {

This comment was marked as spam.

This comment was marked as spam.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.004%) to 85.579% when pulling 30a0576 on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@mziccard
Copy link
Contributor

Looks good to me. We can merge if @aozarov has nothing to add. isDone() and reload() will be added in a later PR (#679 is to be kept open until then).

- Moved Status enum to ChangeRequestInfo.
- Switching from ChangeRequest.builer() to ChangeRequestInfo.builder()
- Fixing README accordingly
- Used times() for mocking instead of repeated expect()
- Snippets and documentation work with ChangeRequestInfo. Fixes googleapis#788.
- Equals uses getClass instead if instanceof.
- Removed unnecessary imports.
@coveralls
Copy link

Coverage Status

Coverage increased (+0.004%) to 85.579% when pulling de8bf4b on mderka:change-request-functional into 96e28d6 on GoogleCloudPlatform:dns-alpha.

@mderka mderka merged commit 104f9e5 into googleapis:dns-alpha Mar 26, 2016
return (other instanceof ChangeRequestInfo)
&& toPb().equals(((ChangeRequestInfo) other).toPb());
return other != null && other.getClass().equals(ChangeRequestInfo.class)
&& other instanceof ChangeRequestInfo && toPb().equals(((ChangeRequestInfo) other).toPb());

This comment was marked as spam.

github-actions bot pushed a commit that referenced this pull request Jun 23, 2022
…cies to v2.13.0 (#789)

[![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.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `2.12.0` -> `2.13.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/compatibility-slim/2.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/confidence-slim/2.12.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-shared-dependencies</summary>

### [`v2.13.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;2130-httpsgithubcomgoogleapisjava-shared-dependenciescomparev2120v2130-2022-06-22)

[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v2.12.0...v2.13.0)

##### Dependencies

-   update dependency com.google.api-client:google-api-client-bom to v1.35.0 ([#&#8203;709](https://togithub.com/googleapis/java-shared-dependencies/issues/709)) ([239f8c3](https://togithub.com/googleapis/java-shared-dependencies/commit/239f8c33a11e233e6af79aee8c7e68cd156a0554))
-   update dependency com.google.api-client:google-api-client-bom to v1.35.1 ([#&#8203;713](https://togithub.com/googleapis/java-shared-dependencies/issues/713)) ([6559b45](https://togithub.com/googleapis/java-shared-dependencies/commit/6559b45b027dba783a9525d35e32183d78773cbe))
-   update dependency com.google.api:api-common to v2.2.1 ([#&#8203;710](https://togithub.com/googleapis/java-shared-dependencies/issues/710)) ([650d4c5](https://togithub.com/googleapis/java-shared-dependencies/commit/650d4c5f8c3cfce711257d47280ad773cd2e2414))
-   update dependency com.google.errorprone:error_prone_annotations to v2.14.0 ([#&#8203;701](https://togithub.com/googleapis/java-shared-dependencies/issues/701)) ([d24730f](https://togithub.com/googleapis/java-shared-dependencies/commit/d24730f78669f80b109e590b903446e5552e3e36))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.0 ([#&#8203;711](https://togithub.com/googleapis/java-shared-dependencies/issues/711)) ([5168a18](https://togithub.com/googleapis/java-shared-dependencies/commit/5168a181722128d434a0d0d2ab5cc485686bbc78))
-   update dependency com.google.oauth-client:google-oauth-client-bom to v1.34.0 ([#&#8203;708](https://togithub.com/googleapis/java-shared-dependencies/issues/708)) ([620336e](https://togithub.com/googleapis/java-shared-dependencies/commit/620336e6733e2017116e5e8a7b403b183a728bc1))
-   update dependency com.google.oauth-client:google-oauth-client-bom to v1.34.1 ([#&#8203;712](https://togithub.com/googleapis/java-shared-dependencies/issues/712)) ([a2c18a5](https://togithub.com/googleapis/java-shared-dependencies/commit/a2c18a5bc4152cc9034cec691a29f54a35c38a51))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.0 ([#&#8203;703](https://togithub.com/googleapis/java-shared-dependencies/issues/703)) ([5f9fe12](https://togithub.com/googleapis/java-shared-dependencies/commit/5f9fe1200b4bdf4c54bf947c21bd3ed02f26f990))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.1 ([#&#8203;705](https://togithub.com/googleapis/java-shared-dependencies/issues/705)) ([c68edfb](https://togithub.com/googleapis/java-shared-dependencies/commit/c68edfbe7e1993e1112640b867b29aa2fbcf7579))
-   update dependency io.grpc:grpc-bom to v1.47.0 ([#&#8203;707](https://togithub.com/googleapis/java-shared-dependencies/issues/707)) ([d02918a](https://togithub.com/googleapis/java-shared-dependencies/commit/d02918a0418cd65d1d247f27afb0637f1f8f5666))
-   update dependency org.checkerframework:checker-qual to v3.22.1 ([#&#8203;706](https://togithub.com/googleapis/java-shared-dependencies/issues/706)) ([545843b](https://togithub.com/googleapis/java-shared-dependencies/commit/545843b492cead230b8cc72a1dae7d4922f33b39))
-   update dependency org.checkerframework:checker-qual to v3.22.2 ([#&#8203;717](https://togithub.com/googleapis/java-shared-dependencies/issues/717)) ([142852a](https://togithub.com/googleapis/java-shared-dependencies/commit/142852a37140f221197f5c71aed451def353b1e0))
-   update gax.version to v2.18.2 ([#&#8203;718](https://togithub.com/googleapis/java-shared-dependencies/issues/718)) ([5f8156e](https://togithub.com/googleapis/java-shared-dependencies/commit/5f8156e55c6a07b018a8c5efafa68be781b4288b))
-   update google.common-protos.version to v2.9.0 ([#&#8203;714](https://togithub.com/googleapis/java-shared-dependencies/issues/714)) ([9e5591e](https://togithub.com/googleapis/java-shared-dependencies/commit/9e5591ec3035350450ecbfebd00e08216433b06c))
-   update google.core.version to v2.8.0 ([#&#8203;719](https://togithub.com/googleapis/java-shared-dependencies/issues/719)) ([4023c60](https://togithub.com/googleapis/java-shared-dependencies/commit/4023c6063a2c5b5308da531df1a08c90c491965d))
-   update iam.version to v1.4.0 ([#&#8203;700](https://togithub.com/googleapis/java-shared-dependencies/issues/700)) ([c1097a4](https://togithub.com/googleapis/java-shared-dependencies/commit/c1097a46ab0739b0b7234bc510e4c3d9ce2c2861))
-   update iam.version to v1.4.1 ([#&#8203;716](https://togithub.com/googleapis/java-shared-dependencies/issues/716)) ([e2dc7c2](https://togithub.com/googleapis/java-shared-dependencies/commit/e2dc7c21c39e007878841e2664d548ec44a72d54))

</details>

---

### 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-secretmanager).
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jun 29, 2022
…4.0 (googleapis#789)

[![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.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `25.3.0` -> `25.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/compatibility-slim/25.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/confidence-slim/25.3.0)](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**: 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-resourcemanager).
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jul 1, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.0](googleapis/java-secretmanager@v2.2.0...v2.3.0) (2022-07-01)


### Features

* Enable REST transport for most of Java and Go clients ([googleapis#790](googleapis/java-secretmanager#790)) ([d41cd58](googleapis/java-secretmanager@d41cd58))


### Documentation

* **sample:** clean up README for native image sample ([googleapis#785](googleapis/java-secretmanager#785)) ([c6005b3](googleapis/java-secretmanager@c6005b3))


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([googleapis#789](googleapis/java-secretmanager#789)) ([6591df5](googleapis/java-secretmanager@6591df5))
* update dependency com.google.protobuf:protobuf-java-util to v3.21.0 ([googleapis#779](googleapis/java-secretmanager#779)) ([ff31a24](googleapis/java-secretmanager@ff31a24))
* update dependency com.google.protobuf:protobuf-java-util to v3.21.1 ([googleapis#780](googleapis/java-secretmanager#780)) ([9011c89](googleapis/java-secretmanager@9011c89))
* update dependency com.google.protobuf:protobuf-java-util to v3.21.2 ([googleapis#791](googleapis/java-secretmanager#791)) ([1fdde19](googleapis/java-secretmanager@1fdde19))
* update dependency org.graalvm.buildtools:junit-platform-native to v0.9.12 ([googleapis#787](googleapis/java-secretmanager#787)) ([b1bde96](googleapis/java-secretmanager@b1bde96))
* update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.12 ([googleapis#788](googleapis/java-secretmanager#788)) ([9c10bdf](googleapis/java-secretmanager@9c10bdf))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Jul 18, 2022
…-info-reports-plugin to v3.4.0 (#789)

[![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-project-info-reports-plugin](https://maven.apache.org/plugins/) | `3.3.0` -> `3.4.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/compatibility-slim/3.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/confidence-slim/3.3.0)](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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-scheduler).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
🤖 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).
github-actions bot pushed a commit that referenced this pull request Aug 16, 2022
…proval to v2.4.3 (#789)

[![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.google.cloud:google-cloud-accessapproval](https://togithub.com/googleapis/java-accessapproval) | `2.4.2` -> `2.4.3` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-accessapproval/2.4.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-accessapproval/2.4.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-accessapproval/2.4.3/compatibility-slim/2.4.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-accessapproval/2.4.3/confidence-slim/2.4.2)](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**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-accessapproval).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTMuMCIsInVwZGF0ZWRJblZlciI6IjMyLjE1My4wIn0=-->
github-actions bot pushed a commit that referenced this pull request Sep 15, 2022
🤖 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).
github-actions bot pushed a commit that referenced this pull request Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.8](https://togithub.com/googleapis/java-texttospeech/compare/v2.4.7...v2.4.8) (2022-10-03)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#788](https://togithub.com/googleapis/java-texttospeech/issues/788)) ([7045007](https://togithub.com/googleapis/java-texttospeech/commit/7045007ac3b830f72e795c4f085e81f78236b507))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.5](https://togithub.com/googleapis/java-iot/compare/v2.3.4...v2.3.5) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#796](https://togithub.com/googleapis/java-iot/issues/796)) ([d9b3568](https://togithub.com/googleapis/java-iot/commit/d9b3568b7b87d1ab6de06b87644ce26e595c5916))
* Update dependency certifi to v2022.9.24 ([#776](https://togithub.com/googleapis/java-iot/issues/776)) ([2060b7a](https://togithub.com/googleapis/java-iot/commit/2060b7a3733e9f64bad0d789bbe666ee79867e28))
* Update dependency charset-normalizer to v2.1.1 ([#780](https://togithub.com/googleapis/java-iot/issues/780)) ([8247c2e](https://togithub.com/googleapis/java-iot/commit/8247c2ebaae5c49d5b96f2f4b6b369f819763b0e))
* Update dependency click to v8.1.3 ([#782](https://togithub.com/googleapis/java-iot/issues/782)) ([1a40780](https://togithub.com/googleapis/java-iot/commit/1a4078092380f72ac574b724a74310afc1ed79b7))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#801](https://togithub.com/googleapis/java-iot/issues/801)) ([f632214](https://togithub.com/googleapis/java-iot/commit/f632214bf0ca879f718d0686d06e5226fbd59307))
* Update dependency gcp-releasetool to v1.8.8 ([#777](https://togithub.com/googleapis/java-iot/issues/777)) ([e7c88de](https://togithub.com/googleapis/java-iot/commit/e7c88dee52268194a44a6596d70a497604a40a4f))
* Update dependency google-api-core to v2.10.1 ([#783](https://togithub.com/googleapis/java-iot/issues/783)) ([8dcbeeb](https://togithub.com/googleapis/java-iot/commit/8dcbeeb32d9866877e6c5de4768e910be5dc494a))
* Update dependency google-auth to v2.12.0 ([#784](https://togithub.com/googleapis/java-iot/issues/784)) ([97cff9c](https://togithub.com/googleapis/java-iot/commit/97cff9ca62475cd0f07a1058052f9df35fdaec77))
* Update dependency google-cloud-core to v2.3.2 ([#778](https://togithub.com/googleapis/java-iot/issues/778)) ([d3acbb8](https://togithub.com/googleapis/java-iot/commit/d3acbb89b2dfdda6e72e2b22762ad5c9629f33c7))
* Update dependency google-cloud-storage to v2.5.0 ([#785](https://togithub.com/googleapis/java-iot/issues/785)) ([2ff55c5](https://togithub.com/googleapis/java-iot/commit/2ff55c561535a01891a1673e456ff489013e5cbb))
* Update dependency google-crc32c to v1.5.0 ([#786](https://togithub.com/googleapis/java-iot/issues/786)) ([11e5f90](https://togithub.com/googleapis/java-iot/commit/11e5f90734aa76ca97119103722ab52357a35f70))
* Update dependency googleapis-common-protos to v1.56.4 ([#779](https://togithub.com/googleapis/java-iot/issues/779)) ([6862333](https://togithub.com/googleapis/java-iot/commit/6862333e490968d778362314a61eb682fba3d843))
* Update dependency importlib-metadata to v4.12.0 ([#787](https://togithub.com/googleapis/java-iot/issues/787)) ([e026a2d](https://togithub.com/googleapis/java-iot/commit/e026a2d6b6d82910fde66c3c8d9be0c2344d6d15))
* Update dependency jeepney to v0.8.0 ([#788](https://togithub.com/googleapis/java-iot/issues/788)) ([e1c303f](https://togithub.com/googleapis/java-iot/commit/e1c303ff87eaab5b8596ee813dcf85be46c63270))
* Update dependency jinja2 to v3.1.2 ([#789](https://togithub.com/googleapis/java-iot/issues/789)) ([7b61752](https://togithub.com/googleapis/java-iot/commit/7b61752378bc542d3a37fa314036b10a6b2bc3b7))
* Update dependency keyring to v23.9.3 ([#790](https://togithub.com/googleapis/java-iot/issues/790)) ([e6a4983](https://togithub.com/googleapis/java-iot/commit/e6a498323d4a1009dab87db1f800202883a58600))
* Update dependency markupsafe to v2.1.1 ([#781](https://togithub.com/googleapis/java-iot/issues/781)) ([3e2ca49](https://togithub.com/googleapis/java-iot/commit/3e2ca493d5868dc2b010541e744d2f76078abfa5))
* Update dependency protobuf to v3.20.2 ([#791](https://togithub.com/googleapis/java-iot/issues/791)) ([925f948](https://togithub.com/googleapis/java-iot/commit/925f948f474c9fdcc7b95b262d294321ee8e71d5))
* Update dependency protobuf to v4 ([#797](https://togithub.com/googleapis/java-iot/issues/797)) ([6d6e582](https://togithub.com/googleapis/java-iot/commit/6d6e582ac17cc0004bb623d25e5ed7900a20ac29))
* Update dependency typing-extensions to v4.3.0 ([#794](https://togithub.com/googleapis/java-iot/issues/794)) ([cf9d81c](https://togithub.com/googleapis/java-iot/commit/cf9d81c1cb08a198f78992ffeaec0eae5a81df1d))
* Update dependency zipp to v3.8.1 ([#795](https://togithub.com/googleapis/java-iot/issues/795)) ([6447b03](https://togithub.com/googleapis/java-iot/commit/6447b039a59d886f568766fb60230e99b5891a40))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.11](https://togithub.com/googleapis/java-tasks/compare/v2.3.10...v2.3.11) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#768](https://togithub.com/googleapis/java-tasks/issues/768)) ([2b0244d](https://togithub.com/googleapis/java-tasks/commit/2b0244db7697f353b6b6bb9ca704aafe184ab55e))
* Update dependency charset-normalizer to v2.1.1 ([#772](https://togithub.com/googleapis/java-tasks/issues/772)) ([c8c7b22](https://togithub.com/googleapis/java-tasks/commit/c8c7b2266923a930aaed3c7ad6119ace7f74ef0e))
* Update dependency click to v8.1.3 ([#773](https://togithub.com/googleapis/java-tasks/issues/773)) ([b060436](https://togithub.com/googleapis/java-tasks/commit/b0604361a3d01b058f9fcd980dc014205fbfc2f1))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#793](https://togithub.com/googleapis/java-tasks/issues/793)) ([f801b07](https://togithub.com/googleapis/java-tasks/commit/f801b07a36e2e0766f5079419c85a935b009e0f4))
* Update dependency gcp-releasetool to v1.8.8 ([#769](https://togithub.com/googleapis/java-tasks/issues/769)) ([a630d34](https://togithub.com/googleapis/java-tasks/commit/a630d3485bdac18828a7377dd98744a363b08cc3))
* Update dependency google-api-core to v2.10.1 ([#774](https://togithub.com/googleapis/java-tasks/issues/774)) ([146cbbe](https://togithub.com/googleapis/java-tasks/commit/146cbbe9df9d39ff9b1ace8a1c0dbcb9265e4e41))
* Update dependency google-auth to v2.12.0 ([#775](https://togithub.com/googleapis/java-tasks/issues/775)) ([d236daa](https://togithub.com/googleapis/java-tasks/commit/d236daad69ff48d62cabee58257e395d68c2433f))
* Update dependency google-cloud-core to v2.3.2 ([#770](https://togithub.com/googleapis/java-tasks/issues/770)) ([88f1b32](https://togithub.com/googleapis/java-tasks/commit/88f1b32ea0e4a71d7fd8d37990cb8a23f816bccf))
* Update dependency google-cloud-storage to v2.5.0 ([#776](https://togithub.com/googleapis/java-tasks/issues/776)) ([a40e2b8](https://togithub.com/googleapis/java-tasks/commit/a40e2b877fdf2ecd693bdaffb6e593b5a2389676))
* Update dependency jinja2 to v3.1.2 ([#788](https://togithub.com/googleapis/java-tasks/issues/788)) ([f35fba8](https://togithub.com/googleapis/java-tasks/commit/f35fba84e228d80d9ac7807706de9d9ef7f9e182))
* Update dependency markupsafe to v2.1.1 ([#778](https://togithub.com/googleapis/java-tasks/issues/778)) ([ccaa3f2](https://togithub.com/googleapis/java-tasks/commit/ccaa3f247858c21c42fe74c3cf032d13035ab7a8))
* Update dependency protobuf to v3.20.2 ([#779](https://togithub.com/googleapis/java-tasks/issues/779)) ([327e770](https://togithub.com/googleapis/java-tasks/commit/327e77088ad48391ee5e4e047c2a3ea4077efaed))
* Update dependency requests to v2.28.1 ([#781](https://togithub.com/googleapis/java-tasks/issues/781)) ([df93a37](https://togithub.com/googleapis/java-tasks/commit/df93a37b7a622c4cf3ba2573b85dc99ac554b9d2))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this pull request Oct 5, 2022
github-actions bot pushed a commit that referenced this pull request Oct 6, 2022
…connection to v2.5.6 (#789)

[![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.google.cloud:google-cloud-bigqueryconnection](https://togithub.com/googleapis/java-bigqueryconnection) | `2.5.5` -> `2.5.6` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-bigqueryconnection/2.5.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-bigqueryconnection/2.5.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-bigqueryconnection/2.5.6/compatibility-slim/2.5.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-bigqueryconnection/2.5.6/confidence-slim/2.5.5)](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**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bigqueryconnection).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMTcuMCIsInVwZGF0ZWRJblZlciI6IjMyLjIxNy4wIn0=-->
github-actions bot pushed a commit that referenced this pull request Nov 16, 2022
* cleanup: remove migrated sample

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* chore: revert changes to pom.xml

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
suztomo pushed a commit that referenced this pull request Feb 1, 2023
🤖 I have created a release *beep* *boop*
---


## [2.6.0](googleapis/java-core@v2.5.11...v2.6.0) (2022-04-14)


### Features

* **java:** remove GoogleJsonClentFeature and OpenCensusFeature after relocation ([#793](googleapis/java-core#793)) ([cafd489](googleapis/java-core@cafd489))
* **java:** remove Netty Native Image configuration after relocation to gax ([#771](googleapis/java-core#771)) ([9cc7dba](googleapis/java-core@9cc7dba))
* **java:** remove protobuf Native Image configuration ([#784](googleapis/java-core#784)) ([7a8df66](googleapis/java-core@7a8df66))
* remove native-image.properties settings  after relocation ([#794](googleapis/java-core#794)) ([219a519](googleapis/java-core@219a519))
* remove resource-config after relocation ([#795](googleapis/java-core#795)) ([8ed3110](googleapis/java-core@8ed3110))
* remove substitutions after relocation to gax ([#789](googleapis/java-core#789)) ([85280b1](googleapis/java-core@85280b1))


### Bug Fixes

* **java:** register test class for reflection to fix native image test ([#766](googleapis/java-core#766)) ([fa07125](googleapis/java-core@fa07125))


### Dependencies

* revert protobuf to 3.19 and common-protos 2.8.3 ([#798](googleapis/java-core#798)) ([27ca70c](googleapis/java-core@27ca70c))
* update dependency com.google.api-client:google-api-client-bom to v1.34.0 ([#800](googleapis/java-core#800)) ([3abc47d](googleapis/java-core@3abc47d))
* update dependency com.google.api:gax-bom to v2.16.0 ([#785](googleapis/java-core#785)) ([bd33a76](googleapis/java-core@bd33a76))
* update dependency com.google.api.grpc:proto-google-common-protos to v2.8.1 ([#792](googleapis/java-core#792)) ([3f85e62](googleapis/java-core@3f85e62))
* update dependency com.google.api.grpc:proto-google-common-protos to v2.8.2 ([#796](googleapis/java-core#796)) ([d6ea18e](googleapis/java-core@d6ea18e))
* update dependency com.google.api.grpc:proto-google-iam-v1 to v1.3.0 ([#783](googleapis/java-core#783)) ([48594f3](googleapis/java-core@48594f3))
* update dependency com.google.api.grpc:proto-google-iam-v1 to v1.3.1 ([#799](googleapis/java-core#799)) ([9fe7d35](googleapis/java-core@9fe7d35))
* update dependency com.google.errorprone:error_prone_annotations to v2.12.1 ([#788](googleapis/java-core#788)) ([cfdabb4](googleapis/java-core@cfdabb4))
* update dependency com.google.http-client:google-http-client-bom to v1.41.6 ([#791](googleapis/java-core#791)) ([d9ff405](googleapis/java-core@d9ff405))
* update dependency com.google.http-client:google-http-client-bom to v1.41.7 ([#797](googleapis/java-core#797)) ([dfc3c57](googleapis/java-core@dfc3c57))
* update dependency com.google.protobuf:protobuf-bom to v3.20.0 ([#787](googleapis/java-core#787)) ([51f59fc](googleapis/java-core@51f59fc))
* update dependency io.grpc:grpc-bom to v1.45.1 ([#780](googleapis/java-core#780)) ([cd8a078](googleapis/java-core@cd8a078))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
suztomo pushed a commit that referenced this pull request Feb 1, 2023
…789)

[![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.fasterxml.jackson:jackson-bom](https://togithub.com/FasterXML/jackson-bom) | `2.13.3` -> `2.13.4` | [![age](https://badges.renovateapi.com/packages/maven/com.fasterxml.jackson:jackson-bom/2.13.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.fasterxml.jackson:jackson-bom/2.13.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.fasterxml.jackson:jackson-bom/2.13.4/compatibility-slim/2.13.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.fasterxml.jackson:jackson-bom/2.13.4/confidence-slim/2.13.3)](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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-shared-dependencies).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xODkuMCIsInVwZGF0ZWRJblZlciI6IjMyLjE4OS4wIn0=-->
suztomo pushed a commit that referenced this pull request Feb 1, 2023
🤖 I have created a release *beep* *boop*
---


## [3.0.2](googleapis/java-shared-dependencies@v3.0.1...v3.0.2) (2022-09-08)


### Dependencies

* Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4 ([#789](googleapis/java-shared-dependencies#789)) ([d0b6888](googleapis/java-shared-dependencies@d0b6888))
* Update dependency com.google.auth:google-auth-library-bom to v1.10.0 ([#781](googleapis/java-shared-dependencies#781)) ([450a3fe](googleapis/java-shared-dependencies@450a3fe))
* Update dependency com.google.auth:google-auth-library-bom to v1.11.0 ([#790](googleapis/java-shared-dependencies#790)) ([fdbab60](googleapis/java-shared-dependencies@fdbab60))
* Update dependency com.google.auth:google-auth-library-bom to v1.9.0 ([#773](googleapis/java-shared-dependencies#773)) ([f59be02](googleapis/java-shared-dependencies@f59be02))
* Update dependency com.google.errorprone:error_prone_annotations to v2.15.0 ([#776](googleapis/java-shared-dependencies#776)) ([8eddf23](googleapis/java-shared-dependencies@8eddf23))
* Update dependency com.google.protobuf:protobuf-bom to v3.21.5 ([#780](googleapis/java-shared-dependencies#780)) ([80c783f](googleapis/java-shared-dependencies@80c783f))
* Update dependency io.grpc:grpc-bom to v1.48.1 ([#768](googleapis/java-shared-dependencies#768)) ([c1e6978](googleapis/java-shared-dependencies@c1e6978))
* Update dependency io.grpc:grpc-bom to v1.49.0 ([#786](googleapis/java-shared-dependencies#786)) ([c5c4a0b](googleapis/java-shared-dependencies@c5c4a0b))
* Update dependency org.checkerframework:checker-qual to v3.24.0 ([#775](googleapis/java-shared-dependencies#775)) ([4bb5bee](googleapis/java-shared-dependencies@4bb5bee))
* Update dependency org.checkerframework:checker-qual to v3.25.0 ([#788](googleapis/java-shared-dependencies#788)) ([ad9e4f1](googleapis/java-shared-dependencies@ad9e4f1))
* Update dependency org.threeten:threetenbp to v1.6.1 ([#782](googleapis/java-shared-dependencies#782)) ([30717c3](googleapis/java-shared-dependencies@30717c3))
* Update gax.version to v2.19.0 ([#785](googleapis/java-shared-dependencies#785)) ([b5a674e](googleapis/java-shared-dependencies@b5a674e))
* Update google.core.version to v2.8.10 ([#787](googleapis/java-shared-dependencies#787)) ([754e622](googleapis/java-shared-dependencies@754e622))
* Update google.core.version to v2.8.7 ([#774](googleapis/java-shared-dependencies#774)) ([0c8e010](googleapis/java-shared-dependencies@0c8e010))
* Update google.core.version to v2.8.8 ([#777](googleapis/java-shared-dependencies#777)) ([e354fe1](googleapis/java-shared-dependencies@e354fe1))
* Update google.core.version to v2.8.9 ([#784](googleapis/java-shared-dependencies#784)) ([a9847d7](googleapis/java-shared-dependencies@a9847d7))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: dns Issues related to the Cloud DNS API. cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants