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

Marked exceptions for create and deletes in DNS as non-idempotent. #883

Merged
merged 5 commits into from Apr 14, 2016

Conversation

mderka
Copy link

@mderka mderka commented Apr 8, 2016

Fixes #808, relates to #816 .

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Apr 8, 2016
@coveralls
Copy link

Coverage Status

Coverage remained the same at 85.597% when pulling 35d9aee on mderka:sockettimeout into af18b50 on GoogleCloudPlatform:master.

@mderka mderka added the do not merge Indicates a pull request not ready for merge, due to either quality or timing. label Apr 9, 2016
@mderka
Copy link
Author

mderka commented Apr 9, 2016

@aozarov PTAL

@mderka mderka removed the do not merge Indicates a pull request not ready for merge, due to either quality or timing. label Apr 9, 2016
@coveralls
Copy link

Coverage Status

Coverage increased (+0.006%) to 85.603% when pulling ae3e446 on mderka:sockettimeout into af18b50 on GoogleCloudPlatform:master.

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.004%) to 85.593% when pulling ae3e446 on mderka:sockettimeout into af18b50 on GoogleCloudPlatform:master.

&& (retryableError.reason() == null || retryableError.reason().equals(this.reason()))) {
boolean match = (retryableError.code() == null || retryableError.code().equals(this.code()))
&& (retryableError.reason() == null || retryableError.reason().equals(this.reason()));
if (match && idempotent || match && retryableError.rejected()) {

This comment was marked as spam.

This comment was marked as spam.

@aozarov
Copy link
Contributor

aozarov commented Apr 9, 2016

Looks good! Few comments/suggestions for further cleanup.

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.03%) to 85.563% when pulling 2d198d0 on mderka:sockettimeout into af18b50 on GoogleCloudPlatform:master.

@mderka
Copy link
Author

mderka commented Apr 11, 2016

All done. PTAL

this(code, reason, false);
}

public Error(Integer code, String reason, boolean rejected) {

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

@garrettjonesgoogle
Copy link
Member

Hi,

I wanted to remark that create and delete are actually idempotent, and changing them to non-idempotent miscategorizes them. Create is idempotent because after the first or subsequent calls, the result is already "X exists"; Delete is idempotent because after the first or subsequent calls, the result is "X does not exist". The success or error returned to the client is a separate issue from the idempotency of the operation on the data.

Here is an alternative that is slightly more complex, but would probably do what the client expects:

  • On the first call, if the result is ALREADY_EXISTS, then fail with that.
  • On the first call, if the result is a different but retryable error code, then do a retry.
  • On the retry, if the result is ALREADY_EXISTS, then return success. (The assumption is that the first failure happened after successful creation on the server)

The only case that might be odd is if there is a failure to contact the service, but the entity was already created before, then the result will be a success even though per service semantics it should return ALREADY_EXISTS. I would imagine this should be pretty uncommon though, and should probably only happen when the entity was only very recently created.

@@ -138,7 +146,7 @@ public BaseServiceException(int code, String message, String reason, boolean ide
this.code = code;
this.reason = reason;
this.idempotent = idempotent;
this.retryable = idempotent && new Error(code, reason).isRetryable(retryableErrors());
this.retryable = new Error(code, reason).isRetryable(idempotent, retryableErrors());

This comment was marked as spam.

This comment was marked as spam.

@aozarov
Copy link
Contributor

aozarov commented Apr 14, 2016

@garrettjonesgoogle I agree conceptually with what you are suggesting (see my other comment). However for create I am not convinced that it is OK to hide from the user the fact that his "Create" was actually successful (it was not there before) or that it was already created (maybe with different values then provided).

I don't think that "The assumption is that the first failure happened after successful creation on the server" is always correct (it could have been created by a parallel call).

@garrettjonesgoogle
Copy link
Member

@aozarov Good point about the entity possibly being created with different values than the current request. One option there is when the situation is ambiguous, then do a get call to the server to get the existing entity, and determine if the values are the same, and report back appropriately. It's definitely higher overhead and more complex (you will have made a minimum of 3 RPC calls - 1 failed create, one create resulting in already_exists, and 1 get call), but it would be more correct.

@mderka
Copy link
Author

mderka commented Apr 14, 2016

I created issue #924 to continue with the discussion.

I removed the conflicts and incorporated the comments. Ready to proceed.

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.004%) to 85.566% when pulling f81a293 on mderka:sockettimeout into 13ab36f on GoogleCloudPlatform:master.

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.02%) to 85.554% when pulling 2a11dbf on mderka:sockettimeout into 13ab36f on GoogleCloudPlatform:master.

@aozarov aozarov merged commit fd740ea into googleapis:master Apr 14, 2016
github-actions bot pushed a commit that referenced this pull request Jul 6, 2022
* feat: Enable REST transport for most of Java and Go clients

PiperOrigin-RevId: 456641589

Source-Link: googleapis/googleapis@8a251f5

Source-Link: googleapis/googleapis-gen@4ca52a5
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGNhNTJhNTI5Y2YwMTMwOGQ5NzE0OTUwZWRmZmJlYTM1NjBjZmJkYiJ9

* 🦉 Updates from OwlBot post-processor

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

* deps: adding gax-httpjson

* 🦉 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>
Co-authored-by: Tomo Suzuki <suztomo@google.com>
github-actions bot pushed a commit that referenced this pull request Jul 14, 2022
…883)

* chore(deps): update dependency com.google.cloud:libraries-bom to v26

* 🦉 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>
github-actions bot pushed a commit that referenced this pull request Jul 14, 2022
Source-Link: googleapis/synthtool@7336562
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
github-actions bot pushed a commit that referenced this pull request Jul 14, 2022
🤖 I have created a release *beep* *boop*
---


## [3.3.2](googleapis/java-monitoring@v3.3.1...v3.3.2) (2022-07-13)


### Bug Fixes

* enable longpaths support for windows test ([#1485](https://github.com/googleapis/java-monitoring/issues/1485)) ([#883](googleapis/java-monitoring#883)) ([0aa8d72](googleapis/java-monitoring@0aa8d72))

---
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 9, 2022
…onfig to v1.5.3 (#883)

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

---

### Release Notes

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

### [`v1.5.3`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;153-httpsgithubcomgoogleapisjava-shared-configcomparev152v153-2022-07-27)

[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.2...v1.5.3)

##### Dependencies

-   update dependency org.junit.vintage:junit-vintage-engine to v5.9.0 ([#&#8203;497](https://togithub.com/googleapis/java-shared-config/issues/497)) ([1fc6ab4](https://togithub.com/googleapis/java-shared-config/commit/1fc6ab445624cd4f9c8b161d109f346a9e5ed09a))
-   Update doclet to latest version 1.6.0 ([38fb7c3](https://togithub.com/googleapis/java-shared-config/commit/38fb7c3957fb6c9b2da10f9e463cc93a8b80a3a4))

### [`v1.5.2`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;152-httpsgithubcomgoogleapisjava-shared-configcomparev151v152-2022-07-25)

[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.1...v1.5.2)

##### Dependencies

-   update dependency com.puppycrawl.tools:checkstyle to v10 ([#&#8203;435](https://togithub.com/googleapis/java-shared-config/issues/435)) ([bfc8ce1](https://togithub.com/googleapis/java-shared-config/commit/bfc8ce1deca6292147d002d3afe22a09840aa5d6))
-   update dependency org.graalvm.buildtools:junit-platform-native to v0.9.13 ([#&#8203;488](https://togithub.com/googleapis/java-shared-config/issues/488)) ([39b91ee](https://togithub.com/googleapis/java-shared-config/commit/39b91ee1283f0a5fbbe63e8bfd1ec97ab4ab377e))
-   update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.13 ([#&#8203;489](https://togithub.com/googleapis/java-shared-config/issues/489)) ([cc3bcfa](https://togithub.com/googleapis/java-shared-config/commit/cc3bcfa2d6717441a8d5b5048fa78c2cf7aabf2b))

</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-securitycenter).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this pull request Sep 15, 2022
…1.1 (#883)

[![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/googleapis/java-cloud-bom)) | `26.1.0` -> `26.1.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/compatibility-slim/26.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/confidence-slim/26.1.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-language).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xODQuMiIsInVwZGF0ZWRJblZlciI6IjMyLjE4NC4yIn0=-->
github-actions bot pushed a commit that referenced this pull request Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [3.0.7](googleapis/java-recaptchaenterprise@v3.0.6...v3.0.7) (2022-09-08)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#882](googleapis/java-recaptchaenterprise#882)) ([26e9931](googleapis/java-recaptchaenterprise@26e9931))

---
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 5, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.7](https://togithub.com/googleapis/java-trace/compare/v2.3.6...v2.3.7) (2022-10-04)


### Dependencies

* Update dependency cachetools to v5 ([#894](https://togithub.com/googleapis/java-trace/issues/894)) ([fd76bb1](https://togithub.com/googleapis/java-trace/commit/fd76bb19f78a9256c0c6c594820ba8dd889811c6))
* Update dependency click to v8.1.3 ([#878](https://togithub.com/googleapis/java-trace/issues/878)) ([d231929](https://togithub.com/googleapis/java-trace/commit/d2319291b70b4ba679a07709dde13bd9ba6405c4))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#898](https://togithub.com/googleapis/java-trace/issues/898)) ([73d1646](https://togithub.com/googleapis/java-trace/commit/73d16469526e7eba576b5423b8d1274fe32b95ed))
* Update dependency google-auth to v2.11.1 ([#876](https://togithub.com/googleapis/java-trace/issues/876)) ([b5b73ed](https://togithub.com/googleapis/java-trace/commit/b5b73edee4484cae6e369cd7544bb8458bd563b2))
* Update dependency google-auth to v2.12.0 ([#885](https://togithub.com/googleapis/java-trace/issues/885)) ([3f6cce2](https://togithub.com/googleapis/java-trace/commit/3f6cce2496b937a16e8f487ae4e0334f28fc0040))
* Update dependency google-crc32c to v1.5.0 ([#881](https://togithub.com/googleapis/java-trace/issues/881)) ([94d85d5](https://togithub.com/googleapis/java-trace/commit/94d85d5ad27f19297fd78f7d40b8b324b178dcb6))
* Update dependency googleapis-common-protos to v1.56.4 ([#877](https://togithub.com/googleapis/java-trace/issues/877)) ([b5d73d7](https://togithub.com/googleapis/java-trace/commit/b5d73d72861c3cd2fc877121ec9abbe35188b93a))
* Update dependency jeepney to v0.8.0 ([#883](https://togithub.com/googleapis/java-trace/issues/883)) ([1df907a](https://togithub.com/googleapis/java-trace/commit/1df907a555c1948395489f0bcb03790db395670a))
* Update dependency jinja2 to v3.1.2 ([#886](https://togithub.com/googleapis/java-trace/issues/886)) ([62e5db7](https://togithub.com/googleapis/java-trace/commit/62e5db7da3e636106f40007b439c0235a41da83a))
* Update dependency keyring to v23.9.3 ([#887](https://togithub.com/googleapis/java-trace/issues/887)) ([61d04cb](https://togithub.com/googleapis/java-trace/commit/61d04cb86031ebec8df67917ad641eed8848d6a3))
* Update dependency markupsafe to v2.1.1 ([#888](https://togithub.com/googleapis/java-trace/issues/888)) ([a4ac967](https://togithub.com/googleapis/java-trace/commit/a4ac9677f0ed089f007af87503a727159e997c0b))
* Update dependency protobuf to v3.20.2 ([#889](https://togithub.com/googleapis/java-trace/issues/889)) ([0742a52](https://togithub.com/googleapis/java-trace/commit/0742a52f9b34755a53e4f96ee26b28912044ac87))
* Update dependency protobuf to v4 ([#895](https://togithub.com/googleapis/java-trace/issues/895)) ([3f00e07](https://togithub.com/googleapis/java-trace/commit/3f00e0731e5a1625cb74fcce1afcacec0b335383))
* Update dependency pyjwt to v2.5.0 ([#890](https://togithub.com/googleapis/java-trace/issues/890)) ([b352a09](https://togithub.com/googleapis/java-trace/commit/b352a09e330ba6a1945ad772d13fc5effa36c59e))
* Update dependency requests to v2.28.1 ([#891](https://togithub.com/googleapis/java-trace/issues/891)) ([4476dcf](https://togithub.com/googleapis/java-trace/commit/4476dcfc0984185502ac82473b8211f911aea254))
* Update dependency typing-extensions to v4.3.0 ([#892](https://togithub.com/googleapis/java-trace/issues/892)) ([2f78186](https://togithub.com/googleapis/java-trace/commit/2f78186b704e48d8027ed32b86d5752105fa2de8))
* Update dependency zipp to v3.8.1 ([#893](https://togithub.com/googleapis/java-trace/issues/893)) ([41e1192](https://togithub.com/googleapis/java-trace/commit/41e11923590c210b3837542ea15401885b52e850))

---
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
🤖 I have created a release *beep* *boop*
---


## [2.6.8](https://togithub.com/googleapis/java-kms/compare/v2.6.7...v2.6.8) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#868](https://togithub.com/googleapis/java-kms/issues/868)) ([15aa78b](https://togithub.com/googleapis/java-kms/commit/15aa78b96591e1af3d8df0f68f931866d1c57cdf))
* Update dependency charset-normalizer to v2.1.1 ([#872](https://togithub.com/googleapis/java-kms/issues/872)) ([eefde67](https://togithub.com/googleapis/java-kms/commit/eefde67472fcc22e5aa88e621ae854cad97a2564))
* Update dependency click to v8.1.3 ([#873](https://togithub.com/googleapis/java-kms/issues/873)) ([984cf8c](https://togithub.com/googleapis/java-kms/commit/984cf8c164960a91b22dd7c216262b73bd2629cf))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#894](https://togithub.com/googleapis/java-kms/issues/894)) ([cd63d9b](https://togithub.com/googleapis/java-kms/commit/cd63d9b0422427d1cfb6025fa7a598ebb73433b6))
* Update dependency com.google.protobuf:protobuf-java-util to v3.21.7 ([#892](https://togithub.com/googleapis/java-kms/issues/892)) ([aab16df](https://togithub.com/googleapis/java-kms/commit/aab16dfb84796db09a5a6fce969d40ae50e33236))
* Update dependency gcp-releasetool to v1.8.8 ([#869](https://togithub.com/googleapis/java-kms/issues/869)) ([f7b2ec1](https://togithub.com/googleapis/java-kms/commit/f7b2ec14a266f67b76cf2bfc710e3c89bfab9b1a))
* Update dependency google-api-core to v2.10.1 ([#874](https://togithub.com/googleapis/java-kms/issues/874)) ([0eff788](https://togithub.com/googleapis/java-kms/commit/0eff788116ee07b259c682e8243acb3dbc40a2ef))
* Update dependency google-cloud-core to v2.3.2 ([#870](https://togithub.com/googleapis/java-kms/issues/870)) ([00fd66e](https://togithub.com/googleapis/java-kms/commit/00fd66e2d86beb32c83b7f8f5659840b964b6e76))
* Update dependency google-cloud-storage to v2.5.0 ([#876](https://togithub.com/googleapis/java-kms/issues/876)) ([3ab4bdc](https://togithub.com/googleapis/java-kms/commit/3ab4bdc35468a921db44a359c453cb7c9ee1b565))
* Update dependency google-crc32c to v1.5.0 ([#877](https://togithub.com/googleapis/java-kms/issues/877)) ([dbbca81](https://togithub.com/googleapis/java-kms/commit/dbbca815cc5f04df1d6f1d41976e86624d4b2c28))
* Update dependency googleapis-common-protos to v1.56.4 ([#871](https://togithub.com/googleapis/java-kms/issues/871)) ([f146017](https://togithub.com/googleapis/java-kms/commit/f1460171967a2138cd1de1e14a8101e671d23e42))
* Update dependency importlib-metadata to v4.12.0 ([#886](https://togithub.com/googleapis/java-kms/issues/886)) ([7783160](https://togithub.com/googleapis/java-kms/commit/7783160bebb8922c50fe1c4f365497a6eab90b42))
* Update dependency jeepney to v0.8.0 ([#887](https://togithub.com/googleapis/java-kms/issues/887)) ([da6b14a](https://togithub.com/googleapis/java-kms/commit/da6b14ad3d1df84042f677d651157fc6e6a14380))
* Update dependency jinja2 to v3.1.2 ([#888](https://togithub.com/googleapis/java-kms/issues/888)) ([40bc730](https://togithub.com/googleapis/java-kms/commit/40bc73026f0158df4a29e69110eed863bf3ae587))
* Update dependency keyring to v23.9.3 ([#889](https://togithub.com/googleapis/java-kms/issues/889)) ([6d07f4d](https://togithub.com/googleapis/java-kms/commit/6d07f4d68ee2eb0346c0d5f90620c7e244bc52ae))
* Update dependency pyjwt to v2.5.0 ([#880](https://togithub.com/googleapis/java-kms/issues/880)) ([f686c49](https://togithub.com/googleapis/java-kms/commit/f686c499bec8cb560f54f4cf5d8079a4b93f59d7))
* Update dependency requests to v2.28.1 ([#881](https://togithub.com/googleapis/java-kms/issues/881)) ([3e82aca](https://togithub.com/googleapis/java-kms/commit/3e82aca7ac76821491d5453a09f69ff1e62e51c1))
* Update dependency zipp to v3.8.1 ([#883](https://togithub.com/googleapis/java-kms/issues/883)) ([faf3c84](https://togithub.com/googleapis/java-kms/commit/faf3c845e0c31e08a05254586ae84decc5c10ef3))

---
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
🤖 I have created a release *beep* *boop*
---


### Updating meta-information for bleeding-edge SNAPSHOT release.

---
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 Nov 9, 2022
…1.4 (#883)

[![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/googleapis/java-cloud-bom)) | `26.1.3` -> `26.1.4` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/compatibility-slim/26.1.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/confidence-slim/26.1.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**: 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, 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://app.renovatebot.com/dashboard#github/googleapis/java-scheduler).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC45LjIiLCJ1cGRhdGVkSW5WZXIiOiIzNC45LjIifQ==-->
suztomo pushed a commit that referenced this pull request Feb 1, 2023
…onfig to v1.5.3 (#883)

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

---

### Release Notes

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

### [`v1.5.3`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;153-httpsgithubcomgoogleapisjava-shared-configcomparev152v153-2022-07-27)

[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.2...v1.5.3)

##### Dependencies

-   update dependency org.junit.vintage:junit-vintage-engine to v5.9.0 ([#&#8203;497](https://togithub.com/googleapis/java-shared-config/issues/497)) ([1fc6ab4](https://togithub.com/googleapis/java-shared-config/commit/1fc6ab445624cd4f9c8b161d109f346a9e5ed09a))
-   Update doclet to latest version 1.6.0 ([38fb7c3](https://togithub.com/googleapis/java-shared-config/commit/38fb7c3957fb6c9b2da10f9e463cc93a8b80a3a4))

</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-core).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjEyNy40In0=-->
suztomo pushed a commit that referenced this pull request Feb 1, 2023
chore: remove check for flatten plugin

We have had the check for the flatten-maven-plugin in each
Cloud Java client repository. However, the behavior of the plugin
has been stable and its not each repository's responsibility to
assert the plugin's behavior. A new check is going to be added at
the googleapis/java-shared-config repository to assert the
plugin's behavior when we upgrade its version.
Source-Link: https://togithub.com/googleapis/synthtool/commit/9266ddc3b17fc15f34d2fb88ce8c5f1a4bfe64b0
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:ae72564aa9c368b9ccd96f4af21f87889fd83b9e60635b80844deb5a2ccd08aa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: core 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

6 participants