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

Support AE dev appserver #216

Closed
aozarov opened this issue Oct 6, 2015 · 25 comments
Closed

Support AE dev appserver #216

aozarov opened this issue Oct 6, 2015 · 25 comments
Assignees
Labels
api: core auth priority: p2 Moderately-important priority. Fix may not be included in next release. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design.

Comments

@aozarov
Copy link
Contributor

aozarov commented Oct 6, 2015

We need to understand what is the desired expectation when using gcloud-java on AE dev appserver.

The options are:

  1. use local services
  2. use production services

An issue with option (1) is that currently local dev app services such as Datastore are not accesible via the cloud interface (apiary or gRpc).

An issue with option (2) is that the current implementation detects that we are running on AE and automatically chooses the projectid and authentication mode.
This is nice and convenient in production but is an issue with dev appserver as the AppEngineAuthCredentials is based on AppIdentity which
will not work against production when used by dev appserver.

@aozarov
Copy link
Contributor Author

aozarov commented Oct 6, 2015

/cc @ludoch @pcostell

@aozarov
Copy link
Contributor Author

aozarov commented Oct 6, 2015

Note that it is possible to use gcloud-java with dev appserver by explicitly specifying projectId (if different from the local appid) and using ApplicationDefaultAuthCredentials but I think the goal should be to make the same code work in both modes (prod or dev).

Also, choosing this option seems to omit a warning.

@ludoch
Copy link
Contributor

ludoch commented Oct 6, 2015

When you say AE dev app server, do you refer to the Python Devappserver that can also support Java Web apps for Cloud SDK integration or the current Java GAE SDK classic?

@aozarov
Copy link
Contributor Author

aozarov commented Oct 6, 2015

I think we have the same issue for both types of dev appserver and I think we should provide the same solution for both cases.

@aozarov
Copy link
Contributor Author

aozarov commented Oct 6, 2015

Though if we can only deal with one than I would say the non-classic is more important.

@johnshunfan
Copy link

/cc @lesv @tmatsuo @saturnism

@lesv
Copy link
Contributor

lesv commented Oct 7, 2015

Why won't DefaultAuthCredentials work if gcloud init has been run? That has both user credentials and a project ID.

@saturnism
Copy link

+1 to DefaultAuthCredentials. however iirc, appengine credential is a service account where you can add additional scopes, but gcloud auth login could've been a 3LO oauth2 where the scopes were predetermined during the authorization request. there is no way to add another scope except to re-auth...

@aozarov
Copy link
Contributor Author

aozarov commented Oct 7, 2015

What do you think about the option of routing the calls to local services (fakes/emulators) when we detect that we run in a local dev appserver environment?

@saturnism
Copy link

i feel that's a good default behavior, what if they do want to run it against a remote server?

@aozarov
Copy link
Contributor Author

aozarov commented Oct 9, 2015

I think they should be able to do that by explicitly specifying the production host of the service,
its project id and using ApplicationDefaultAuthCredentials (which works today).

@lesv
Copy link
Contributor

lesv commented Feb 23, 2017

There was supposed to be a conversation about Cloud Fakes / Emulators, not sure of the status of that. I don't think this blocks GA.

@garrettjonesgoogle garrettjonesgoogle added priority: p2 Moderately-important priority. Fix may not be included in next release. testing type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design. and removed triaged for GA labels Jul 18, 2017
@garrettjonesgoogle
Copy link
Member

This issue is a nebulous design issue that I don't think should be tracked in github any more, so I'm going to close it out.

@GabiAxel
Copy link

Where else can this be tracked?

@garrettjonesgoogle
Copy link
Member

@GabiAxel is there a specific scenario you are interested in?

@GabiAxel
Copy link

I am working on an GAE app with one standard service with Objectify and one flexible service with the Datastore Java library with some of the same Datastore entities, and as far as I understand this is pretty much impossible to do locally.

@garrettjonesgoogle
Copy link
Member

@lesv do you have any thoughts on @GabiAxel 's situation?

@lesv
Copy link
Contributor

lesv commented Aug 22, 2017

Yes - different versions of the emulator.

@GabiAxel Do you need to run them both locally at the same time? It might be possible to share the local_db.bin file.

@GabiAxel
Copy link

@lesv yes - both services access the same entities in some flows.

@lesv
Copy link
Contributor

lesv commented Aug 22, 2017

@GabiAxel I think what I'm asking is, could you run your tests serially for example, GAE Std app first using the GAE Datastore emulator, then run your flex app using the Datastore emulator.

The other option is to use a real datastore instance (probably on a test project) and for your Flex app, just write to it directly. On your J8 Std app, use the remote api. You'll need to recognize that you are running locally and setup for it. Using the java system property com.google.appengine.runtime.environment

@GabiAxel
Copy link

@lesv specifically for the tests, if both GAE devserver and the Datastore emulator use the same filesystem storage format, I suppose it could work, but for properly setting up a local environment in which I could run the application, it's not practical to constantly stop and start the devserver/emulator when switching between the cases where I need each of them.

I am familiar with the remote API and it can be used for this case, but it misses the point of a local development environment (I mean the GAE devserver and Datastore emulator exist for the exact reason - being able to run everything locally and not need to use the real Datastore).

I do appreciate the suggestions, but I think a proper solution with a good developer experience should be either a unification of the GAE devserver and Datastore emulator (not necessarily merge them into one product, but something like adding the Datastore REST API to the GAE devserver) or having them both work with the same files simultaneously.

@lesv
Copy link
Contributor

lesv commented Aug 22, 2017

Yep - that's being worked on, I was trying to get you up and running now. I'm meeting with the team tomorrow to discuss.

@GabiAxel
Copy link

@lesv Thanks, much appreciated.

@lesv
Copy link
Contributor

lesv commented Aug 23, 2017

@GabiAxel Can you write me @google.com

@konrad-garus
Copy link

It is a pretty big issue, since it prevents use of many libraries that use the "cloud" APIs. One example is Objectify v6 for the Datastore.

I hate having to choose between having an efficient and rich dev environment, and being able to use some nice libraries.

github-actions bot pushed a commit that referenced this issue Jun 23, 2022
🤖 I have created a release *beep* *boop*
---


## [2.2.1](googleapis/java-shell@v2.2.0...v2.2.1) (2022-06-23)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([#215](googleapis/java-shell#215)) ([ed74e38](googleapis/java-shell@ed74e38))

---
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 to suztomo/google-cloud-java that referenced this issue Jun 29, 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).
github-actions bot pushed a commit that referenced this issue Jul 1, 2022
This PR was generated using Autosynth. 🌈


<details><summary>Log from Synthtool</summary>

```
2021-03-15 15:30:14,935 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-workflows/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-03-15 15:30:17,685 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.

```
</details>

Full log will be available here:
https://source.cloud.google.com/results/invocations/19c991fc-d7ee-495d-9304-6600043be1cc/targets

- [ ] To automatically regenerate this PR, check this box.
github-actions bot pushed a commit that referenced this issue Jul 14, 2022
…onfig to v1.5.1 (#216)

* build(deps): update dependency com.google.cloud:google-cloud-shared-config to v1.5.1

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


## [2.3.2](googleapis/java-tpu@v2.3.1...v2.3.2) (2022-07-13)


### Bug Fixes

* enable longpaths support for windows test ([#1485](https://github.com/googleapis/java-tpu/issues/1485)) ([#216](googleapis/java-tpu#216)) ([cbb6c10](googleapis/java-tpu@cbb6c10))

---
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 Jul 18, 2022
…-info-reports-plugin to v3.4.0 (#216)

* build(deps): update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0

* 🦉 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 issue Aug 9, 2022
…cies to v3 (#216)

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

---

### Release Notes

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

### [`v3.0.1`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;301-httpsgithubcomgoogleapisjava-shared-dependenciescomparev300v301-2022-08-02)

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

##### Dependencies

-   update dependency com.google.code.gson:gson to v2.9.1 ([#&#8203;766](https://togithub.com/googleapis/java-shared-dependencies/issues/766)) ([f7b2b06](https://togithub.com/googleapis/java-shared-dependencies/commit/f7b2b06b80e3e95ff8ab9b1d6a2638ef3069298a))
-   update gax.version to v2.18.7 ([#&#8203;767](https://togithub.com/googleapis/java-shared-dependencies/issues/767)) ([9650368](https://togithub.com/googleapis/java-shared-dependencies/commit/96503682e98cdf348ea2c1365a03a60f4322c712))
-   update google.core.version to v2.8.6 ([#&#8203;770](https://togithub.com/googleapis/java-shared-dependencies/issues/770)) ([cfd4377](https://togithub.com/googleapis/java-shared-dependencies/commit/cfd4377dc178cebb4724065d55d185ce03988d55))

### [`v3.0.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;300-httpsgithubcomgoogleapisjava-shared-dependenciescomparev2130v300-2022-07-29)

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

##### Bug Fixes

-   enable longpaths support for windows test ([#&#8203;1485](https://togithub.com/googleapis/java-shared-dependencies/issues/1485)) ([#&#8203;738](https://togithub.com/googleapis/java-shared-dependencies/issues/738)) ([11bc8f8](https://togithub.com/googleapis/java-shared-dependencies/commit/11bc8f81f28be88a97fdeafca21724e33638770c))

##### Dependencies

-   update dependency com.google.api-client:google-api-client-bom to v1.35.2 ([#&#8203;729](https://togithub.com/googleapis/java-shared-dependencies/issues/729)) ([1fa59af](https://togithub.com/googleapis/java-shared-dependencies/commit/1fa59af80abb9f278f57658c10158567e825fec6))
-   update dependency com.google.api-client:google-api-client-bom to v2 ([#&#8203;746](https://togithub.com/googleapis/java-shared-dependencies/issues/746)) ([2dcb2e0](https://togithub.com/googleapis/java-shared-dependencies/commit/2dcb2e071e0ba0eea21bb575bd13cd559d4a1ca6))
-   update dependency com.google.api.grpc:grpc-google-common-protos to v2.9.2 ([#&#8203;741](https://togithub.com/googleapis/java-shared-dependencies/issues/741)) ([3352d6c](https://togithub.com/googleapis/java-shared-dependencies/commit/3352d6c36111c04e3f6f3e6360470fa3efb10d8f))
-   update dependency com.google.auth:google-auth-library-bom to v1.8.0 ([#&#8203;726](https://togithub.com/googleapis/java-shared-dependencies/issues/726)) ([2c5d64c](https://togithub.com/googleapis/java-shared-dependencies/commit/2c5d64c127db8384e49113acfeac6928716a2d7f))
-   update dependency com.google.auth:google-auth-library-bom to v1.8.1 ([#&#8203;742](https://togithub.com/googleapis/java-shared-dependencies/issues/742)) ([4f53527](https://togithub.com/googleapis/java-shared-dependencies/commit/4f53527bda7f40896711b7c1d1c02453321ffbc8))
-   update dependency com.google.cloud:first-party-dependencies to v2 ([#&#8203;747](https://togithub.com/googleapis/java-shared-dependencies/issues/747)) ([e970ac0](https://togithub.com/googleapis/java-shared-dependencies/commit/e970ac0599941c825dc2516146a7c6673e68a9b9))
-   update dependency com.google.cloud:grpc-gcp to v1.2.1 ([#&#8203;751](https://togithub.com/googleapis/java-shared-dependencies/issues/751)) ([b3284b6](https://togithub.com/googleapis/java-shared-dependencies/commit/b3284b6ee52a96a6ea8696a05a94443df9ee5b9f))
-   update dependency com.google.cloud:third-party-dependencies to v2 ([#&#8203;748](https://togithub.com/googleapis/java-shared-dependencies/issues/748)) ([573b41a](https://togithub.com/googleapis/java-shared-dependencies/commit/573b41a69504372741cbeb01dd200e7c71967186))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.1 ([#&#8203;730](https://togithub.com/googleapis/java-shared-dependencies/issues/730)) ([6b47126](https://togithub.com/googleapis/java-shared-dependencies/commit/6b47126686b603a5d112e097ce6aa3a1880daf6f))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.2 ([#&#8203;749](https://togithub.com/googleapis/java-shared-dependencies/issues/749)) ([299d7b0](https://togithub.com/googleapis/java-shared-dependencies/commit/299d7b0d4920644e2c3070d12dd1d97da17a5e88))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.2 ([#&#8203;722](https://togithub.com/googleapis/java-shared-dependencies/issues/722)) ([7a96b12](https://togithub.com/googleapis/java-shared-dependencies/commit/7a96b1259a526b63e9376fd6cc18b27cddeb5f0f))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.3 ([#&#8203;756](https://togithub.com/googleapis/java-shared-dependencies/issues/756)) ([3d0bac2](https://togithub.com/googleapis/java-shared-dependencies/commit/3d0bac23487aebb94267c0708f41ff6c02a028a4))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.4 ([#&#8203;759](https://togithub.com/googleapis/java-shared-dependencies/issues/759)) ([5a54ef1](https://togithub.com/googleapis/java-shared-dependencies/commit/5a54ef1a2d56244166d4fcc46041d62c0dc4b411))
-   update dependency io.grpc:grpc-bom to v1.48.0 ([#&#8203;752](https://togithub.com/googleapis/java-shared-dependencies/issues/752)) ([20ac908](https://togithub.com/googleapis/java-shared-dependencies/commit/20ac908932a5e7c8e581bdfcd68579d7e1cedd5f))
-   update dependency org.checkerframework:checker-qual to v3.23.0 ([#&#8203;736](https://togithub.com/googleapis/java-shared-dependencies/issues/736)) ([fc01d8f](https://togithub.com/googleapis/java-shared-dependencies/commit/fc01d8f93f391f12fdb800d5006f0b4505832eeb))
-   update gax.version to v2.18.3 ([#&#8203;731](https://togithub.com/googleapis/java-shared-dependencies/issues/731)) ([e8ee554](https://togithub.com/googleapis/java-shared-dependencies/commit/e8ee554707acb2f71c739d08e2ff02fbe43ffa52))
-   update gax.version to v2.18.4 ([#&#8203;735](https://togithub.com/googleapis/java-shared-dependencies/issues/735)) ([11c7415](https://togithub.com/googleapis/java-shared-dependencies/commit/11c74152a84697924de3a0e838b05f606c3098f7))
-   update gax.version to v2.18.5 ([#&#8203;758](https://togithub.com/googleapis/java-shared-dependencies/issues/758)) ([7469fc1](https://togithub.com/googleapis/java-shared-dependencies/commit/7469fc1cc5095b39a5738e60156711a268f6e052))
-   update gax.version to v2.18.6 ([#&#8203;763](https://togithub.com/googleapis/java-shared-dependencies/issues/763)) ([b5ca2f7](https://togithub.com/googleapis/java-shared-dependencies/commit/b5ca2f7b4d81c705823253f4f03363a32d2be48b))
-   update google.common-protos.version to v2.9.1 ([#&#8203;724](https://togithub.com/googleapis/java-shared-dependencies/issues/724)) ([5213dbb](https://togithub.com/googleapis/java-shared-dependencies/commit/5213dbbfa9c9b73d2420ec2be7782f16c9c4955f))
-   update google.core.version to v2.8.1 ([#&#8203;725](https://togithub.com/googleapis/java-shared-dependencies/issues/725)) ([575858a](https://togithub.com/googleapis/java-shared-dependencies/commit/575858a60f76e46bbc2a2435c2b6c01c8f4ab681))
-   update google.core.version to v2.8.3 ([#&#8203;760](https://togithub.com/googleapis/java-shared-dependencies/issues/760)) ([cb10ae4](https://togithub.com/googleapis/java-shared-dependencies/commit/cb10ae4b76939215ea465af74163b3d4ad65a548))
-   update google.core.version to v2.8.4 ([#&#8203;762](https://togithub.com/googleapis/java-shared-dependencies/issues/762)) ([821daaf](https://togithub.com/googleapis/java-shared-dependencies/commit/821daafefdbcfdfe6e363e580747538096a562ef))
-   update google.core.version to v2.8.5 ([#&#8203;764](https://togithub.com/googleapis/java-shared-dependencies/issues/764)) ([a1f8f50](https://togithub.com/googleapis/java-shared-dependencies/commit/a1f8f501b54143a2cec8e72efd4ceb3ce47f13ae))
-   update iam.version to v1.5.0 ([#&#8203;732](https://togithub.com/googleapis/java-shared-dependencies/issues/732)) ([9dce0e5](https://togithub.com/googleapis/java-shared-dependencies/commit/9dce0e5199c1e425119adc804304958f58003a27))
-   update iam.version to v1.5.1 ([#&#8203;737](https://togithub.com/googleapis/java-shared-dependencies/issues/737)) ([df39168](https://togithub.com/googleapis/java-shared-dependencies/commit/df391685d42fcb1b04f03ab1380a594893bdce37))
-   update iam.version to v1.5.2 ([#&#8203;743](https://togithub.com/googleapis/java-shared-dependencies/issues/743)) ([cdde697](https://togithub.com/googleapis/java-shared-dependencies/commit/cdde697f25a89fc8c2ec7eae6b7c54f69977bb1c))

</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-life-sciences).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
…onfig to v1.5.3 (#216)

[![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-eventarc).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [0.5.2](googleapis/java-life-sciences@v0.5.1...v0.5.2) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#216](googleapis/java-life-sciences#216)) ([996f614](googleapis/java-life-sciences@996f614))

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


## [1.3.2](googleapis/java-debugger-client@v1.3.1...v1.3.2) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#213](googleapis/java-debugger-client#213)) ([0807027](googleapis/java-debugger-client@0807027))

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


## [0.4.2](googleapis/java-private-catalog@v0.4.1...v0.4.2) (2022-09-09)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#215](googleapis/java-private-catalog#215)) ([8772749](googleapis/java-private-catalog@8772749))

---
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 15, 2022
…cies to v3.0.3 (#216)

[![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-network-management).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTUuNSIsInVwZGF0ZWRJblZlciI6IjMyLjE5NS41In0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
…cies to v3.0.3 (#216)

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


## [0.7.4](googleapis/java-dataflow@v0.7.3...v0.7.4) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#216](googleapis/java-dataflow#216)) ([00e262b](googleapis/java-dataflow@00e262b))

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


## [1.4.2](googleapis/java-network-management@v1.4.1...v1.4.2) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#216](googleapis/java-network-management#216)) ([782f3d2](googleapis/java-network-management@782f3d2))

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


## [0.6.3](https://togithub.com/googleapis/java-network-security/compare/v0.6.2...v0.6.3) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#207](https://togithub.com/googleapis/java-network-security/issues/207)) ([029e72d](https://togithub.com/googleapis/java-network-security/commit/029e72d297156998a329702a833d804e029ccb7b))
* Update dependency charset-normalizer to v2.1.1 ([#211](https://togithub.com/googleapis/java-network-security/issues/211)) ([e0a6193](https://togithub.com/googleapis/java-network-security/commit/e0a6193d8f90f38dd5295ff565782279615d1ae1))
* Update dependency click to v8.1.3 ([#212](https://togithub.com/googleapis/java-network-security/issues/212)) ([9930985](https://togithub.com/googleapis/java-network-security/commit/99309859d1a48f071bd3d8ac22ef2b7fa49302c2))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#232](https://togithub.com/googleapis/java-network-security/issues/232)) ([8b476b6](https://togithub.com/googleapis/java-network-security/commit/8b476b6e1eb9af0d03789e8d6e1a9085d75fe44e))
* Update dependency gcp-releasetool to v1.8.8 ([#208](https://togithub.com/googleapis/java-network-security/issues/208)) ([d735a5e](https://togithub.com/googleapis/java-network-security/commit/d735a5eeccd4733b741c28bd6a856d1c64f7893e))
* Update dependency google-auth to v2.12.0 ([#214](https://togithub.com/googleapis/java-network-security/issues/214)) ([a755a2c](https://togithub.com/googleapis/java-network-security/commit/a755a2c7a5e16141feecea9c1bcab3179add8747))
* Update dependency google-cloud-core to v2.3.2 ([#209](https://togithub.com/googleapis/java-network-security/issues/209)) ([6d383ee](https://togithub.com/googleapis/java-network-security/commit/6d383eebd10b12db9b4a384dcbc0366583b1ff77))
* Update dependency google-cloud-storage to v2.5.0 ([#215](https://togithub.com/googleapis/java-network-security/issues/215)) ([afb2d3f](https://togithub.com/googleapis/java-network-security/commit/afb2d3fea0206b184ff5b32fdbbdc26da09136ea))
* Update dependency google-crc32c to v1.5.0 ([#216](https://togithub.com/googleapis/java-network-security/issues/216)) ([c08d726](https://togithub.com/googleapis/java-network-security/commit/c08d726b14a6760db9912b22e969038b5be43c43))
* Update dependency googleapis-common-protos to v1.56.4 ([#210](https://togithub.com/googleapis/java-network-security/issues/210)) ([ad50258](https://togithub.com/googleapis/java-network-security/commit/ad50258922000e0cc395f332063d23935034e0d4))
* Update dependency importlib-metadata to v4.12.0 ([#217](https://togithub.com/googleapis/java-network-security/issues/217)) ([d219a01](https://togithub.com/googleapis/java-network-security/commit/d219a0141f8327f443e67bbe82022d48b419dbff))
* Update dependency jeepney to v0.8.0 ([#218](https://togithub.com/googleapis/java-network-security/issues/218)) ([b3f23df](https://togithub.com/googleapis/java-network-security/commit/b3f23dfc8df6c5903a0c9164205d1fab691cc4fc))
* Update dependency jinja2 to v3.1.2 ([#219](https://togithub.com/googleapis/java-network-security/issues/219)) ([e15aa1c](https://togithub.com/googleapis/java-network-security/commit/e15aa1c1da41bd4de442c98ed6423d9c95835707))
* Update dependency keyring to v23.9.3 ([#220](https://togithub.com/googleapis/java-network-security/issues/220)) ([b9d7944](https://togithub.com/googleapis/java-network-security/commit/b9d794459a09bc4b92163da024cd55075c1843bd))
* Update dependency protobuf to v3.20.2 ([#222](https://togithub.com/googleapis/java-network-security/issues/222)) ([43cd2ec](https://togithub.com/googleapis/java-network-security/commit/43cd2ec1604e6c4c7c89a1560a283ccad307793c))
* Update dependency protobuf to v4 ([#228](https://togithub.com/googleapis/java-network-security/issues/228)) ([13df18e](https://togithub.com/googleapis/java-network-security/commit/13df18e136adfcc43554f105cd530094e9c0822f))
* Update dependency pyjwt to v2.5.0 ([#223](https://togithub.com/googleapis/java-network-security/issues/223)) ([1ed858a](https://togithub.com/googleapis/java-network-security/commit/1ed858a4f640f7448c06c43d3a863473b9b29cca))
* Update dependency requests to v2.28.1 ([#224](https://togithub.com/googleapis/java-network-security/issues/224)) ([8a0cdd4](https://togithub.com/googleapis/java-network-security/commit/8a0cdd43ad47b806cd645fa6bcb025a7aac5472e))

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


## [1.3.4](https://togithub.com/googleapis/java-data-fusion/compare/v1.3.3...v1.3.4) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#214](https://togithub.com/googleapis/java-data-fusion/issues/214)) ([3ac2b6a](https://togithub.com/googleapis/java-data-fusion/commit/3ac2b6a8004222b6c471fd3cb6e793f4120f5eaa))
* Update dependency charset-normalizer to v2.1.1 ([#218](https://togithub.com/googleapis/java-data-fusion/issues/218)) ([ecb78d9](https://togithub.com/googleapis/java-data-fusion/commit/ecb78d94ff2a3176669f36c4ebfbf33e0d63100d))
* Update dependency click to v8.1.3 ([#219](https://togithub.com/googleapis/java-data-fusion/issues/219)) ([55da366](https://togithub.com/googleapis/java-data-fusion/commit/55da366fc6f6ffe9e84d35cd3ab5e9185d966f51))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#239](https://togithub.com/googleapis/java-data-fusion/issues/239)) ([6a8d58e](https://togithub.com/googleapis/java-data-fusion/commit/6a8d58e3a6fcca398cbf422f102e88b228006af2))
* Update dependency gcp-releasetool to v1.8.8 ([#215](https://togithub.com/googleapis/java-data-fusion/issues/215)) ([8960212](https://togithub.com/googleapis/java-data-fusion/commit/8960212db7e396a8fb6fa207e18b684b1290606d))
* Update dependency google-api-core to v2.10.1 ([#220](https://togithub.com/googleapis/java-data-fusion/issues/220)) ([8fc6032](https://togithub.com/googleapis/java-data-fusion/commit/8fc6032d92efc52ea97541016a5123f845e2d4e1))
* Update dependency google-auth to v2.12.0 ([#221](https://togithub.com/googleapis/java-data-fusion/issues/221)) ([9bf5b47](https://togithub.com/googleapis/java-data-fusion/commit/9bf5b47d66a217aef100119b9bf51cb1d4db71f9))
* Update dependency google-cloud-core to v2.3.2 ([#216](https://togithub.com/googleapis/java-data-fusion/issues/216)) ([5a58540](https://togithub.com/googleapis/java-data-fusion/commit/5a58540c82a619a5874b0010d14bed7249fb1a64))
* Update dependency google-cloud-storage to v2.5.0 ([#222](https://togithub.com/googleapis/java-data-fusion/issues/222)) ([a80e034](https://togithub.com/googleapis/java-data-fusion/commit/a80e03487815a464c91bb7dbd49052c877e47934))
* Update dependency google-crc32c to v1.5.0 ([#223](https://togithub.com/googleapis/java-data-fusion/issues/223)) ([baf7b4e](https://togithub.com/googleapis/java-data-fusion/commit/baf7b4e360917b34cdbb1261525a296b865e22f2))
* Update dependency googleapis-common-protos to v1.56.4 ([#217](https://togithub.com/googleapis/java-data-fusion/issues/217)) ([e1b167b](https://togithub.com/googleapis/java-data-fusion/commit/e1b167be2d12bb0d761e9dbe4c860ab845342ff9))
* Update dependency importlib-metadata to v4.12.0 ([#232](https://togithub.com/googleapis/java-data-fusion/issues/232)) ([8d6dffe](https://togithub.com/googleapis/java-data-fusion/commit/8d6dffee83ebeb9cb8b7d7a625469e7b032ed556))
* Update dependency jeepney to v0.8.0 ([#233](https://togithub.com/googleapis/java-data-fusion/issues/233)) ([1652c6a](https://togithub.com/googleapis/java-data-fusion/commit/1652c6a4c023fd3b78200e33e7f2b60861bc8545))
* Update dependency jinja2 to v3.1.2 ([#234](https://togithub.com/googleapis/java-data-fusion/issues/234)) ([9b2740d](https://togithub.com/googleapis/java-data-fusion/commit/9b2740d823ff15287ccdf8eee291eb5251285fa5))
* Update dependency keyring to v23.9.3 ([#235](https://togithub.com/googleapis/java-data-fusion/issues/235)) ([c285f06](https://togithub.com/googleapis/java-data-fusion/commit/c285f06ef8f35f4911c216d3cd5118b59d13a046))
* Update dependency markupsafe to v2.1.1 ([#224](https://togithub.com/googleapis/java-data-fusion/issues/224)) ([3f68198](https://togithub.com/googleapis/java-data-fusion/commit/3f681989ac8b93c369e83550d1bc2189399fd59e))
* Update dependency protobuf to v3.20.2 ([#225](https://togithub.com/googleapis/java-data-fusion/issues/225)) ([9081b6e](https://togithub.com/googleapis/java-data-fusion/commit/9081b6e4cd82fe1fda99333747385a7fe414a3c3))
* Update dependency requests to v2.28.1 ([#227](https://togithub.com/googleapis/java-data-fusion/issues/227)) ([a5433f7](https://togithub.com/googleapis/java-data-fusion/commit/a5433f743d8be8aa5543ed4a3e82232bdd4cf6f3))
* Update dependency typing-extensions to v4.3.0 ([#228](https://togithub.com/googleapis/java-data-fusion/issues/228)) ([62a71c3](https://togithub.com/googleapis/java-data-fusion/commit/62a71c3e9811dca4fe7587ce49d6beda1b57c778))

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


## [1.3.1](https://togithub.com/googleapis/java-storage-transfer/compare/v1.3.0...v1.3.1) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#217](https://togithub.com/googleapis/java-storage-transfer/issues/217)) ([525eb68](https://togithub.com/googleapis/java-storage-transfer/commit/525eb68ffd624a0d914b0efe7797cb01cbe6eba7))
* Update dependency certifi to v2022.9.24 ([#197](https://togithub.com/googleapis/java-storage-transfer/issues/197)) ([acb777c](https://togithub.com/googleapis/java-storage-transfer/commit/acb777c7b4dc8ac7ff42c947f4cc09011314d41d))
* Update dependency charset-normalizer to v2.1.1 ([#202](https://togithub.com/googleapis/java-storage-transfer/issues/202)) ([9363afb](https://togithub.com/googleapis/java-storage-transfer/commit/9363afb0cb1bb395da6e4a07a5fa602017d7fa5f))
* Update dependency click to v8.1.3 ([#203](https://togithub.com/googleapis/java-storage-transfer/issues/203)) ([06e6914](https://togithub.com/googleapis/java-storage-transfer/commit/06e6914cddfa822a32fe885d251aac840a31a9a8))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#220](https://togithub.com/googleapis/java-storage-transfer/issues/220)) ([80c1ee1](https://togithub.com/googleapis/java-storage-transfer/commit/80c1ee1f098ceac65903928464b7ee906fe847ae))
* Update dependency gcp-releasetool to v1.8.8 ([#198](https://togithub.com/googleapis/java-storage-transfer/issues/198)) ([e46fb34](https://togithub.com/googleapis/java-storage-transfer/commit/e46fb34b9fd7f8791549ac3cc1d614842927a704))
* Update dependency google-api-core to v2.10.1 ([#204](https://togithub.com/googleapis/java-storage-transfer/issues/204)) ([69ea208](https://togithub.com/googleapis/java-storage-transfer/commit/69ea20859d3bcaecdc7074345ee29ca54117c257))
* Update dependency google-auth to v2.11.1 ([#199](https://togithub.com/googleapis/java-storage-transfer/issues/199)) ([da34dfc](https://togithub.com/googleapis/java-storage-transfer/commit/da34dfcb8929aabf4de4d91d9d8326c78c219b98))
* Update dependency google-auth to v2.12.0 ([#214](https://togithub.com/googleapis/java-storage-transfer/issues/214)) ([3817337](https://togithub.com/googleapis/java-storage-transfer/commit/381733712f0cee4dbf9acc5c65c1244847f814e3))
* Update dependency google-cloud-core to v2.3.2 ([#200](https://togithub.com/googleapis/java-storage-transfer/issues/200)) ([5d5e3b0](https://togithub.com/googleapis/java-storage-transfer/commit/5d5e3b00f85f5b97243755c481d306291809a2d3))
* Update dependency googleapis-common-protos to v1.56.4 ([#201](https://togithub.com/googleapis/java-storage-transfer/issues/201)) ([99f53b0](https://togithub.com/googleapis/java-storage-transfer/commit/99f53b0d29d7e4ad5e429b6dd2e733bfbb2ad56f))
* Update dependency importlib-metadata to v4.12.0 ([#215](https://togithub.com/googleapis/java-storage-transfer/issues/215)) ([cb618d7](https://togithub.com/googleapis/java-storage-transfer/commit/cb618d7cd8a73f98cccf352b2f8255edb29f22f5))
* Update dependency jeepney to v0.8.0 ([#216](https://togithub.com/googleapis/java-storage-transfer/issues/216)) ([3c8bdd8](https://togithub.com/googleapis/java-storage-transfer/commit/3c8bdd8f3b9273973efbf7fab858dd748cbab29e))
* Update dependency protobuf to v4 ([#218](https://togithub.com/googleapis/java-storage-transfer/issues/218)) ([39bd5b0](https://togithub.com/googleapis/java-storage-transfer/commit/39bd5b094db2db56c2d6c5e6609c0d50acf04879))
* Update dependency pyjwt to v2.5.0 ([#195](https://togithub.com/googleapis/java-storage-transfer/issues/195)) ([9fca654](https://togithub.com/googleapis/java-storage-transfer/commit/9fca654f963c433109d5b83ec7e0fb79250250db))
* Update dependency requests to v2.28.1 ([#196](https://togithub.com/googleapis/java-storage-transfer/issues/196)) ([720f83b](https://togithub.com/googleapis/java-storage-transfer/commit/720f83b338b76d2c8b9b3a072a7bd9c33d56b861))

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


## [1.2.1](https://togithub.com/googleapis/java-datastream/compare/v1.2.0...v1.2.1) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#208](https://togithub.com/googleapis/java-datastream/issues/208)) ([706b28f](https://togithub.com/googleapis/java-datastream/commit/706b28f6a75a99b1ecfa9a42a6fafd7b0a7be082))
* Update dependency charset-normalizer to v2.1.1 ([#213](https://togithub.com/googleapis/java-datastream/issues/213)) ([f69342c](https://togithub.com/googleapis/java-datastream/commit/f69342c4a1cdbea9dc5c9af5e6a211e947418c94))
* Update dependency click to v8.1.3 ([#214](https://togithub.com/googleapis/java-datastream/issues/214)) ([f3e4b82](https://togithub.com/googleapis/java-datastream/commit/f3e4b8266df4aeb0730b7cd01bc78b6fbac6bc85))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#229](https://togithub.com/googleapis/java-datastream/issues/229)) ([9222b21](https://togithub.com/googleapis/java-datastream/commit/9222b21216e0a9495e150975c27e33caefbe79a7))
* Update dependency gcp-releasetool to v1.8.8 ([#209](https://togithub.com/googleapis/java-datastream/issues/209)) ([e4e0263](https://togithub.com/googleapis/java-datastream/commit/e4e026352db0352b964bbf558646d8a6836f2179))
* Update dependency google-api-core to v2.10.1 ([#216](https://togithub.com/googleapis/java-datastream/issues/216)) ([1400a42](https://togithub.com/googleapis/java-datastream/commit/1400a4276bb83693ea913644d5d46e17aff7c65e))
* Update dependency google-auth to v2.11.1 ([#210](https://togithub.com/googleapis/java-datastream/issues/210)) ([a26ae6b](https://togithub.com/googleapis/java-datastream/commit/a26ae6bce25655a94285f938fb18b00a6381ccc7))
* Update dependency google-cloud-core to v2.3.2 ([#211](https://togithub.com/googleapis/java-datastream/issues/211)) ([3e4c2ea](https://togithub.com/googleapis/java-datastream/commit/3e4c2ea3237787dcee9cfdb904f297b84003c014))
* Update dependency google-cloud-storage to v2.5.0 ([#215](https://togithub.com/googleapis/java-datastream/issues/215)) ([143936d](https://togithub.com/googleapis/java-datastream/commit/143936d3f44c9c6d6eda8876dfd8720e44825375))
* Update dependency google-crc32c to v1.5.0 ([#217](https://togithub.com/googleapis/java-datastream/issues/217)) ([7586620](https://togithub.com/googleapis/java-datastream/commit/7586620d0de34d7a1aa4711a5fe9686c583339f1))
* Update dependency googleapis-common-protos to v1.56.4 ([#212](https://togithub.com/googleapis/java-datastream/issues/212)) ([b280bbd](https://togithub.com/googleapis/java-datastream/commit/b280bbdf38b24404835265ea8cbaed5d62d1a6d6))
* Update dependency importlib-metadata to v4.12.0 ([#218](https://togithub.com/googleapis/java-datastream/issues/218)) ([9eb3d08](https://togithub.com/googleapis/java-datastream/commit/9eb3d08d1eb5dc9fc6b463e81687b194ba4a4514))
* Update dependency jeepney to v0.8.0 ([#219](https://togithub.com/googleapis/java-datastream/issues/219)) ([ce4b583](https://togithub.com/googleapis/java-datastream/commit/ce4b5834e859e78d20fb344539ba9d75e503097c))
* Update dependency jinja2 to v3.1.2 ([#220](https://togithub.com/googleapis/java-datastream/issues/220)) ([ff6a152](https://togithub.com/googleapis/java-datastream/commit/ff6a152f174f28cd3d84f92150d8b0f9bb4a2e89))
* Update dependency keyring to v23.9.3 ([#221](https://togithub.com/googleapis/java-datastream/issues/221)) ([0c80201](https://togithub.com/googleapis/java-datastream/commit/0c802014c9c5820ee3fc7e2154e17ab8772f5861))
* Update dependency markupsafe to v2.1.1 ([#222](https://togithub.com/googleapis/java-datastream/issues/222)) ([1524422](https://togithub.com/googleapis/java-datastream/commit/1524422274abbe79270bbbbcb07b27b8dac49206))
* Update dependency protobuf to v3.20.2 ([#223](https://togithub.com/googleapis/java-datastream/issues/223)) ([9d11085](https://togithub.com/googleapis/java-datastream/commit/9d11085091075a864e7f7628baa9c068d7cdb8f8))

---
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
api: core auth priority: p2 Moderately-important priority. Fix may not be included in next release. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design.
Projects
None yet
Development

No branches or pull requests

8 participants