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

What's the best way for a total n00b to start with this library? #34

Closed
jgeewax opened this issue Mar 19, 2015 · 9 comments
Closed

What's the best way for a total n00b to start with this library? #34

jgeewax opened this issue Mar 19, 2015 · 9 comments
Assignees
Labels
api: core auth 🚨 This issue needs some love. triage me I really want to be triaged.

Comments

@jgeewax
Copy link

jgeewax commented Mar 19, 2015

I'm having trouble getting a HelloDatastore project working. Hoping that you can help me get this going...

Here's what I did:

$ git clone https://github.com/GoogleCloudPlatform/gcloud-java.git
$ cd gcloud-java
$ sudo apt-get install maven
$ mvn install
$ export CLASSPATH=~/gcdjavasample/gcloud-java/target/gcloud-java-0.0.3.jar

Here's the file I'm trying to run (HelloDatastore.java):

import com.google.gcloud.datastore.DatastoreService;
import com.google.gcloud.datastore.DatastoreServiceFactory;
import com.google.gcloud.datastore.DatastoreServiceOptions;
import com.google.gcloud.datastore.Entity;
import com.google.gcloud.datastore.Key;
import com.google.gcloud.datastore.KeyFactory;



public class HelloDatastore {
  private static final String DATASET = "gcloud-datastore-demo";

  public static void main(String[] args) {
    DatastoreServiceOptions options = DatastoreServiceOptions.builder().dataset(DATASET).build();
    DatastoreService datastore = DatastoreServiceFactory.getDefault(options);
    KeyFactory keyFactory = datastore.newKeyFactory().kind("Person");
    Key key = keyFactory.newKey("Jimmy");

    System.out.println("Trying to get the entity by its key!");

    Entity entity = datastore.get(key);

    if (entity == null) {
      System.out.println("Entity not found! Creating it!");
      entity = Entity.builder(key)
          .set("name", "John Doe")
          .set("age", 30)
          .set("updated", false)
          .build();
      datastore.put(entity);
    } else {
      System.out.println("Entity found! Updating it!");
      boolean updated = entity.getBoolean("updated");
      if (!updated) {
        String[] name = entity.getString("name").split(" ");
        entity = Entity.builder(entity)
            .set("name", name[0])
            .set("last_name", name[1])
            .set("updated", true)
            .remove("old_property")
            .set("new_property", 1.1)
            .build();
        datastore.update(entity);
      }
    }

    System.out.println("Done!");
  }
}

I can get it to compile just fine, then I run into problems running the class. Apparently I need Guava? And google-auth-library-java ? And google-api-java-client ?

What exactly is the best way to get this so that I can run... java HelloDatastore and I'll see some stuff happening.... ?

(Sorry for the dumb question....)

@jgeewax jgeewax added this to the Core Stable milestone Mar 19, 2015
@aozarov
Copy link
Contributor

aozarov commented Mar 19, 2015

When using maven one's artifact does not include/bundle all its dependencies.
There are various ways to deal with it but the most recommended way for someone that consumes
a maven artifact[s] is to make its code using maven (http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) and adding gcloud-java as a dependency as such:

<dependency>
  <groupId>com.google.gcloud</groupId>
  <artifactId>gcloud-java</artifactId>
  <version>0.0.3</version>
</dependency>

For latest versions one could use: http://search.maven.org/#search%7Cga%7C1%7Cgcloud-java
If you want to run your code (not as a test via "mvn test") you have various options. here are some references:
http://www.vineetmanohar.com/2009/11/3-ways-to-run-java-main-from-maven/
http://mojo.codehaus.org/exec-maven-plugin/examples/example-exec-for-java-programs.html

There are other options such as using ant and ivy (http://ant.apache.org/ivy/history/2.2.0/tutorial/start.html) or using tools or various maven plugins to bundle all jars (latter is not recommended).

@aozarov
Copy link
Contributor

aozarov commented Mar 20, 2015

@jgeewax let me know what you want to do about this one?

@aozarov aozarov assigned jgeewax and unassigned aozarov Mar 20, 2015
@jgeewax
Copy link
Author

jgeewax commented Mar 23, 2015

Is there any value is having a "starter-project" template (not the expense report example -- but one that is just a blank template) ?

@jgeewax jgeewax assigned aozarov and unassigned jgeewax Mar 23, 2015
@aozarov
Copy link
Contributor

aozarov commented Mar 23, 2015

I think little value. All 3 main IDEs have an option for creating a "starter" maven project and an easy way to add dependencies. Yes, we could create a simple "hello gcloud java" simple project with maven, ant and gradle config files (already configured to pull gcloud-java) (we could also provide project configuration for all 3 main IDEs but I am not sure that is a great idea, especially when configuration may differ between IDEs versions) but I think one could also clone the "expense report" project (when available) and trim the unnecessary files. In any case, I don't object the idea (but not sure where exactly to put it - see: https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html -- as I don't think we need to create another gitHub project for it).

@aozarov aozarov assigned jgeewax and unassigned aozarov Mar 23, 2015
@jgeewax
Copy link
Author

jgeewax commented Mar 23, 2015

My worry is that someone starting like I did with the guide you pointed me to will hit the same ridiculous bug that I hit... A starter project is one way of solving that problem. Do you have ideas for others?

@jgeewax jgeewax assigned aozarov and unassigned jgeewax Mar 23, 2015
@aozarov
Copy link
Contributor

aozarov commented Mar 23, 2015

Right, issue #36 could have been avoided by using a pom.xml template that specify Java source/target versions (but this is not great as one, for example, may want to use java 1.8 or later when they come).
Also, other maven related issues could appear when using such an old maven version.
However I just realized we could use maven-enforcer-plugin (http://maven.apache.org/enforcer/maven-enforcer-plugin/usage.html) in the pom template to specify minimum Java and Maven requirements (which will probably solve most of the configuration issues) so maybe not a bad idea after all (alternative would be just document it). Leaving this open so we can take action on it but unassigned it, to allow other to pick it up until I get to it.

@aozarov aozarov removed their assignment Mar 23, 2015
@jgeewax
Copy link
Author

jgeewax commented Mar 23, 2015

Great so the deliverable here is... to somehow use the maven-enforcer plugin to require specific versions?

@aozarov
Copy link
Contributor

aozarov commented Mar 23, 2015

Yes, though we could do that only in (1) our own pom file for anyone accessing our code via its source/gitHub (2) in the template/simple project that would have its own pom enforcing it.

Probably best would have been if we could someone provide such enforcement on the maven artifact (so anyone that adds us as a dependency would need to confirm to it) but I am not aware of a way to do that (or if that is even possible).

@aozarov
Copy link
Contributor

aozarov commented May 29, 2015

After fix #78 it should be obvious if minimum requirements are not met

@aozarov aozarov closed this as completed May 29, 2015
garrettjonesgoogle pushed a commit to garrettjonesgoogle/gcloud-java that referenced this issue Mar 29, 2016
Do not auto close channel if it is provided by user.
@yoshi-automation yoshi-automation added triage me I really want to be triaged. 🚨 This issue needs some love. labels Apr 6, 2020
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this issue Jun 29, 2022
…oogleapis#34)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 457524730

Source-Link: googleapis/googleapis@917e7f2

Source-Link: https://github.com/googleapis/googleapis-gen/commit/2497f9a069d3f6b2d6810d5a4e239cda1e7e5a39
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjQ5N2Y5YTA2OWQzZjZiMmQ2ODEwZDVhNGUyMzljZGExZTdlNWEzOSJ9

feat: Enable REST transport for most of Java and Go clients
PiperOrigin-RevId: 456641589

Source-Link: googleapis/googleapis@8a251f5

Source-Link: https://github.com/googleapis/googleapis-gen/commit/4ca52a529cf01308d9714950edffbea3560cfbdb
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGNhNTJhNTI5Y2YwMTMwOGQ5NzE0OTUwZWRmZmJlYTM1NjBjZmJkYiJ9

feat!: add support for new API methods
BREAKING_CHANGE: the removed Snapshots methods were never officially released

PiperOrigin-RevId: 455640857

Source-Link: googleapis/googleapis@7b1657f

Source-Link: https://github.com/googleapis/googleapis-gen/commit/b8765c5896185dbbd786d828c24415a699204a7c
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjg3NjVjNTg5NjE4NWRiYmQ3ODZkODI4YzI0NDE1YTY5OTIwNGE3YyJ9
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*
---


## [0.3.0](googleapis/java-bare-metal-solution@v0.2.1...v0.3.0) (2022-06-28)


### ⚠ BREAKING CHANGES

* add support for new API methods

### Features

* add support for new API methods ([653684f](googleapis/java-bare-metal-solution@653684f))
* Enable REST transport for most of Java and Go clients ([653684f](googleapis/java-bare-metal-solution@653684f))


### Bug Fixes

* update gapic-generator-java with mock service generation fixes ([googleapis#34](googleapis/java-bare-metal-solution#34)) ([653684f](googleapis/java-bare-metal-solution@653684f))

---
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 14, 2022
Source-Link: googleapis/synthtool@18d4e9b
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:f8374176dc59291f05dd3fec927a9da2cda687a9ef4de32e77f699a2be12ab45
github-actions bot pushed a commit that referenced this issue Jul 14, 2022
…onfig to v1.5.1 (#34)

* 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 Aug 25, 2022
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 470047229

Source-Link: googleapis/googleapis@8d6fdc7

Source-Link: https://github.com/googleapis/googleapis-gen/commit/e1ac76e5811146a7ab5748968b4d012374fdb409
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTFhYzc2ZTU4MTExNDZhN2FiNTc0ODk2OGI0ZDAxMjM3NGZkYjQwOSJ9

feat: environment variables, disk interfaces
PiperOrigin-RevId: 469790533

Source-Link: googleapis/googleapis@97fa02d

Source-Link: https://github.com/googleapis/googleapis-gen/commit/f9e32c49207c9d8499062ef1a807edadcccefb76
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZjllMzJjNDkyMDdjOWQ4NDk5MDYyZWYxYTgwN2VkYWRjY2NlZmI3NiJ9

feat: environment variables, disk interfaces
PiperOrigin-RevId: 469790475

Source-Link: googleapis/googleapis@10d4b86

Source-Link: https://github.com/googleapis/googleapis-gen/commit/b57c87e4b2e4c25f3665feacbb6df9e83252f3b7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjU3Yzg3ZTRiMmU0YzI1ZjM2NjVmZWFjYmI2ZGY5ZTgzMjUyZjNiNyJ9
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 |
|---|---|---|---|---|---|
| [google-cloud-storage](https://togithub.com/googleapis/python-storage) | `==2.0.0` -> `==2.5.0` | [![age](https://badges.renovateapi.com/packages/pypi/google-cloud-storage/2.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/google-cloud-storage/2.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/google-cloud-storage/2.5.0/compatibility-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/google-cloud-storage/2.5.0/confidence-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-apikeys).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
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 |
|---|---|---|---|---|---|
| [typing-extensions](https://togithub.com/python/typing_extensions) ([changelog](https://togithub.com/python/typing_extensions/blob/main/CHANGELOG.md)) | `==4.1.1` -> `==4.3.0` | [![age](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/compatibility-slim/4.1.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/confidence-slim/4.1.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.

---

### 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-beyondcorp-appconnections).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
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 |
|---|---|---|---|---|---|
| [typing-extensions](https://togithub.com/python/typing_extensions) ([changelog](https://togithub.com/python/typing_extensions/blob/main/CHANGELOG.md)) | `==4.1.1` -> `==4.3.0` | [![age](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/compatibility-slim/4.1.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/typing-extensions/4.3.0/confidence-slim/4.1.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.

---

### 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-beyondcorp-clientgateways).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
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 |
|---|---|---|---|---|---|
| [jeepney](https://gitlab.com/takluyver/jeepney) | `==0.7.1` -> `==0.8.0` | [![age](https://badges.renovateapi.com/packages/pypi/jeepney/0.8.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/jeepney/0.8.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/jeepney/0.8.0/compatibility-slim/0.7.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/jeepney/0.8.0/confidence-slim/0.7.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.

---

### 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-beyondcorp-appgateways).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [0.1.1](https://togithub.com/googleapis/java-apikeys/compare/v0.1.0...v0.1.1) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#24](https://togithub.com/googleapis/java-apikeys/issues/24)) ([c36a4bd](https://togithub.com/googleapis/java-apikeys/commit/c36a4bdbbb000ccdf08e7b7885610e7043ec1280))
* Update dependency certifi to v2022.9.24 ([#26](https://togithub.com/googleapis/java-apikeys/issues/26)) ([5c48922](https://togithub.com/googleapis/java-apikeys/commit/5c4892242fca9d7d9ed1be2f7d73beebf8b7d1d4))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#41](https://togithub.com/googleapis/java-apikeys/issues/41)) ([c7c5d9a](https://togithub.com/googleapis/java-apikeys/commit/c7c5d9a56229c4e29b4b352703fa73ca40641f9b))
* Update dependency gcp-releasetool to v1.8.8 ([#27](https://togithub.com/googleapis/java-apikeys/issues/27)) ([b8107e0](https://togithub.com/googleapis/java-apikeys/commit/b8107e0ce160ca22b06e6efd880393b03f589c53))
* Update dependency google-api-core to v2.10.1 ([#32](https://togithub.com/googleapis/java-apikeys/issues/32)) ([4c14ba7](https://togithub.com/googleapis/java-apikeys/commit/4c14ba7eb28dcd9bc941afce436b4d22fa73d1c2))
* Update dependency google-auth to v2.12.0 ([#33](https://togithub.com/googleapis/java-apikeys/issues/33)) ([b0e01fd](https://togithub.com/googleapis/java-apikeys/commit/b0e01fdf175815945a84e6332138add7afe240e2))
* Update dependency google-cloud-core to v2.3.2 ([#28](https://togithub.com/googleapis/java-apikeys/issues/28)) ([c17bb57](https://togithub.com/googleapis/java-apikeys/commit/c17bb576de5e2b114c90a4d8a28501bf971d3d8d))
* Update dependency google-cloud-storage to v2.5.0 ([#34](https://togithub.com/googleapis/java-apikeys/issues/34)) ([e00a1db](https://togithub.com/googleapis/java-apikeys/commit/e00a1db4c8448dea255c15077f0d107797a620c1))
* Update dependency google-crc32c to v1.5.0 ([#36](https://togithub.com/googleapis/java-apikeys/issues/36)) ([a1c086d](https://togithub.com/googleapis/java-apikeys/commit/a1c086d9daeac170e135227fe059ba4a6917826c))
* Update dependency googleapis-common-protos to v1.56.4 ([#29](https://togithub.com/googleapis/java-apikeys/issues/29)) ([d371811](https://togithub.com/googleapis/java-apikeys/commit/d371811a4badb6b89cf799eda3de7459ccba90ec))
* Update dependency importlib-metadata to v4.12.0 ([#37](https://togithub.com/googleapis/java-apikeys/issues/37)) ([8f236fa](https://togithub.com/googleapis/java-apikeys/commit/8f236fab6835fbac003247927a280b197685e633))
* Update dependency jeepney to v0.8.0 ([#38](https://togithub.com/googleapis/java-apikeys/issues/38)) ([2f4f580](https://togithub.com/googleapis/java-apikeys/commit/2f4f580f41fa5a2f21719effba4662d21fe36090))
* Update dependency jinja2 to v3.1.2 ([#16](https://togithub.com/googleapis/java-apikeys/issues/16)) ([ea003ed](https://togithub.com/googleapis/java-apikeys/commit/ea003edbec2c585fa8a63f97840d0e31cc61ca8d))
* Update dependency keyring to v23.9.3 ([#17](https://togithub.com/googleapis/java-apikeys/issues/17)) ([b137955](https://togithub.com/googleapis/java-apikeys/commit/b1379557fde7c6b26d4487f1792c7c40d3df5224))
* Update dependency markupsafe to v2.1.1 ([#18](https://togithub.com/googleapis/java-apikeys/issues/18)) ([361de85](https://togithub.com/googleapis/java-apikeys/commit/361de8589a24764e982f977ecd732e8af4535414))
* Update dependency protobuf to v3.20.2 ([#19](https://togithub.com/googleapis/java-apikeys/issues/19)) ([05d348a](https://togithub.com/googleapis/java-apikeys/commit/05d348a94e5513ad1f0c9c005d03949aa5090dbc))
* Update dependency protobuf to v4 ([#25](https://togithub.com/googleapis/java-apikeys/issues/25)) ([4637321](https://togithub.com/googleapis/java-apikeys/commit/46373215ede0dfb790a1aca8fa46e223f3839e5f))
* Update dependency pyjwt to v2.5.0 ([#20](https://togithub.com/googleapis/java-apikeys/issues/20)) ([bc8c04d](https://togithub.com/googleapis/java-apikeys/commit/bc8c04d21a3317d9e96ecccc727657931ff83e87))
* Update dependency requests to v2.28.1 ([#21](https://togithub.com/googleapis/java-apikeys/issues/21)) ([5999441](https://togithub.com/googleapis/java-apikeys/commit/5999441135647ddfb89beaa58ed3b14ddd6cc8a4))
* Update dependency typing-extensions to v4.3.0 ([#22](https://togithub.com/googleapis/java-apikeys/issues/22)) ([d73ba17](https://togithub.com/googleapis/java-apikeys/commit/d73ba178a8a57b8269d86f761ec10f63e5d29142))
* Update dependency zipp to v3.8.1 ([#23](https://togithub.com/googleapis/java-apikeys/issues/23)) ([0257db8](https://togithub.com/googleapis/java-apikeys/commit/0257db815b637b38e22fb877ae19e3c92604bded))

---
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*
---


## [0.1.3](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/compare/v0.1.2...v0.1.3) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#46](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/46)) ([1e6735e](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/1e6735e41277aa976822811b2c22476181f708f0))
* Update dependency certifi to v2022.9.24 ([#25](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/25)) ([3b9b8aa](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/3b9b8aa1594ec7c1de1908a3127aff5f396bab39))
* Update dependency charset-normalizer to v2.1.1 ([#29](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/29)) ([4a3a828](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/4a3a828f40e6f68eff4f7e88fb8b181d8ecc1c59))
* Update dependency click to v8.1.3 ([#31](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/31)) ([d80efdb](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/d80efdb42d2f46fb986c6b9bd11f06b190641d4e))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#50](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/50)) ([75bf58d](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/75bf58d798d5a0c71fa6c63a435d133b7891cd0d))
* Update dependency gcp-releasetool to v1.8.8 ([#26](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/26)) ([8a9177f](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/8a9177f6d7fa2e4f9d4d856b6525805050062fc0))
* Update dependency google-api-core to v2.10.1 ([#32](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/32)) ([26a3505](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/26a3505f3d4fb399eee74369f7549491c5dbc96b))
* Update dependency google-auth to v2.12.0 ([#33](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/33)) ([2ec1a53](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/2ec1a536fbfe801a1cdfcd8a86846c185e71021c))
* Update dependency google-cloud-core to v2.3.2 ([#27](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/27)) ([7c89e4e](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/7c89e4e6a0dba51a9c927e7202b7ad98aa4d5939))
* Update dependency google-cloud-storage to v2.5.0 ([#34](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/34)) ([dafdb14](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/dafdb14eb19ebe242b8dda14e2f571692019fd19))
* Update dependency googleapis-common-protos to v1.56.4 ([#28](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/28)) ([639d08f](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/639d08f0f64ebe5b77eb57bb01a13beaece510e7))
* Update dependency importlib-metadata to v4.12.0 ([#36](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/36)) ([015498c](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/015498c4c895c2c6a232664aab321825e3c579e9))
* Update dependency keyring to v23.9.3 ([#39](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/39)) ([516e8d0](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/516e8d0e1a894d3c341e4706dcdf9a95c6196ee1))
* Update dependency markupsafe to v2.1.1 ([#40](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/40)) ([cc83a35](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/cc83a35082fafc720d864e6e4f92a32d60966619))
* Update dependency protobuf to v3.20.2 ([#41](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/41)) ([7f03dc0](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/7f03dc0a024d8a4d845f38d0ac515f07a5c11fb8))
* Update dependency protobuf to v4 ([#47](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/47)) ([291e576](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/291e5760e8d6d52cb8be03c80a2b3c6a1e60c590))
* Update dependency pyjwt to v2.5.0 ([#42](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/42)) ([f15a0dc](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/f15a0dcb0d2e097a8fd778a0c8dcb180dc2586ea))
* Update dependency requests to v2.28.1 ([#43](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/43)) ([125b1ea](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/125b1ea84d4bfc7f8976b2274cd7f0f26fbdcf28))
* Update dependency typing-extensions to v4.3.0 ([#44](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/44)) ([8fb2625](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/8fb26256d4c4c4f9f5dd4947282f88e55ce9345e))
* Update dependency zipp to v3.8.1 ([#45](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/issues/45)) ([6f0398b](https://togithub.com/googleapis/java-beyondcorp-clientconnectorservices/commit/6f0398b2bd7967356a475d1764dec464b7788038))

---
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*
---


## 0.1.0 (2022-10-03)


### Features

* Initial generation ([73d33e3](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/73d33e3a370edbe9103da074de40914787957dc1))


### Dependencies

* Update dependency cachetools to v5 ([#36](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/36)) ([00c5b9a](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/00c5b9aef065d27dd5ab43cf72db12eba84b9810))
* Update dependency click to v8.1.3 ([#21](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/21)) ([73b04a5](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/73b04a572ae1d016d9c27815edfbe715967812c9))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#4](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/4)) ([7ca6ac1](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/7ca6ac1da2e85e1263455085d3281bda15d55d4c))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#10](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/10)) ([b770f4f](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/b770f4f0861b9993e6126eb1518909ba24d41e03))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#12](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/12)) ([e58ae17](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/e58ae17fce8f832f76a24162648b79a13b1f5fb1))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#40](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/40)) ([ebca78b](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/ebca78b76d44c6815d5b110777a24d3201e1b2e5))
* Update dependency gcp-releasetool to v1.8.8 ([#17](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/17)) ([3e8f290](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/3e8f2902f71760ee907a66a484588e0951e84390))
* Update dependency google-api-core to v2.10.1 ([#22](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/22)) ([3c03e45](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/3c03e45a38ac4206a2ebb22d60e8f3c98f73dfea))
* Update dependency google-auth to v2.12.0 ([#23](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/23)) ([19a642d](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/19a642dcf120209a92fa4feb0860852c7b9dadf5))
* Update dependency google-cloud-core to v2.3.2 ([#18](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/18)) ([96e4100](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/96e4100d49250ad7d0d193e82b35469f00497b33))
* Update dependency google-cloud-storage to v2.5.0 ([#24](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/24)) ([4442cdb](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/4442cdb91c585ad92611c8fa942f009ccf7315e7))
* Update dependency google-crc32c to v1.5.0 ([#25](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/25)) ([286ce4f](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/286ce4ffbd9599691623d16bf8b2dfca6acae21f))
* Update dependency googleapis-common-protos to v1.56.4 ([#19](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/19)) ([943adf9](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/943adf9280495b73b6127a5b4a028c32cb304bed))
* Update dependency importlib-metadata to v4.12.0 ([#30](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/30)) ([5e89e2c](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/5e89e2c6513c8d425d1b4dc9128e50fe0da3add4))
* Update dependency jeepney to v0.8.0 ([#31](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/31)) ([462be32](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/462be326db2c66b0d533bb0df112e1ddf0497b8b))
* Update dependency jinja2 to v3.1.2 ([#32](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/32)) ([f70ac04](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/f70ac0414a70f5d940de5788950bd2f5864761ab))
* Update dependency markupsafe to v2.1.1 ([#26](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/26)) ([e2055bb](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/e2055bb7a9b36cdc09ff6f405c184ae780b5044d))
* Update dependency protobuf to v3.20.2 ([#27](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/27)) ([990e96c](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/990e96c00679eabba85653aa7bd03d6ef65300be))
* Update dependency protobuf to v4 ([#37](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/37)) ([270e175](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/270e175c19dece6b5f361b06e464d2b52a5d1ef2))
* Update dependency pyjwt to v2.5.0 ([#28](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/28)) ([d6a41e4](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/d6a41e4ee00a950c3020ced2ad02e6e1ef2b42ba))
* Update dependency requests to v2.28.1 ([#29](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/29)) ([2bd8ed3](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/2bd8ed3de7ae7e70cec631808700e46067f36a68))
* Update dependency typing-extensions to v4.3.0 ([#34](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/34)) ([95e0c9b](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/95e0c9b08828119d93c62172024db2e002346cdb))
* Update dependency zipp to v3.8.1 ([#35](https://togithub.com/googleapis/java-beyondcorp-clientgateways/issues/35)) ([a79d362](https://togithub.com/googleapis/java-beyondcorp-clientgateways/commit/a79d36275bfaa931db6bd805caddad8a19aa0445))

---
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*
---


## 0.1.0 (2022-10-03)


### Features

* Initial generation ([f949b6c](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/f949b6c984ef3949dd25ae7001461fc748b41383))


### Dependencies

* Update dependency certifi to v2022.9.24 ([#15](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/15)) ([f39faf5](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/f39faf5018bee4dd97d2f7fe1af939a6342a7c74))
* Update dependency charset-normalizer to v2.1.1 ([#19](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/19)) ([8e04672](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/8e04672bed8909d4cbdef5f0082cad591893fd8b))
* Update dependency click to v8.1.3 ([#20](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/20)) ([110cfc1](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/110cfc1e67534d2c0bbf792909188d61193e3e8c))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#4](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/4)) ([ae72d96](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/ae72d964c2f530475bec6115e3031f015e98c860))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#9](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/9)) ([66e5eb8](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/66e5eb8f56d01fdcea675a17cdf3532fb247bd49))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#11](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/11)) ([e814638](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/e81463819fb8bdfcc3a198656ae0981d668e01aa))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#40](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/40)) ([a33ad2c](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/a33ad2cef639334b95e7fa31a9898024260fa21a))
* Update dependency gcp-releasetool to v1.8.8 ([#16](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/16)) ([4725cb5](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/4725cb556890ff4e46d1d6150d6bffeb6143a1c9))
* Update dependency google-api-core to v2.10.1 ([#21](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/21)) ([181cfe4](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/181cfe47cf9d5524a850c7d11c3d9b1e83bdc236))
* Update dependency google-auth to v2.12.0 ([#22](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/22)) ([8e7a29a](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/8e7a29a26ca1fb1987865cdc6cc8bb52738d0ecc))
* Update dependency google-cloud-core to v2.3.2 ([#17](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/17)) ([f7a7014](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/f7a70144037f80bd1985bf1580fec3d27a19c73e))
* Update dependency google-cloud-storage to v2.5.0 ([#23](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/23)) ([e556549](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/e55654922de060cfebd4642b9e38dcf0440b21a2))
* Update dependency google-crc32c to v1.5.0 ([#24](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/24)) ([78de4f8](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/78de4f85ec715948ecd725cb903c2bcf09c97bfb))
* Update dependency googleapis-common-protos to v1.56.4 ([#18](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/18)) ([bd0ca69](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/bd0ca69ad2950e077ce74b3168d2c976a509a22a))
* Update dependency importlib-metadata to v4.12.0 ([#33](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/33)) ([cf0391b](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/cf0391bc5bbaf88daf6eb5a5d41c7c836be21542))
* Update dependency jeepney to v0.8.0 ([#34](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/34)) ([81795ce](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/81795ce3d13bbb6425e5b0129aeded33f2940fe5))
* Update dependency jinja2 to v3.1.2 ([#35](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/35)) ([004033b](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/004033b5c118e6fdbaf06aa0fdca5435e97d0c96))
* Update dependency keyring to v23.9.3 ([#36](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/36)) ([145c446](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/145c446ce85a298fb8543cea6d2c1fcb25ed2123))
* Update dependency markupsafe to v2.1.1 ([#25](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/25)) ([7fca8c4](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/7fca8c4a2c1b9e82a489a5bd18b0788153cfa6f6))
* Update dependency protobuf to v3.20.2 ([#26](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/26)) ([33f6adc](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/33f6adc5783d5021bd0112c2ac34bd196986fa09))
* Update dependency pyjwt to v2.5.0 ([#27](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/27)) ([7d63d69](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/7d63d69dbf7d9be0a310546c0d0193ad6e9f168c))
* Update dependency requests to v2.28.1 ([#28](https://togithub.com/googleapis/java-beyondcorp-appgateways/issues/28)) ([d484f4d](https://togithub.com/googleapis/java-beyondcorp-appgateways/commit/d484f4d26cefae1ab3afe6ea0063e31d8a9448fc))

---
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*
---


## 0.1.0 (2022-10-03)


### Features

* Initial generation ([dea3a0f](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/dea3a0f653c1da85555cfed02a901cb695fb0f2e))


### Dependencies

* Update dependency cachetools to v5 ([#36](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/36)) ([a522388](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/a52238843e98ef1f433d827927d7cbac7b47088f))
* Update dependency certifi to v2022.9.24 ([#16](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/16)) ([e53cb54](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/e53cb54b9cdffd3402d11af785b3b67408984e5d))
* Update dependency click to v8.1.3 ([#21](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/21)) ([04460f1](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/04460f131873a2418f38594ec86fa1e8b7b77f2a))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#4](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/4)) ([34cb549](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/34cb549e102fb7395ad64abf1dbdc4fda092bf48))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#10](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/10)) ([58dba07](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/58dba07e7458f2ad815b4368910571f6dc845ed5))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#12](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/12)) ([374bcd6](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/374bcd603524ef7d48b9eb769f7ef8d16ece8a3d))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#40](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/40)) ([0236600](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/0236600aa40b0f68f987508ed534348d66fd09c7))
* Update dependency gcp-releasetool to v1.8.8 ([#17](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/17)) ([c886c3e](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/c886c3e32e3adc9fa49c797b5e1d05ae86f43a65))
* Update dependency google-api-core to v2.10.1 ([#22](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/22)) ([24ee847](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/24ee8474025aae2b75067c70a7220f1a074cf6ed))
* Update dependency google-auth to v2.12.0 ([#23](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/23)) ([53c011f](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/53c011ffa18634c94d9b34b52738d75a1d2325c9))
* Update dependency google-cloud-core to v2.3.2 ([#18](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/18)) ([81ecd1f](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/81ecd1f945674a258b5a14e955719298ebe98d5c))
* Update dependency google-cloud-storage to v2.5.0 ([#24](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/24)) ([39f5b47](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/39f5b47dfed3e3c9343b922da0c822c59f5811ca))
* Update dependency google-crc32c to v1.5.0 ([#25](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/25)) ([d07b5b4](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/d07b5b480c8e341453ea3caef43692d414fd818e))
* Update dependency googleapis-common-protos to v1.56.4 ([#19](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/19)) ([ff460f4](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/ff460f40beb4d94b20afe44d0993fcdf941f99d0))
* Update dependency importlib-metadata to v4.12.0 ([#26](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/26)) ([acef6c0](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/acef6c0b20c20316b0cdea7a90a5c1e0d000ba1f))
* Update dependency jeepney to v0.8.0 ([#27](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/27)) ([b1ea79a](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/b1ea79ab99fb7baaa67f3529da1c9d21449312b9))
* Update dependency jinja2 to v3.1.2 ([#28](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/28)) ([8623f43](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/8623f431b605b8bddcad6b6c895f6d27ec3f0845))
* Update dependency keyring to v23.9.3 ([#29](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/29)) ([76a1829](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/76a1829319213bfb04fcc56379aa075a7e03ab7b))
* Update dependency markupsafe to v2.1.1 ([#30](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/30)) ([45cda26](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/45cda2646a527e12ae4389c677824c55f307db89))
* Update dependency protobuf to v3.20.2 ([#31](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/31)) ([f6a93cf](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/f6a93cf1dd6c76301eccf985db7cceb564e4c2f6))
* Update dependency protobuf to v4 ([#37](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/37)) ([49d9de2](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/49d9de25ac12a2a38811441bb76712d2c350f7de))
* Update dependency pyjwt to v2.5.0 ([#32](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/32)) ([e8ab209](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/e8ab2090eab251f7f4977335c428fa046a0fa542))
* Update dependency requests to v2.28.1 ([#33](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/33)) ([204c276](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/204c2765f435e7b927981958aa2564b5926ea9f8))
* Update dependency typing-extensions to v4.3.0 ([#34](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/34)) ([8c315d8](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/8c315d8edfc370b8d0465a0b297c9390c0fa96a0))
* Update dependency zipp to v3.8.1 ([#35](https://togithub.com/googleapis/java-beyondcorp-appconnections/issues/35)) ([f34b231](https://togithub.com/googleapis/java-beyondcorp-appconnections/commit/f34b231ea09e946b9550c30abf4ed239efaec292))

---
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 🚨 This issue needs some love. triage me I really want to be triaged.
Projects
None yet
Development

No branches or pull requests

3 participants