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

Entity.builder().set(String, long) doesn't exist? #36

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

Entity.builder().set(String, long) doesn't exist? #36

jgeewax opened this issue Mar 19, 2015 · 7 comments
Assignees
Labels
api: datastore Issues related to the Datastore API. type: question Request for information or clarification. Not an issue.

Comments

@jgeewax
Copy link

jgeewax commented Mar 19, 2015

I have the following code:

entity = Entity.builder(key)
  .set("name", "John Doe")
  .set("age", 30L) // I also tried 30 the int value, which failed similarly.
  .set("updated", false)
  .build();

This fails with the following error:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project hello-datastore: Compilation failure: Compilation failure:
[ERROR] /usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[18,58] error: incompatible types
[ERROR] 
[ERROR] could not parse error message:   required: KeyFactory
[ERROR] found:    Builder
[ERROR] /usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:29: error: no suitable method found for set(String,long)
[ERROR] .set("age", 30L)
[ERROR] ^
[ERROR] 
[ERROR] method Builder.set(String,Blob) is not applicable
[ERROR] (actual argument long cannot be converted to Blob by method invocation conversion)
[ERROR] method Builder.set(String,List) is not applicable
[ERROR] (actual argument long cannot be converted to List by method invocation conversion)
[ERROR] method Builder.set(String,FullEntity) is not applicable
[ERROR] (actual argument long cannot be converted to FullEntity by method invocation conversion)
[ERROR] method Builder.set(String,Key) is not applicable
[ERROR] (actual argument long cannot be converted to Key by method invocation conversion)
[ERROR] method Builder.set(String,DateTime) is not applicable
[ERROR] (actual argument long cannot be converted to DateTime by method invocation conversion)
[ERROR] method Builder.set(String,boolean) is not applicable
[ERROR] (actual argument long cannot be converted to boolean by method invocation conversion)
[ERROR] method Builder.set(String,String) is not applicable
[ERROR] (actual argument long cannot be converted to String by method invocation conversion)
[ERROR] method Builder.set(String,Value) is not applicable
[ERROR] (actual argument long cannot be converted to Value by method invocation conversion)
[ERROR] /usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[32,15] error: cannot find symbol
[ERROR] 

If I take away the .set("name", "John Doe") I get a different error...

@jgeewax jgeewax added type: question Request for information or clarification. Not an issue. api: datastore Issues related to the Datastore API. labels Mar 19, 2015
@jgeewax jgeewax added this to the Datastore Stable milestone Mar 19, 2015
@aozarov
Copy link
Contributor

aozarov commented Mar 19, 2015

You can put this in EntityTest and see that it works (I just did).

    Entity entity = Entity.builder(KEY1)
        .set("name", "John Doe")
        .set("age", 30) // I also tried 30 the int value, which failed similarly.
        .set("updated", false)
        .build();

what java version are you using? Also, might be related to the error above it...
Can you provide the whole file?

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

jgeewax commented Mar 20, 2015

Java version:

$ java -version
openjdk version "1.7.0-google-v6"
OpenJDK Runtime Environment (build 1.7.0-google-v6-86819614-77620724)
OpenJDK 64-Bit Server VM (build 24.76-b04, mixed mode)

The whole file is:

package org.geewax.hellodatastore;

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 = (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("age", 30L)
          .build();
    }
  }
}

What I'm seeing from my end is that chaining things together seems to break...

So for example, the following compiles without any issues:

      Entity.Builder builder = Entity.builder(key);
      builder.set("age", 30L);
      builder.set("updated", false);//.set("name", "John Doe");
      entity = builder.build();

But the following fails:

      Entity.Builder builder = Entity.builder(key);
      builder.set("age", 30L);
      builder.set("updated", false).set("name", "John Doe");
      entity = builder.build();

The trace is:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project hello-datastore: Compilation failure
[ERROR] /usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[29,35] error: no suitable method found for set(String,String)
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project hello-datastore: Compilation failure
/usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[29,35] error: no suitable method found for set(String,String)


        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation failure
/usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[29,35] error: no suitable method found for set(String,String)


        at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:516)
        at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:114)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
        ... 19 more

However, with some casting, this compiles without issue:

      Entity.Builder builder = Entity.builder(key);
      builder.set("age", 30L);
      ((Entity.Builder) builder.set("updated", false)).set("name", "John Doe");
      entity = builder.build();

Seems almost like .set() is returning something that is almost the right type, but needs to be explicitly cast to the type (Entity.Builder)...


Similarly, with the KeyFactory, I need to do some magical casting to make this all work. For example:

The following fails

KeyFactory keyFactory = datastore.newKeyFactory().kind("Person")

However the following compiles without issue

KeyFactory keyFactory = (KeyFactory) (datastore.newKeyFactory()).kind("Person")

Is there some magical thing that makes type casting "just work" ? Or am I just doing something really really stupid.... ?

@jgeewax
Copy link
Author

jgeewax commented Mar 20, 2015

Taking this down to the simplest example I can construct....

This compiles:

package org.geewax.hellodatastore;

import com.google.gcloud.datastore.Entity;
import com.google.gcloud.datastore.Key;

public class HelloDatastore {
  public static void main(String[] args) {
    Key key = Key.builder("dataset", "Person", "Jim").build();
    Entity.Builder builder = Entity.builder(key);
    System.out.println(builder.set("f", 30L));
  }
}

When run, it outputs

[INFO] --- exec-maven-plugin:1.3.2:java (default-cli) @ hello-datastore ---
[WARNING] Warning: killAfter is now deprecated. Do you need it ? Please comment on MEXEC-6.
com.google.gcloud.datastore.Entity$Builder@79089b11

This fails to compile (the only addition is .set("name", "Jim") chained onto things, which should be possible give the previous object was an Entity.Builder according to the prior output.

package org.geewax.hellodatastore;

import com.google.gcloud.datastore.Entity;
import com.google.gcloud.datastore.Key;

public class HelloDatastore {
  public static void main(String[] args) {
    Key key = Key.builder("dataset", "Person", "Jim").build();
    Entity.Builder builder = Entity.builder(key);
    System.out.println(builder.set("f", 30L).set("name", "Jim"));
  }
}

With the following trace:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project hello-datastore: Compilation failure
[ERROR] /usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[19,44] error: no suitable method found for set(String,String)
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project hello-datastore: Compilation failure
/usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[19,44] error: no suitable method found for set(String,String)


        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation failure
/usr/local/google/home/jjg/gcdjavasample/hello-datastore/src/main/java/org/geewax/hellodatastore/HelloDatastore.java:[19,44] error: no suitable method found for set(String,String)


        at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:516)
        at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:114)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
        ... 19 more

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

jgeewax commented Mar 20, 2015

OK I think I found the problem.

BaseEntity.Builder is a package-private class. So the tests would work (as they're in the same package) but something from another package (like anyone's project....) won't work :(

Can we make BaseEntity.Builder public?

@aozarov
Copy link
Contributor

aozarov commented Mar 20, 2015

I don't think this is a problem in this case.
Any public method M in a packaged scope class B that is extend by a public class A in the same package would be visible to all via A.
However, because indeed unit-tests in Java are typically using the same package as the class they test such errors could happen (which should raise the priority for examples/integration-test...).

I am still not sure what is the problem is in your case (though I start to wonder if the gcloud-java version that is being pulled and used in your example is not the version we are expecting 0.0.3)....
Running maven in verbose mode (-X) could help with that.

Also, I added examples package to gcloud-java, so maybe you want to give it a try (or improve on it)...

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

jgeewax commented Mar 20, 2015

I made the change locally, and the code compiles.

I think the issue is in the generic casting situation, because as I mentioned, when I cast the value to an Entity.Builder after calling .set(), everything works just fine.

When I don't cast and the BaseEntity.Builder class is private, code doesn't compile. When it's public, code compiles.

Can you try a test using gcloud-java from a different package and seeing where I'm coming from here? This is how our users will interact with the library, so if you can't reproduce there, I'll keep digging for a better solution and call this "works-for-me".

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

aozarov commented Mar 20, 2015

The problem was that @jgeewax was using an older version of maven (< 3.0) which was using (by default) an older version (<3.0) of maven-compiler-plugin (< 2.3). the maven-compiler-plugin version 2.2 and before is configured to use java source before 1.7 but gcloud-java is using java 1.7 features.
Possible solutions (any one should work):

  1. use a newer version of maven (3.0 or above)
  2. use a newer version of maven-compiler-plugin (2.3 or above)
  3. explicitly specify source/target with "1.7" for the maven-compiler-plugin configuration.

@aozarov aozarov closed this as completed Mar 20, 2015
garrettjonesgoogle pushed a commit to garrettjonesgoogle/gcloud-java that referenced this issue Mar 29, 2016
Fix surface issues based on Java review.
github-actions bot pushed a commit that referenced this issue Jun 23, 2022
🤖 I have created a release *beep* *boop*
---


## [0.2.1](googleapis/java-bare-metal-solution@v0.2.0...v0.2.1) (2022-06-23)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([#35](googleapis/java-bare-metal-solution#35)) ([6401e31](googleapis/java-bare-metal-solution@6401e31))

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


## [0.2.1](googleapis/java-gke-multi-cloud@v0.2.0...v0.2.1) (2022-07-13)


### Bug Fixes

* enable longpaths support for windows test ([#1485](https://github.com/googleapis/java-gke-multi-cloud/issues/1485)) ([#35](googleapis/java-gke-multi-cloud#35)) ([9dad4f8](googleapis/java-gke-multi-cloud@9dad4f8))

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

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.apache.maven.plugins:maven-deploy-plugin](https://maven.apache.org/plugins/) | `2.8.2` -> `3.0.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/compatibility-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/confidence-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

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

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

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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

---

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

---

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


## [0.3.0](googleapis/java-apigee-registry@v0.2.2...v0.3.0) (2022-08-22)


### Features

* added support for `force` field for API and API version deletion ([#35](googleapis/java-apigee-registry#35)) ([3371ba4](googleapis/java-apigee-registry@3371ba4))

---
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
- [ ] Regenerate this pull request now.

docs: removing comment from a deprecated field

PiperOrigin-RevId: 471626558

Source-Link: googleapis/googleapis@fff3f73

Source-Link: googleapis/googleapis-gen@a032c66
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTAzMmM2NjcxM2MwYTI5NzIwMmE2YTU5NzY1OGZmNjk3YzUzNjQyMCJ9
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [0.3.0](googleapis/java-batch@v0.2.2...v0.3.0) (2022-09-15)


### Features

* environment variables, disk interfaces ([e2fd744](googleapis/java-batch@e2fd744))
* environment variables, disk interfaces ([e2fd744](googleapis/java-batch@e2fd744))


### Bug Fixes

* Mark service_account_email as deprecated ([#36](googleapis/java-batch#36)) ([f9bc1b2](googleapis/java-batch@f9bc1b2))


### Documentation

* removing comment from a deprecated field ([f9bc1b2](googleapis/java-batch@f9bc1b2))


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#38](googleapis/java-batch#38)) ([28205e3](googleapis/java-batch@28205e3))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#40](googleapis/java-batch#40)) ([54abf68](googleapis/java-batch@54abf68))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Sep 30, 2022
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [cachetools](https://togithub.com/tkem/cachetools) | `==4.2.4` -> `==5.2.0` | [![age](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/compatibility-slim/4.2.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/confidence-slim/4.2.4)](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 |
|---|---|---|---|---|---|
| [cachetools](https://togithub.com/tkem/cachetools) | `==4.2.4` -> `==5.2.0` | [![age](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/compatibility-slim/4.2.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/cachetools/5.2.0/confidence-slim/4.2.4)](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 |
|---|---|---|---|---|---|
| [keyring](https://togithub.com/jaraco/keyring) | `==23.4.1` -> `==23.9.3` | [![age](https://badges.renovateapi.com/packages/pypi/keyring/23.9.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/keyring/23.9.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/keyring/23.9.3/compatibility-slim/23.4.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/keyring/23.9.3/confidence-slim/23.4.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 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-appconnectors).
<!--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.0 (2022-10-03)


### Features

* Generate new beyondcorp-appconectors library ([27629a4](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/27629a47f387e0e04ef5c99179ed094b204915fe))
* Initial generation ([153af6b](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/153af6bdf3a96af93557e99c1f8663613eaa6cc0))


### Dependencies

* Update dependency certifi to v2022.9.24 ([#17](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/17)) ([f75c926](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/f75c926ecef4c467f69d9c14f3099b801b451dc6))
* Update dependency charset-normalizer to v2.1.1 ([#21](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/21)) ([4042ac7](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/4042ac7062fa34b4e6779f0607a75eb357dd4279))
* Update dependency click to v8.1.3 ([#22](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/22)) ([8a2b696](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/8a2b696e4e473e5b2bc421564f0e0d0934179a15))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#5](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/5)) ([e5833ce](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/e5833ce9e2bdd291279ce936e6ab935eadb9157d))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#11](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/11)) ([c1d3c44](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/c1d3c4489d1c71bc5f44be57467dd02d16ce377a))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#13](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/13)) ([7ef86cb](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/7ef86cbcc4f67e4f615c3381b02010ad4e8f86c1))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#41](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/41)) ([d88b289](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/d88b28962cd5f43ab5c2cbe3d844df7fdcf94fb9))
* Update dependency gcp-releasetool to v1.8.8 ([#18](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/18)) ([9b1d714](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/9b1d714f18053d003b7f9e00e09bb261d8521aa4))
* Update dependency google-api-core to v2.10.1 ([#23](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/23)) ([823cfaf](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/823cfaf1186b851fe6160ba38c7dcbf5280025e1))
* Update dependency google-auth to v2.12.0 ([#24](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/24)) ([1483122](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/1483122c305601fff95ba6addbc971f5539aefc3))
* Update dependency google-cloud-core to v2.3.2 ([#19](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/19)) ([61bb987](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/61bb98734ffa87f128c2f7390568dabcd2f37ac8))
* Update dependency google-cloud-storage to v2.5.0 ([#25](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/25)) ([21d4dc2](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/21d4dc2ddb14cadd9471fc50488c98762df8409b))
* Update dependency google-crc32c to v1.5.0 ([#26](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/26)) ([d069713](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/d069713a85c1fce084b1bb7cc4ac5b9ee8c52852))
* Update dependency googleapis-common-protos to v1.56.4 ([#20](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/20)) ([47d77a2](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/47d77a2f94d713dbbfae7cf6b5f0cfa016102163))
* Update dependency importlib-metadata to v4.12.0 ([#35](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/35)) ([6f9a9e9](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/6f9a9e92cad9ff99762bf24dee631f4b755793c6))
* Update dependency jeepney to v0.8.0 ([#36](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/36)) ([bb3dfec](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/bb3dfec9f683e87d699ce1a038fef6fa2531a94b))
* Update dependency jinja2 to v3.1.2 ([#37](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/37)) ([c8e0f2a](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/c8e0f2a07c5d27183988851dd1fdeecfeb670565))
* Update dependency keyring to v23.9.3 ([#38](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/38)) ([7402dcf](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/7402dcf9ccf6f9fbda223be5950cc9ba326e1810))
* Update dependency markupsafe to v2.1.1 ([#27](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/27)) ([32e8a45](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/32e8a4533d48294985ae60dabee718ff723d284d))
* Update dependency protobuf to v3.20.2 ([#28](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/28)) ([2bf863f](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/2bf863f3d80be6009364f45e5cd877933f7046ba))
* Update dependency pyjwt to v2.5.0 ([#29](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/29)) ([c25d02a](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/c25d02a01c5c9b547e863b17e6d7f67fe7b11892))
* Update dependency zipp to v3.8.1 ([#32](https://togithub.com/googleapis/java-beyondcorp-appconnectors/issues/32)) ([d7946a8](https://togithub.com/googleapis/java-beyondcorp-appconnectors/commit/d7946a8d4b25af1732b039b2acadcad3c89c5962))

---
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: datastore Issues related to the Datastore API. type: question Request for information or clarification. Not an issue.
Projects
None yet
Development

No branches or pull requests

2 participants