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

StackOverflowError mocking our functional objects #890

Closed
mziccard opened this issue Apr 11, 2016 · 1 comment
Closed

StackOverflowError mocking our functional objects #890

mziccard opened this issue Apr 11, 2016 · 1 comment
Assignees
Labels
type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.

Comments

@mziccard
Copy link
Contributor

There seem to be a problem with EasyMock (as well as Mockito) when mocking classes that have a final equals() method that in its body calls other methods on the current object.
This results in a StackOverflowError as the following:

java.lang.StackOverflowError
    at java.util.ArrayList$Itr.<init>(ArrayList.java:820)
    at java.util.ArrayList$Itr.<init>(ArrayList.java:820)
    at java.util.ArrayList.iterator(ArrayList.java:814)
    at org.easymock.internal.UnorderedBehavior.addActual(UnorderedBehavior.java:50)
    at org.easymock.internal.MocksBehavior.addActual(MocksBehavior.java:87)
    at org.easymock.internal.ReplayState.invokeInner(ReplayState.java:58)
    at org.easymock.internal.ReplayState.invoke(ReplayState.java:46)
    at org.easymock.internal.MockInvocationHandler.invoke(MockInvocationHandler.java:40)
    at org.easymock.internal.ObjectMethodsFilter.invoke(ObjectMethodsFilter.java:94)
    at org.easymock.internal.ClassProxyFactory$MockMethodInterceptor.intercept(ClassProxyFactory.java:97)
    at com.google.gcloud.storage.Blob$$EnhancerByCGLIB$$aa59c155.toPb(<generated>)
    at com.google.gcloud.storage.Blob.equals(Blob.java:529)
    at org.easymock.internal.ExpectedInvocation.matches(ExpectedInvocation.java:85)
    at org.easymock.internal.UnorderedBehavior.addActual(UnorderedBehavior.java:57)
    at org.easymock.internal.MocksBehavior.addActual(MocksBehavior.java:87)
    at org.easymock.internal.ReplayState.invokeInner(ReplayState.java:58)
    at org.easymock.internal.ReplayState.invoke(ReplayState.java:46)
    at org.easymock.internal.MockInvocationHandler.invoke(MockInvocationHandler.java:40)
    at org.easymock.internal.ObjectMethodsFilter.invoke(ObjectMethodsFilter.java:94)
    at org.easymock.internal.ClassProxyFactory$MockMethodInterceptor.intercept(ClassProxyFactory.java:97)
    at com.google.gcloud.storage.Blob$$EnhancerByCGLIB$$aa59c155.toPb(<generated>)
    at com.google.gcloud.storage.Blob.equals(Blob.java:529)

To overcome this error all final equals methods should first check for "pointer" equality. For instance Blob.equals must become:

@Override
public final boolean equals(Object obj) {
  return this == obj || (obj instanceof Blob && Objects.equals(toPb(), ((Blob) obj).toPb())
      && Objects.equals(options, ((Blob) obj).options));
}

This should be fixed ASAP. Even tough we don't encourage users to mock our objects and provide test helpers to aid testing we don't want them to stumble upon this error.

This issue should remain open until fixed in compute as well.

@mziccard mziccard added type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns. testing labels Apr 11, 2016
@mziccard mziccard self-assigned this Apr 11, 2016
@mziccard
Copy link
Contributor Author

This was fixed in #892

github-actions bot pushed a commit that referenced this issue Jun 21, 2022
…onfig to v1.5.0 (#890)

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

---

### Release Notes

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

### [`v1.5.0`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;150-httpsgithubcomgoogleapisjava-shared-configcomparev140v150-2022-06-10)

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

##### Features

-   add build scripts for native image testing in Java 17 ([#&#8203;1440](https://togithub.com/googleapis/java-shared-config/issues/1440)) ([#&#8203;475](https://togithub.com/googleapis/java-shared-config/issues/475)) ([e4dfc1b](https://togithub.com/googleapis/java-shared-config/commit/e4dfc1ba29295158c78c8fcf94467d2a6a33538a))
-   to produce Java 8 compatible bytecode when using JDK 9+ ([2468276](https://togithub.com/googleapis/java-shared-config/commit/2468276145cdfe1ca911b52f765e026e77661a09))

##### Dependencies

-   update surefire.version to v3.0.0-m7 ([bbfe663](https://togithub.com/googleapis/java-shared-config/commit/bbfe66393af3e49612c9c1e4334ba39c133ea1d0))

</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-containeranalysis).
github-actions bot pushed a commit that referenced this issue Jul 6, 2022
…onfig to v1.5.1 (#890)

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

---

### Release Notes

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

### [`v1.5.1`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;151-httpsgithubcomgoogleapisjava-shared-configcomparev150v151-2022-06-30)

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

##### Dependencies

-   update dependency org.graalvm.buildtools:junit-platform-native to v0.9.12 ([#&#8203;482](https://togithub.com/googleapis/java-shared-config/issues/482)) ([fbfc6dc](https://togithub.com/googleapis/java-shared-config/commit/fbfc6dc1329faaead3a3114c8599d9267722e7f0))
-   update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.12 ([#&#8203;483](https://togithub.com/googleapis/java-shared-config/issues/483)) ([336cb78](https://togithub.com/googleapis/java-shared-config/commit/336cb7827b36583228c9e2b85871ae72f4c55975))

</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-errorreporting).
github-actions bot pushed a commit that referenced this issue Jul 20, 2022
…plugin to v3 (#890)

[![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/) | `2.8.2` -> `3.0.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/compatibility-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/confidence-slim/2.8.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**: 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-dataproc).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
github-actions bot pushed a commit that referenced this issue Jul 25, 2022
🤖 I have created a release *beep* *boop*
---


## [3.3.3](googleapis/java-monitoring@v3.3.2...v3.3.3) (2022-07-22)


### Dependencies

* update dependency com.google.protobuf:protobuf-java-util to v3.21.3 ([#889](googleapis/java-monitoring#889)) ([942d8db](googleapis/java-monitoring@942d8db))

---
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 issue Aug 18, 2022
…0.11 (#890)

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

---

### Release Notes

<details>
<summary>googleapis/java-pubsub</summary>

### [`v1.120.11`](https://togithub.com/googleapis/java-pubsub/blob/HEAD/CHANGELOG.md#&#8203;112011-httpsgithubcomgoogleapisjava-pubsubcomparev112010v112011-2022-08-06)

[Compare Source](https://togithub.com/googleapis/java-pubsub/compare/v1.120.10...v1.120.11)

##### Bug Fixes

-   fix dependency declaration to properly include runtime scope ([#&#8203;1238](https://togithub.com/googleapis/java-pubsub/issues/1238)) ([e9a4ce5](https://togithub.com/googleapis/java-pubsub/commit/e9a4ce59fdf3773fa41698579984af525a277f38))

##### Dependencies

-   update dependency com.google.cloud:google-cloud-bigquery to v2.14.2 ([#&#8203;1235](https://togithub.com/googleapis/java-pubsub/issues/1235)) ([e2af6c3](https://togithub.com/googleapis/java-pubsub/commit/e2af6c358ef9e7a0d35179bc4a7c793bbc6a0960))
-   update dependency com.google.cloud:google-cloud-bigquery to v2.14.3 ([#&#8203;1236](https://togithub.com/googleapis/java-pubsub/issues/1236)) ([399e8d7](https://togithub.com/googleapis/java-pubsub/commit/399e8d71d5b4aed2fa48e8cba2dce963d25693e3))

</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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjMyLjE1NC40In0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
…cies to v3.0.3 (#890)

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

---

### Release Notes

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

### [`v3.0.3`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;303-httpsgithubcomgoogleapisjava-shared-dependenciescomparev302v303-2022-09-14)

[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v3.0.2...v3.0.3)

##### Dependencies

-   Google-cloud-core 2.8.12 ([#&#8203;799](https://togithub.com/googleapis/java-shared-dependencies/issues/799)) ([1b3db8d](https://togithub.com/googleapis/java-shared-dependencies/commit/1b3db8d1e17c49ebae79fc96164fa9058e1df6e3))
-   Moving gson to first-party-dependencies ([#&#8203;800](https://togithub.com/googleapis/java-shared-dependencies/issues/800)) ([a41fcc1](https://togithub.com/googleapis/java-shared-dependencies/commit/a41fcc11d32e02e5af2837561792e3919f6d4b3f))
-   Update dependency com.google.protobuf:protobuf-bom to v3.21.6 ([#&#8203;797](https://togithub.com/googleapis/java-shared-dependencies/issues/797)) ([bc5fdc9](https://togithub.com/googleapis/java-shared-dependencies/commit/bc5fdc9b3af7973c28f063a9ac156fe2af562814))
-   Update gax.version to v2.19.1 ([#&#8203;798](https://togithub.com/googleapis/java-shared-dependencies/issues/798)) ([84e5487](https://togithub.com/googleapis/java-shared-dependencies/commit/84e5487b2e3dce4bb60badecebde788c3cb702b8))
-   Update google.core.version to v2.8.11 ([#&#8203;793](https://togithub.com/googleapis/java-shared-dependencies/issues/793)) ([63c1297](https://togithub.com/googleapis/java-shared-dependencies/commit/63c129722aa0b821031ff5b4c11004adf7b12044))

</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-language).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTUuNSIsInVwZGF0ZWRJblZlciI6IjMyLjE5NS41In0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.4](googleapis/java-language@v2.3.3...v2.3.4) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#890](googleapis/java-language#890)) ([408f8cb](googleapis/java-language@408f8cb))

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


## [2.10.0](googleapis/java-securitycenter@v2.9.0...v2.10.0) (2022-09-16)


### Features

* Adding database access information, such as queries field to a finding. A database may be a sub-resource of an instance (as in the case of CloudSQL instances or Cloud Spanner instances), or the database instance itself ([#902](googleapis/java-securitycenter#902)) ([f8ab964](googleapis/java-securitycenter@f8ab964))
* Adding uris to indicator of compromise (IOC) field ([#900](googleapis/java-securitycenter#900)) ([b2c7dfd](googleapis/java-securitycenter@b2c7dfd))
* ServiceAccountKeyName, serviceAccountDelegationInfo, and principalSubject attributes added to the existing access attribute. These new attributes provide additional context about the principals that are associated with the finding ([#905](googleapis/java-securitycenter#905)) ([de80cec](googleapis/java-securitycenter@de80cec))


### Dependencies

* Update dependency com.google.cloud:google-cloud-bigquery to v2.14.6 ([#891](googleapis/java-securitycenter#891)) ([83e5570](googleapis/java-securitycenter@83e5570))
* Update dependency com.google.cloud:google-cloud-bigquery to v2.14.7 ([#903](googleapis/java-securitycenter#903)) ([6566bd8](googleapis/java-securitycenter@6566bd8))
* Update dependency com.google.cloud:google-cloud-bigquery to v2.15.0 ([#906](googleapis/java-securitycenter#906)) ([5a6663f](googleapis/java-securitycenter@5a6663f))
* Update dependency com.google.cloud:google-cloud-bigquery to v2.16.0 ([#912](googleapis/java-securitycenter#912)) ([f435c3c](googleapis/java-securitycenter@f435c3c))
* Update dependency com.google.cloud:google-cloud-pubsub to v1.120.11 ([#890](googleapis/java-securitycenter#890)) ([6cf0475](googleapis/java-securitycenter@6cf0475))
* Update dependency com.google.cloud:google-cloud-pubsub to v1.120.12 ([#899](googleapis/java-securitycenter#899)) ([9a2a51d](googleapis/java-securitycenter@9a2a51d))
* Update dependency com.google.cloud:google-cloud-pubsub to v1.120.13 ([#904](googleapis/java-securitycenter#904)) ([3ef7b23](googleapis/java-securitycenter@3ef7b23))
* Update dependency com.google.cloud:google-cloud-pubsub to v1.120.14 ([#911](googleapis/java-securitycenter#911)) ([9efb441](googleapis/java-securitycenter@9efb441))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#909](googleapis/java-securitycenter#909)) ([48a7a56](googleapis/java-securitycenter@48a7a56))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#916](googleapis/java-securitycenter#916)) ([5e45905](googleapis/java-securitycenter@5e45905))
* Update dependency com.google.protobuf:protobuf-java-util to v3.21.5 ([#894](googleapis/java-securitycenter#894)) ([3eaa056](googleapis/java-securitycenter@3eaa056))

---
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 issue Sep 30, 2022
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [protobuf](https://developers.google.com/protocol-buffers/) | `==3.19.5` -> `==4.21.7` | [![age](https://badges.renovateapi.com/packages/pypi/protobuf/4.21.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/protobuf/4.21.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/protobuf/4.21.7/compatibility-slim/3.19.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/protobuf/4.21.7/confidence-slim/3.19.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 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-datacatalog).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
github-actions bot pushed a commit that referenced this issue 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 issue 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 to renovate-bot/google-cloud-java that referenced this issue Oct 5, 2022
🤖 I have created a release *beep* *boop*
---


## [1.9.5](https://togithub.com/googleapis/java-datacatalog/compare/v1.9.4...v1.9.5) (2022-10-05)


### Dependencies

* Update dependency cachetools to v5 ([googleapis#889](https://togithub.com/googleapis/java-datacatalog/issues/889)) ([4d6efff](https://togithub.com/googleapis/java-datacatalog/commit/4d6efffd8079c09af28d9c35638fe95f330015ce))
* Update dependency certifi to v2022.9.24 ([googleapis#869](https://togithub.com/googleapis/java-datacatalog/issues/869)) ([9b0afee](https://togithub.com/googleapis/java-datacatalog/commit/9b0afee7393248f7443f7988f078463dfc7b21e9))
* Update dependency click to v8.1.3 ([googleapis#874](https://togithub.com/googleapis/java-datacatalog/issues/874)) ([8a2eb58](https://togithub.com/googleapis/java-datacatalog/commit/8a2eb588f153bc21aeb590f5023e1db62ac1b836))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([googleapis#897](https://togithub.com/googleapis/java-datacatalog/issues/897)) ([633c230](https://togithub.com/googleapis/java-datacatalog/commit/633c23018294abef9007ce7b9add29fcf034bbea))
* Update dependency com.google.protobuf:protobuf-java-util to v3.21.6 ([googleapis#860](https://togithub.com/googleapis/java-datacatalog/issues/860)) ([727783b](https://togithub.com/googleapis/java-datacatalog/commit/727783b4629416d9026d81a5e2abf89271cf8502))
* Update dependency com.google.protobuf:protobuf-java-util to v3.21.7 ([googleapis#891](https://togithub.com/googleapis/java-datacatalog/issues/891)) ([6afd2d7](https://togithub.com/googleapis/java-datacatalog/commit/6afd2d71e5329270bd936c7b7bee613bda566b6d))
* Update dependency google-api-core to v2.10.1 ([googleapis#875](https://togithub.com/googleapis/java-datacatalog/issues/875)) ([a022e0b](https://togithub.com/googleapis/java-datacatalog/commit/a022e0b9711601a0e2a6eddca7bccd036929fd71))
* Update dependency googleapis-common-protos to v1.56.4 ([googleapis#872](https://togithub.com/googleapis/java-datacatalog/issues/872)) ([76d8ec5](https://togithub.com/googleapis/java-datacatalog/commit/76d8ec5e7b9f8ee49a47ba537682e59c38a51cbe))
* Update dependency jeepney to v0.8.0 ([googleapis#880](https://togithub.com/googleapis/java-datacatalog/issues/880)) ([e28868e](https://togithub.com/googleapis/java-datacatalog/commit/e28868e822e4c373c8c20057afd06553aeebeb5d))
* Update dependency protobuf to v3.20.2 ([googleapis#884](https://togithub.com/googleapis/java-datacatalog/issues/884)) ([287a3db](https://togithub.com/googleapis/java-datacatalog/commit/287a3db22a88804b159cde722fb75e086efde3c9))
* Update dependency protobuf to v4 ([googleapis#890](https://togithub.com/googleapis/java-datacatalog/issues/890)) ([13080bb](https://togithub.com/googleapis/java-datacatalog/commit/13080bbab0046e0a3e8990dc576324b4db40c61f))
* Update dependency pyjwt to v2.5.0 ([googleapis#885](https://togithub.com/googleapis/java-datacatalog/issues/885)) ([ebc08a3](https://togithub.com/googleapis/java-datacatalog/commit/ebc08a3bba9960c474106618d678233302c25f83))
* Update dependency zipp to v3.8.1 ([googleapis#888](https://togithub.com/googleapis/java-datacatalog/issues/888)) ([1ec57fb](https://togithub.com/googleapis/java-datacatalog/commit/1ec57fb89271f6cc0299138ca78dd827c2d5221c))

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

[![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-talent).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC45LjIiLCJ1cGRhdGVkSW5WZXIiOiIzNC45LjIifQ==-->
suztomo pushed a commit that referenced this issue Feb 1, 2023
🤖 I have created a release *beep* *boop*
---


## [2.8.6](googleapis/java-core@v2.8.5...v2.8.6) (2022-08-02)


### Dependencies

* update dependency com.google.api:gax-bom to v2.18.7 ([#890](googleapis/java-core#890)) ([9412848](googleapis/java-core@9412848))
* update dependency com.google.code.gson:gson to v2.9.1 ([#888](googleapis/java-core#888)) ([ea6f1a2](googleapis/java-core@ea6f1a2))

---
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 issue Feb 1, 2023
[![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-core](https://togithub.com/googleapis/java-core) | `2.8.23` -> `2.8.24` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.24/compatibility-slim/2.8.23)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.24/confidence-slim/2.8.23)](https://docs.renovatebot.com/merge-confidence/) |
| [com.google.cloud:google-cloud-core-bom](https://togithub.com/googleapis/java-core) | `2.8.23` -> `2.8.24` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core-bom/2.8.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core-bom/2.8.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core-bom/2.8.24/compatibility-slim/2.8.23)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core-bom/2.8.24/confidence-slim/2.8.23)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-core</summary>

### [`v2.8.24`](https://togithub.com/googleapis/java-core/blob/HEAD/CHANGELOG.md#&#8203;2824-httpsgithubcomgoogleapisjava-corecomparev2823v2824-2022-10-26)

[Compare Source](https://togithub.com/googleapis/java-core/compare/v2.8.23...v2.8.24)

##### Dependencies

-   Update dependency com.google.api.grpc:proto-google-iam-v1 to v1.6.6 ([#&#8203;994](https://togithub.com/googleapis/java-core/issues/994)) ([8a7b330](https://togithub.com/googleapis/java-core/commit/8a7b3304f714261501c64180abfc94edaa86d9d4))
-   Update dependency com.google.code.gson:gson to v2.10 ([#&#8203;995](https://togithub.com/googleapis/java-core/issues/995)) ([5b947a2](https://togithub.com/googleapis/java-core/commit/5b947a2486979ba26175753fcf054ba3d4904b35))

</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 these updates 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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xLjUiLCJ1cGRhdGVkSW5WZXIiOiIzNC4yLjMifQ==-->
suztomo pushed a commit that referenced this issue Feb 1, 2023
🤖 I have created a release *beep* *boop*
---


## [3.0.6](https://togithub.com/googleapis/java-shared-dependencies/compare/v3.0.5...v3.0.6) (2022-11-07)


### Dependencies

* Update dependency com.fasterxml.jackson:jackson-bom to v2.14.0 ([#901](https://togithub.com/googleapis/java-shared-dependencies/issues/901)) ([4e3d116](https://togithub.com/googleapis/java-shared-dependencies/commit/4e3d1162403a236443c8dbb00cbe23bd6c6c225a))
* Update dependency com.google.api-client:google-api-client-bom to v2.0.1 ([#899](https://togithub.com/googleapis/java-shared-dependencies/issues/899)) ([d2baed5](https://togithub.com/googleapis/java-shared-dependencies/commit/d2baed57f798b7c153678ce87bd486f9808dbc46))
* Update dependency com.google.api:api-common to v2.2.2 ([#892](https://togithub.com/googleapis/java-shared-dependencies/issues/892)) ([292cd39](https://togithub.com/googleapis/java-shared-dependencies/commit/292cd39d3b5fca9be15621b5e483e3b6386ec2ef))
* Update dependency com.google.cloud:grpc-gcp to v1.3.1 ([#884](https://togithub.com/googleapis/java-shared-dependencies/issues/884)) ([f22fce6](https://togithub.com/googleapis/java-shared-dependencies/commit/f22fce69481f0ecec1c5438b9f1a938db074cf4c))
* Update dependency com.google.code.gson:gson to v2.10 ([#887](https://togithub.com/googleapis/java-shared-dependencies/issues/887)) ([cbe8973](https://togithub.com/googleapis/java-shared-dependencies/commit/cbe8973436da3c34be00d0742b3db11af106f585))
* Update dependency com.google.http-client:google-http-client-bom to v1.42.3 ([#893](https://togithub.com/googleapis/java-shared-dependencies/issues/893)) ([21e7515](https://togithub.com/googleapis/java-shared-dependencies/commit/21e7515d351cf8a53cb7590267231930bedfaf88))
* Update dependency com.google.protobuf:protobuf-bom to v3.21.9 ([#889](https://togithub.com/googleapis/java-shared-dependencies/issues/889)) ([30effe6](https://togithub.com/googleapis/java-shared-dependencies/commit/30effe65dc103a694fab5bf9537e96a0def0d4d9))
* Update dependency io.grpc:grpc-bom to v1.50.2 ([#878](https://togithub.com/googleapis/java-shared-dependencies/issues/878)) ([0e155c4](https://togithub.com/googleapis/java-shared-dependencies/commit/0e155c476ee8280921d234286eed8732997dd2a6))
* Update dependency org.checkerframework:checker-qual to v3.27.0 ([#896](https://togithub.com/googleapis/java-shared-dependencies/issues/896)) ([f6c1155](https://togithub.com/googleapis/java-shared-dependencies/commit/f6c1155bbd0a01b6a25948f7c6117a50fd85e9de))
* Update dependency org.threeten:threetenbp to v1.6.4 ([#894](https://togithub.com/googleapis/java-shared-dependencies/issues/894)) ([478ae53](https://togithub.com/googleapis/java-shared-dependencies/commit/478ae530c8140d92f4e083c5e06ecd6f4f228f05))
* Update gax.version to v2.19.5 ([#903](https://togithub.com/googleapis/java-shared-dependencies/issues/903)) ([ba1ae38](https://togithub.com/googleapis/java-shared-dependencies/commit/ba1ae389185f2fffaec10cf69ad6644389af9571))
* Update google.common-protos.version to v2.10.0 ([#900](https://togithub.com/googleapis/java-shared-dependencies/issues/900)) ([46aeddf](https://togithub.com/googleapis/java-shared-dependencies/commit/46aeddfe2ce2325ab8ae9a6654c500f847855acb))
* Update google.core.version to v2.8.23 ([#885](https://togithub.com/googleapis/java-shared-dependencies/issues/885)) ([1092bbe](https://togithub.com/googleapis/java-shared-dependencies/commit/1092bbe5f7a9d84dc1013f8a3c8e62e5c26ab2ab))
* Update google.core.version to v2.8.24 ([#890](https://togithub.com/googleapis/java-shared-dependencies/issues/890)) ([70791a5](https://togithub.com/googleapis/java-shared-dependencies/commit/70791a5ce678c5c7ebbb70e1527cab69587307ec))
* Update google.core.version to v2.8.27 ([#902](https://togithub.com/googleapis/java-shared-dependencies/issues/902)) ([a53f404](https://togithub.com/googleapis/java-shared-dependencies/commit/a53f404799ac6fd4e3005ea781f74a245fd7b7c7))
* Update iam.version to v1.6.6 ([#886](https://togithub.com/googleapis/java-shared-dependencies/issues/886)) ([122cf9d](https://togithub.com/googleapis/java-shared-dependencies/commit/122cf9d01a73d78768544b0638efc8cca995fd87))
* Update iam.version to v1.6.7 ([#895](https://togithub.com/googleapis/java-shared-dependencies/issues/895)) ([feda2e7](https://togithub.com/googleapis/java-shared-dependencies/commit/feda2e7d2d9026dffcdfe71f443199505e5bb215))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.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
type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Projects
None yet
Development

No branches or pull requests

1 participant