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

KeyFactory.kind() requires a cast... didn't expect that at all... #35

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

KeyFactory.kind() requires a cast... didn't expect that at all... #35

jgeewax opened this issue Mar 19, 2015 · 4 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

Code I had was:

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

Error I was getting was:

[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,58] error: incompatible types
[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,58] error: incompatible types


        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,58] error: incompatible types


        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
[ERROR] 
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

Changing this to

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

fixed the problem

However the docs at http://googlecloudplatform.github.io/gcloud-java/apidocs/com/google/gcloud/datastore/package-summary.html say I shouldn't need to do this :(

@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

How is that different from DatastoreServiceTest#testKeyFactory. it does the same and does not require a cast. did mvn compile on the github clone work fine for you?

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

jgeewax commented Mar 20, 2015

mvn compile (AND mvn test) on the GH cloned repository work just fine... but the project I created using the "Maven in 5 minutes" guide depending on version 0.0.3 fails.

Here is my pom.xml file:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.geewax.hellodatastore</groupId>
  <artifactId>hello-datastore</artifactId>
  <packaging>jar</packaging>
  <version>1.0</version>
  <name>hello-datastore</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.gcloud</groupId>
      <artifactId>gcloud-java</artifactId>
      <version>0.0.3</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.3.2</version>
      </plugin>
    </plugins>
  </build>
</project>

Any ideas? It was a completely fresh project...

@aozarov
Copy link
Contributor

aozarov commented Mar 20, 2015

I assume this issue is a dup of issue #36?

@jgeewax
Copy link
Author

jgeewax commented Mar 23, 2015

Yes I believe it is.

@jgeewax jgeewax closed this as completed Mar 23, 2015
garrettjonesgoogle pushed a commit to garrettjonesgoogle/gcloud-java that referenced this issue Mar 29, 2016
Rename ApiCallableBuilder -> Builder in gax.
github-actions bot pushed a commit that referenced this issue Jun 23, 2022
…cies to v2.13.0 (#35)

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `2.12.0` -> `2.13.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/compatibility-slim/2.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-dependencies/2.13.0/confidence-slim/2.12.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v2.13.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;2130-httpsgithubcomgoogleapisjava-shared-dependenciescomparev2120v2130-2022-06-22)

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

##### Dependencies

-   update dependency com.google.api-client:google-api-client-bom to v1.35.0 ([#&#8203;709](https://togithub.com/googleapis/java-shared-dependencies/issues/709)) ([239f8c3](https://togithub.com/googleapis/java-shared-dependencies/commit/239f8c33a11e233e6af79aee8c7e68cd156a0554))
-   update dependency com.google.api-client:google-api-client-bom to v1.35.1 ([#&#8203;713](https://togithub.com/googleapis/java-shared-dependencies/issues/713)) ([6559b45](https://togithub.com/googleapis/java-shared-dependencies/commit/6559b45b027dba783a9525d35e32183d78773cbe))
-   update dependency com.google.api:api-common to v2.2.1 ([#&#8203;710](https://togithub.com/googleapis/java-shared-dependencies/issues/710)) ([650d4c5](https://togithub.com/googleapis/java-shared-dependencies/commit/650d4c5f8c3cfce711257d47280ad773cd2e2414))
-   update dependency com.google.errorprone:error_prone_annotations to v2.14.0 ([#&#8203;701](https://togithub.com/googleapis/java-shared-dependencies/issues/701)) ([d24730f](https://togithub.com/googleapis/java-shared-dependencies/commit/d24730f78669f80b109e590b903446e5552e3e36))
-   update dependency com.google.http-client:google-http-client-bom to v1.42.0 ([#&#8203;711](https://togithub.com/googleapis/java-shared-dependencies/issues/711)) ([5168a18](https://togithub.com/googleapis/java-shared-dependencies/commit/5168a181722128d434a0d0d2ab5cc485686bbc78))
-   update dependency com.google.oauth-client:google-oauth-client-bom to v1.34.0 ([#&#8203;708](https://togithub.com/googleapis/java-shared-dependencies/issues/708)) ([620336e](https://togithub.com/googleapis/java-shared-dependencies/commit/620336e6733e2017116e5e8a7b403b183a728bc1))
-   update dependency com.google.oauth-client:google-oauth-client-bom to v1.34.1 ([#&#8203;712](https://togithub.com/googleapis/java-shared-dependencies/issues/712)) ([a2c18a5](https://togithub.com/googleapis/java-shared-dependencies/commit/a2c18a5bc4152cc9034cec691a29f54a35c38a51))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.0 ([#&#8203;703](https://togithub.com/googleapis/java-shared-dependencies/issues/703)) ([5f9fe12](https://togithub.com/googleapis/java-shared-dependencies/commit/5f9fe1200b4bdf4c54bf947c21bd3ed02f26f990))
-   update dependency com.google.protobuf:protobuf-bom to v3.21.1 ([#&#8203;705](https://togithub.com/googleapis/java-shared-dependencies/issues/705)) ([c68edfb](https://togithub.com/googleapis/java-shared-dependencies/commit/c68edfbe7e1993e1112640b867b29aa2fbcf7579))
-   update dependency io.grpc:grpc-bom to v1.47.0 ([#&#8203;707](https://togithub.com/googleapis/java-shared-dependencies/issues/707)) ([d02918a](https://togithub.com/googleapis/java-shared-dependencies/commit/d02918a0418cd65d1d247f27afb0637f1f8f5666))
-   update dependency org.checkerframework:checker-qual to v3.22.1 ([#&#8203;706](https://togithub.com/googleapis/java-shared-dependencies/issues/706)) ([545843b](https://togithub.com/googleapis/java-shared-dependencies/commit/545843b492cead230b8cc72a1dae7d4922f33b39))
-   update dependency org.checkerframework:checker-qual to v3.22.2 ([#&#8203;717](https://togithub.com/googleapis/java-shared-dependencies/issues/717)) ([142852a](https://togithub.com/googleapis/java-shared-dependencies/commit/142852a37140f221197f5c71aed451def353b1e0))
-   update gax.version to v2.18.2 ([#&#8203;718](https://togithub.com/googleapis/java-shared-dependencies/issues/718)) ([5f8156e](https://togithub.com/googleapis/java-shared-dependencies/commit/5f8156e55c6a07b018a8c5efafa68be781b4288b))
-   update google.common-protos.version to v2.9.0 ([#&#8203;714](https://togithub.com/googleapis/java-shared-dependencies/issues/714)) ([9e5591e](https://togithub.com/googleapis/java-shared-dependencies/commit/9e5591ec3035350450ecbfebd00e08216433b06c))
-   update google.core.version to v2.8.0 ([#&#8203;719](https://togithub.com/googleapis/java-shared-dependencies/issues/719)) ([4023c60](https://togithub.com/googleapis/java-shared-dependencies/commit/4023c6063a2c5b5308da531df1a08c90c491965d))
-   update iam.version to v1.4.0 ([#&#8203;700](https://togithub.com/googleapis/java-shared-dependencies/issues/700)) ([c1097a4](https://togithub.com/googleapis/java-shared-dependencies/commit/c1097a46ab0739b0b7234bc510e4c3d9ce2c2861))
-   update iam.version to v1.4.1 ([#&#8203;716](https://togithub.com/googleapis/java-shared-dependencies/issues/716)) ([e2dc7c2](https://togithub.com/googleapis/java-shared-dependencies/commit/e2dc7c21c39e007878841e2664d548ec44a72d54))

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bare-metal-solution).
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@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
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 18, 2022
…-info-reports-plugin to v3.4.0 (#35)

[![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-project-info-reports-plugin](https://maven.apache.org/plugins/) ([source](https://togithub.com/apache/maven-project-info-reports-plugin)) | `3.3.0` -> `3.4.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/compatibility-slim/3.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/confidence-slim/3.3.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**: 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
🤖 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 |
|---|---|---|---|---|---|
| [jinja2](https://palletsprojects.com/p/jinja/) ([changelog](https://jinja.palletsprojects.com/changes/)) | `==3.0.3` -> `==3.1.2` | [![age](https://badges.renovateapi.com/packages/pypi/jinja2/3.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/jinja2/3.1.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/jinja2/3.1.2/compatibility-slim/3.0.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/jinja2/3.1.2/confidence-slim/3.0.3)](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 |
|---|---|---|---|---|---|
| [zipp](https://togithub.com/jaraco/zipp) | `==3.6.0` -> `==3.8.1` | [![age](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/compatibility-slim/3.6.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/confidence-slim/3.6.0)](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 |
|---|---|---|---|---|---|
| [importlib-metadata](https://togithub.com/python/importlib_metadata) | `==4.8.3` -> `==4.12.0` | [![age](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/compatibility-slim/4.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/confidence-slim/4.8.3)](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 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 |
|---|---|---|---|---|---|
| [zipp](https://togithub.com/jaraco/zipp) | `==3.6.0` -> `==3.8.1` | [![age](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/compatibility-slim/3.6.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/zipp/3.8.1/confidence-slim/3.6.0)](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 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.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