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

Avoid downloading gcd if gcloud is installed and gcd version matches v1beta2 #162

Merged
merged 5 commits into from
Sep 18, 2015

Conversation

mziccard
Copy link
Contributor

This PR checks whether gcloud and gcd are already installed, as per issue #123. If gcd is installed and its version matches v1beta2 then we use it, otherwise we download a matching version.

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Sep 15, 2015
@jgeewax
Copy link

jgeewax commented Sep 15, 2015

/cc @aozarov :)

@jgeewax jgeewax added the api: datastore Issues related to the Datastore API. label Sep 15, 2015
@@ -62,17 +64,85 @@
public static final String DEFAULT_PROJECT_ID = "projectid1";
public static final int PORT = 8080;
private static final String GCD = "gcd-v1beta2-rev1-2.1.2b";

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

@aozarov
Copy link
Contributor

aozarov commented Sep 15, 2015

Thanks Marco, few small comments.

@mziccard
Copy link
Contributor Author

@aozarov First, thanks for the feedback. I refactored the process invocation code (added a class to wrap it) and added some fine-grained logging. I also fixed your other minor suggestions.
It took me ages to test this on windows as I think I stumbled upon an issue with the gcd.cmd script (https://github.com/GoogleCloudPlatform/gcloud/issues/37).

if (log.isLoggable(Level.FINE)) {
log.log(Level.FINE, "Creating datastore for the project: {0}", projectId);
}
Process temp = gcdCreateCommand.command(gcdAbsolutePath.toString(), "create", "-p", projectId,

This comment was marked as spam.

This comment was marked as spam.

@aozarov
Copy link
Contributor

aozarov commented Sep 18, 2015

Looks good. 2 small changes and I think its ready to be merged.

@aozarov
Copy link
Contributor

aozarov commented Sep 18, 2015

Nice. Thank you!

aozarov added a commit that referenced this pull request Sep 18, 2015
Avoid downloading gcd if gcloud is installed and gcd version matches v1beta2
@aozarov aozarov merged commit 71b62e8 into googleapis:master Sep 18, 2015
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jun 29, 2022
…oogleapis#162)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [com.google.protobuf:protobuf-bom](https://developers.google.com/protocol-buffers/) ([source](https://togithub.com/protocolbuffers/protobuf)) | minor | `3.11.4` -> `3.12.0` |

---

### Release Notes

<details>
<summary>protocolbuffers/protobuf</summary>

### [`v3.12.0`](https://togithub.com/protocolbuffers/protobuf/releases/v3.12.0)

[Compare Source](https://togithub.com/protocolbuffers/protobuf/compare/v3.11.4...v3.12.0)

### Protocol Compiler

-   [experimental] Singular, non-message typed fields in proto3 now support
    presence tracking. This is enabled by adding the "optional" field label and
    passing the `--experimental_allow_proto3_optional` flag to protoc.
    -   For usage info, see [docs/field_presence.md](docs/field_presence.md).
    -   During this experimental phase, code generators should update to support
        proto3 presence, see [docs/implementing_proto3_presence.md](docs/implementing_proto3_presence.md) for instructions.
-   Allow duplicate symbol names when multiple descriptor sets are passed on
    the command-line, to match the behavior when multiple .proto files are passed.
-   Deterministic `protoc --descriptor_set_out` ([#&googleapis#8203;7175](https://togithub.com/protocolbuffers/protobuf/issues/7175))

### C++

-   [experimental] Added proto3 presence support.
-   New descriptor APIs to support proto3 presence.
-   Fix for [#&googleapis#8203;7463](https://togithub.com/protocolbuffers/protobuf/issues/7463) in -rc1 (core dump mixing optional and singular fields in proto3)
-   Enable Arenas by default on all .proto files.
-   Documented that users are not allowed to subclass Message or MessageLite.
-   Mark generated classes as final; inheriting from protos is strongly discouraged.
-   Add stack overflow protection for text format with unknown fields.
-   Add accessors for map key and value FieldDescriptors.
-   Add FieldMaskUtil::FromFieldNumbers().
-   MessageDifferencer: use ParsePartial() on Any fields so the diff does not
    fail when there are missing required fields.
-   ReflectionOps::Merge(): lookup messages in the right factory, if it can.
-   Added Descriptor::WellKnownTypes enum and Descriptor::well_known_type()
    accessor as an easier way of determining if a message is a Well-Known Type.
-   Optimized RepeatedField::Add() when it is used in a loop.
-   Made proto move/swap more efficient.
-   De-virtualize the GetArena() method in MessageLite.
-   Improves performance of json_stream_parser.cc by factor 1000 ([#&googleapis#8203;7230](https://togithub.com/protocolbuffers/protobuf/issues/7230))
-   bug: [#&googleapis#8203;7076](https://togithub.com/protocolbuffers/protobuf/issues/7076) undefine Windows OUT and OPTIONAL macros ([#&googleapis#8203;7087](https://togithub.com/protocolbuffers/protobuf/issues/7087))
-   Fixed a bug in FieldDescriptor::DebugString() that would erroneously print
    an "optional" label for a field in a oneof.
-   Fix bug in parsing bool extensions that assumed they are always 1 byte.
-   Fix off-by-one error in FieldOptions::ByteSize() when extensions are present.
-   Clarified the comments to show an example of the difference between
    Descriptor::extension and DescriptorPool::FindAllExtensions.
-   Add a compiler option 'code_size' to force optimize_for=code_size on all
    protos where this is possible.

### Java

-   [experimental] Added proto3 presence support.
-   Fix for [#&googleapis#8203;7480](https://togithub.com/protocolbuffers/protobuf/issues/7480) in -rc1 ("TextFormat and JsonFormat ignore experimental proto3 optional enums")
-   Fix for [#&googleapis#8203;7505](https://togithub.com/protocolbuffers/protobuf/issues/7505) in -rc1 (" toString() returns incorrect ascii when there are duplicate keys in a map")
-   Mark java enum \_VALUE constants as [@&googleapis#8203;Deprecated](https://togithub.com/Deprecated) if the enum field is deprecated
-   reduce <clinit> size for enums with allow_alias set to true.
-   Sort map fields alphabetically by the field's key when printing textproto.
-   TextFormat.merge() handles Any as top level type.
-   Throw a descriptive IllegalArgumentException when calling
    getValueDescriptor() on enum special value UNRECOGNIZED instead of
    ArrayIndexOutOfBoundsException.
-   Fixed an issue with JsonFormat.printer() where setting printingEnumsAsInts()
    would override the configuration passed into includingDefaultValueFields().
-   Implement overrides of indexOf() and contains() on primitive lists returned
    for repeated fields to avoid autoboxing the list contents.
-   Add overload to FieldMaskUtil.fromStringList that accepts a descriptor.
-   [bazel] Move Java runtime/toolchains into //java ([#&googleapis#8203;7190](https://togithub.com/protocolbuffers/protobuf/issues/7190))

### Python

-   [experimental] Added proto3 presence support.
-   [experimental] fast import protobuf module, only works with cpp generated code linked in.
-   Truncate 'float' fields to 4 bytes of precision in setters for pure-Python
    implementation (C++ extension was already doing this).
-   Fixed a memory leak in C++ bindings.
-   Added a deprecation warning when code tries to create Descriptor objects
    directly.
-   Fix unintended comparison between bytes and string in descriptor.py.
-   Avoid printing excess digits for float fields in TextFormat.
-   Remove Python 2.5 syntax compatibility from the proto compiler generated \_pb2.py module code.
-   Drop 3.3, 3.4 and use single version docker images for all python tests ([#&googleapis#8203;7396](https://togithub.com/protocolbuffers/protobuf/issues/7396))

### JavaScript

-   Fix js message pivot selection ([#&googleapis#8203;6813](https://togithub.com/protocolbuffers/protobuf/issues/6813))

### PHP

-   Persistent Descriptor Pool ([#&googleapis#8203;6899](https://togithub.com/protocolbuffers/protobuf/issues/6899))
-   Implement lazy loading of php class for proto messages ([#&googleapis#8203;6911](https://togithub.com/protocolbuffers/protobuf/issues/6911))
-   Correct [@&googleapis#8203;return](https://togithub.com/return) in Any.unpack docblock ([#&googleapis#8203;7089](https://togithub.com/protocolbuffers/protobuf/issues/7089))
-   Ignore unknown enum value when ignore_unknown specified ([#&googleapis#8203;7455](https://togithub.com/protocolbuffers/protobuf/issues/7455))

### Ruby

-   [experimental] Implemented proto3 presence for Ruby. ([#&googleapis#8203;7406](https://togithub.com/protocolbuffers/protobuf/issues/7406))
-   Stop building binary gems for ruby &lt;2.5 ([#&googleapis#8203;7453](https://togithub.com/protocolbuffers/protobuf/issues/7453))
-   Fix for wrappers with a zero value ([#&googleapis#8203;7195](https://togithub.com/protocolbuffers/protobuf/issues/7195))
-   Fix for JSON serialization of 0/empty-valued wrapper types ([#&googleapis#8203;7198](https://togithub.com/protocolbuffers/protobuf/issues/7198))
-   Call "Class#new" over rb_class_new_instance in decoding ([#&googleapis#8203;7352](https://togithub.com/protocolbuffers/protobuf/issues/7352))
-   Build extensions for Ruby 2.7 ([#&googleapis#8203;7027](https://togithub.com/protocolbuffers/protobuf/issues/7027))
-   assigning 'nil' to submessage should clear the field. ([#&googleapis#8203;7397](https://togithub.com/protocolbuffers/protobuf/issues/7397))

### C

-   [experimental] Add support for proto3 presence fields in C# ([#&googleapis#8203;7382](https://togithub.com/protocolbuffers/protobuf/issues/7382))
-   Cleanup various bits of Google.Protobuf ([#&googleapis#8203;6674](https://togithub.com/protocolbuffers/protobuf/issues/6674))
-   Fix conformance test failures for Google.Protobuf ([#&googleapis#8203;6910](https://togithub.com/protocolbuffers/protobuf/issues/6910))
-   Fix latest ArgumentException for C# extensions ([#&googleapis#8203;6938](https://togithub.com/protocolbuffers/protobuf/issues/6938))
-   Remove unnecessary branch from ReadTag ([#&googleapis#8203;7289](https://togithub.com/protocolbuffers/protobuf/issues/7289))
-   Enforce recursion depth checking for unknown fields ([#&googleapis#8203;7132](https://togithub.com/protocolbuffers/protobuf/issues/7132))
-   Mark GetOption API as obsolete and expose the "GetOptions()" method
    on descriptors instead ([#&googleapis#8203;7491](https://togithub.com/protocolbuffers/protobuf/issues/7491))
-   Remove Has/Clear members for C# message fields in proto2 ([#&googleapis#8203;7429](https://togithub.com/protocolbuffers/protobuf/issues/7429))

### Objective-C

-   [experimental] ObjC Proto3 optional support ([#&googleapis#8203;7421](https://togithub.com/protocolbuffers/protobuf/issues/7421))
-   Block subclassing of generated classes ([#&googleapis#8203;7124](https://togithub.com/protocolbuffers/protobuf/issues/7124))
-   Use references to Obj C classes instead of names in descriptors. ([#&googleapis#8203;7026](https://togithub.com/protocolbuffers/protobuf/issues/7026))
-   Revisit how the WKTs are bundled with ObjC. ([#&googleapis#8203;7173](https://togithub.com/protocolbuffers/protobuf/issues/7173))

### Other

-   Add a proto_lang_toolchain for javalite ([#&googleapis#8203;6882](https://togithub.com/protocolbuffers/protobuf/issues/6882))
-   [bazel] Update gtest and deprecate //external:{gtest,gtest_main} ([#&googleapis#8203;7237](https://togithub.com/protocolbuffers/protobuf/issues/7237))
-   Add application note for explicit presence tracking. ([#&googleapis#8203;7390](https://togithub.com/protocolbuffers/protobuf/issues/7390))
-   Howto doc for implementing proto3 presence in a code generator. ([#&googleapis#8203;7407](https://togithub.com/protocolbuffers/protobuf/issues/7407))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

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

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

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

---

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

---

This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-resourcemanager).
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jun 29, 2022
🤖 I have created a release \*beep\* \*boop\* 
---
## [0.118.0](https://www.github.com/googleapis/java-resourcemanager/compare/v0.117.2...v0.118.0) (2020-08-10)


### Features

* expose apis of resourcemanager folders ([googleapis#99](https://www.github.com/googleapis/java-resourcemanager/issues/99)) ([5187637](https://www.github.com/googleapis/java-resourcemanager/commit/51876371e0be10ed7531127d04cfca0ee4b410ca))
* implement testPermission api of organizations ([googleapis#125](https://www.github.com/googleapis/java-resourcemanager/issues/125)) ([a80889f](https://www.github.com/googleapis/java-resourcemanager/commit/a80889f947d6e190bfd80e8cf02586a38f235409))
* **deps:** adopt flatten plugin and google-cloud-shared-dependencies ([googleapis#191](https://www.github.com/googleapis/java-resourcemanager/issues/191)) ([b505081](https://www.github.com/googleapis/java-resourcemanager/commit/b50508137a3c009269371d91b3bbf4145db08818))


### Dependencies

* update core dependencies ([googleapis#133](https://www.github.com/googleapis/java-resourcemanager/issues/133)) ([ae2003e](https://www.github.com/googleapis/java-resourcemanager/commit/ae2003e7c8633018e02e53fb489de726330bcda5))
* update core dependencies to v1.93.3 ([googleapis#104](https://www.github.com/googleapis/java-resourcemanager/issues/104)) ([35528d1](https://www.github.com/googleapis/java-resourcemanager/commit/35528d155264781bc51dab542acd76452e6e0f72))
* update dependency com.google.api:api-common to v1.9.0 ([googleapis#120](https://www.github.com/googleapis/java-resourcemanager/issues/120)) ([54a5f79](https://www.github.com/googleapis/java-resourcemanager/commit/54a5f793cbfe08c20cbd6f00edf120727673343e))
* update dependency com.google.api:api-common to v1.9.1 ([googleapis#168](https://www.github.com/googleapis/java-resourcemanager/issues/168)) ([44ad341](https://www.github.com/googleapis/java-resourcemanager/commit/44ad341f2d81c46b0020e66d8a2c636ab095cc92))
* update dependency com.google.api:api-common to v1.9.2 ([googleapis#174](https://www.github.com/googleapis/java-resourcemanager/issues/174)) ([cfbba2f](https://www.github.com/googleapis/java-resourcemanager/commit/cfbba2f40fe142265c9be0316cafc06256fdc0e8))
* update dependency com.google.api:gax-bom to v1.55.0 ([googleapis#124](https://www.github.com/googleapis/java-resourcemanager/issues/124)) ([d4ded56](https://www.github.com/googleapis/java-resourcemanager/commit/d4ded56efaffbf0477f781270a618521239e50b2))
* update dependency com.google.apis:google-api-services-cloudresourcemanager to v1-rev20200311-1.30.9 ([googleapis#100](https://www.github.com/googleapis/java-resourcemanager/issues/100)) ([25d0ade](https://www.github.com/googleapis/java-resourcemanager/commit/25d0ade06c0f2f7bb2702b4f832e65aad0f90b34))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.8.2 ([googleapis#204](https://www.github.com/googleapis/java-resourcemanager/issues/204)) ([fe0af27](https://www.github.com/googleapis/java-resourcemanager/commit/fe0af2737f2463d2452ac05dd3edc452f50b99d6))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.8.4 ([googleapis#206](https://www.github.com/googleapis/java-resourcemanager/issues/206)) ([61a40c6](https://www.github.com/googleapis/java-resourcemanager/commit/61a40c6865e435e36910bc2f5b1da64be1813a60))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.8.6 ([googleapis#212](https://www.github.com/googleapis/java-resourcemanager/issues/212)) ([7ce8ce2](https://www.github.com/googleapis/java-resourcemanager/commit/7ce8ce24f83d84b7962557f968d92325343ee094))
* update dependency com.google.guava:guava-bom to v29 ([googleapis#138](https://www.github.com/googleapis/java-resourcemanager/issues/138)) ([4fc1bb3](https://www.github.com/googleapis/java-resourcemanager/commit/4fc1bb3b085d5847b00476c7e52fa36113c75eb6))
* update dependency com.google.http-client:google-http-client-bom to v1.35.0 ([googleapis#156](https://www.github.com/googleapis/java-resourcemanager/issues/156)) ([3b628c8](https://www.github.com/googleapis/java-resourcemanager/commit/3b628c86b9047f048ccb93e220958e7e72e87e0f))
* update dependency com.google.protobuf:protobuf-bom to v3.12.0 ([googleapis#162](https://www.github.com/googleapis/java-resourcemanager/issues/162)) ([d07a72d](https://www.github.com/googleapis/java-resourcemanager/commit/d07a72de5ab5918a688a9ad1a1b0a125f9b6db07))
* update dependency com.google.protobuf:protobuf-bom to v3.12.2 ([googleapis#166](https://www.github.com/googleapis/java-resourcemanager/issues/166)) ([43a221e](https://www.github.com/googleapis/java-resourcemanager/commit/43a221e6b5584188ae55d320d7a6dbeed78dbd1f))
* update dependency org.threeten:threetenbp to v1.4.2 ([googleapis#112](https://www.github.com/googleapis/java-resourcemanager/issues/112)) ([2ef23e8](https://www.github.com/googleapis/java-resourcemanager/commit/2ef23e853af809847e7b323fd3dd6a651b323cc1))
* update dependency org.threeten:threetenbp to v1.4.3 ([googleapis#131](https://www.github.com/googleapis/java-resourcemanager/issues/131)) ([5669f1e](https://www.github.com/googleapis/java-resourcemanager/commit/5669f1e70092181c1ab8e1f9e12dad9feb2ea787))
* update dependency org.threeten:threetenbp to v1.4.4 ([googleapis#155](https://www.github.com/googleapis/java-resourcemanager/issues/155)) ([ac8a2a2](https://www.github.com/googleapis/java-resourcemanager/commit/ac8a2a24c68c5264dc90b90bcdb3bfd0adfa51df))
---


This PR was generated with [Release Please](https://github.com/googleapis/release-please).
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jun 29, 2022
…oogleapis#162)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 457524730

Source-Link: googleapis/googleapis@917e7f2

Source-Link: https://github.com/googleapis/googleapis-gen/commit/2497f9a069d3f6b2d6810d5a4e239cda1e7e5a39
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjQ5N2Y5YTA2OWQzZjZiMmQ2ODEwZDVhNGUyMzljZGExZTdlNWEzOSJ9
github-actions bot pushed a commit that referenced this pull request Jul 1, 2022
This PR was generated using Autosynth. 🌈


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

```
2020-12-11 21:03:20,404 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-workflows/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2020-12-11 21:03:21,266 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.

```
</details>

Full log will be available here:
https://source.cloud.google.com/results/invocations/dbd9c600-3097-461d-a7b1-b0b003872620/targets

- [ ] To automatically regenerate this PR, check this box.
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this pull request Jul 1, 2022
🤖 I have created a release *beep* *boop*
---


## [1.2.0](googleapis/java-storage-transfer@v1.1.0...v1.2.0) (2022-07-01)


### Features

* Enable REST transport for most of Java and Go clients ([googleapis#159](googleapis/java-storage-transfer#159)) ([484473a](googleapis/java-storage-transfer@484473a))


### Bug Fixes

* update gapic-generator-java with mock service generation fixes ([googleapis#162](googleapis/java-storage-transfer#162)) ([5b46c0c](googleapis/java-storage-transfer@5b46c0c))


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.13.0 ([googleapis#158](googleapis/java-storage-transfer#158)) ([8e48e49](googleapis/java-storage-transfer@8e48e49))

---
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 pull request Sep 15, 2022
…cies to v3.0.2 (#162)

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

This PR contains the following updates:

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

---

### Release Notes

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

### [`v3.0.2`](https://togithub.com/googleapis/java-shared-dependencies/blob/HEAD/CHANGELOG.md#&#8203;302-httpsgithubcomgoogleapisjava-shared-dependenciescomparev301v302-2022-09-08)

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

##### Dependencies

-   Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4 ([#&#8203;789](https://togithub.com/googleapis/java-shared-dependencies/issues/789)) ([6cf91a9](https://togithub.com/googleapis/java-shared-dependencies/commit/6cf91a96b9ea6af0fb845b50582dac7aa2892cab))
-   Update dependency com.google.auth:google-auth-library-bom to v1.10.0 ([#&#8203;781](https://togithub.com/googleapis/java-shared-dependencies/issues/781)) ([8859e61](https://togithub.com/googleapis/java-shared-dependencies/commit/8859e61808bfc5cd9546e27e945fc855b36d2554))
-   Update dependency com.google.auth:google-auth-library-bom to v1.11.0 ([#&#8203;790](https://togithub.com/googleapis/java-shared-dependencies/issues/790)) ([3431a47](https://togithub.com/googleapis/java-shared-dependencies/commit/3431a471cbf874a67a4f1a42e31f0ed891dedc92))
-   Update dependency com.google.auth:google-auth-library-bom to v1.9.0 ([#&#8203;773](https://togithub.com/googleapis/java-shared-dependencies/issues/773)) ([27fc79f](https://togithub.com/googleapis/java-shared-dependencies/commit/27fc79f00ee70011df6a368bb8fcfad7f0ce41f0))
-   Update dependency com.google.errorprone:error_prone_annotations to v2.15.0 ([#&#8203;776](https://togithub.com/googleapis/java-shared-dependencies/issues/776)) ([bf333b8](https://togithub.com/googleapis/java-shared-dependencies/commit/bf333b8c88072d21cb959db4d3328bbb55d9ef5c))
-   Update dependency com.google.protobuf:protobuf-bom to v3.21.5 ([#&#8203;780](https://togithub.com/googleapis/java-shared-dependencies/issues/780)) ([da7f44d](https://togithub.com/googleapis/java-shared-dependencies/commit/da7f44d71d6d7f372b5313dab68ce220308614d4))
-   Update dependency io.grpc:grpc-bom to v1.48.1 ([#&#8203;768](https://togithub.com/googleapis/java-shared-dependencies/issues/768)) ([5c7768d](https://togithub.com/googleapis/java-shared-dependencies/commit/5c7768d3c9665dd356de6c39c0a6a5fa6e992f2e))
-   Update dependency io.grpc:grpc-bom to v1.49.0 ([#&#8203;786](https://togithub.com/googleapis/java-shared-dependencies/issues/786)) ([8734812](https://togithub.com/googleapis/java-shared-dependencies/commit/8734812f1b4e2faaa48caf41eff59a85892ae344))
-   Update dependency org.checkerframework:checker-qual to v3.24.0 ([#&#8203;775](https://togithub.com/googleapis/java-shared-dependencies/issues/775)) ([df74b7b](https://togithub.com/googleapis/java-shared-dependencies/commit/df74b7b0dd5dd592523f302d9fb36adb5991cb0b))
-   Update dependency org.checkerframework:checker-qual to v3.25.0 ([#&#8203;788](https://togithub.com/googleapis/java-shared-dependencies/issues/788)) ([207035b](https://togithub.com/googleapis/java-shared-dependencies/commit/207035bd04c9305899eea540acbefaf06a7b1ec9))
-   Update dependency org.threeten:threetenbp to v1.6.1 ([#&#8203;782](https://togithub.com/googleapis/java-shared-dependencies/issues/782)) ([0f218ae](https://togithub.com/googleapis/java-shared-dependencies/commit/0f218aeb6aa33cf1da4a8b1d6c82bbf87946dab9))
-   Update gax.version to v2.19.0 ([#&#8203;785](https://togithub.com/googleapis/java-shared-dependencies/issues/785)) ([4448331](https://togithub.com/googleapis/java-shared-dependencies/commit/4448331c4c6d88ea8076260776d1d47d24aa19fa))
-   Update google.core.version to v2.8.10 ([#&#8203;787](https://togithub.com/googleapis/java-shared-dependencies/issues/787)) ([3c344d5](https://togithub.com/googleapis/java-shared-dependencies/commit/3c344d515e3b9215db5a1f8ef550d800d974e558))
-   Update google.core.version to v2.8.7 ([#&#8203;774](https://togithub.com/googleapis/java-shared-dependencies/issues/774)) ([d0cd5e8](https://togithub.com/googleapis/java-shared-dependencies/commit/d0cd5e8f6ca88787fe0dbf7f30c849cb4c4fae5e))
-   Update google.core.version to v2.8.8 ([#&#8203;777](https://togithub.com/googleapis/java-shared-dependencies/issues/777)) ([f00571c](https://togithub.com/googleapis/java-shared-dependencies/commit/f00571cd1e9f1c4e011fba4a1e1674c1d8d60200))
-   Update google.core.version to v2.8.9 ([#&#8203;784](https://togithub.com/googleapis/java-shared-dependencies/issues/784)) ([aa8e505](https://togithub.com/googleapis/java-shared-dependencies/commit/aa8e505dbb1214b2239e55d5ac83b00c167d77e4))

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


## [1.2.4](googleapis/java-iam-admin@v1.2.3...v1.2.4) (2022-09-09)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#162](googleapis/java-iam-admin#162)) ([800a4d0](googleapis/java-iam-admin@800a4d0))

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### Dependencies

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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


## [1.1.6](googleapis/java-deploy@v1.1.5...v1.1.6) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#161](googleapis/java-deploy#161)) ([d2dae20](googleapis/java-deploy@d2dae20))

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


## [0.6.0](googleapis/java-bigquerymigration@v0.5.0...v0.6.0) (2022-09-15)


### Features

* Add MySQL dialect to bigquerymigration v2 client library ([#154](googleapis/java-bigquerymigration#154)) ([fa6894c](googleapis/java-bigquerymigration@fa6894c))


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#160](googleapis/java-bigquerymigration#160)) ([571b6be](googleapis/java-bigquerymigration@571b6be))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#162](googleapis/java-bigquerymigration#162)) ([3331d43](googleapis/java-bigquerymigration@3331d43))

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


## [1.3.3](googleapis/java-vmmigration@v1.3.2...v1.3.3) (2022-09-29)


### Dependencies

* Update dependency cachetools to v5 ([#162](googleapis/java-vmmigration#162)) ([673c232](googleapis/java-vmmigration@673c232))
* Update dependency certifi to v2022.9.24 ([#142](googleapis/java-vmmigration#142)) ([40be099](googleapis/java-vmmigration@40be099))
* Update dependency charset-normalizer to v2.1.1 ([#146](googleapis/java-vmmigration#146)) ([c82b8bd](googleapis/java-vmmigration@c82b8bd))
* Update dependency click to v8.1.3 ([#147](googleapis/java-vmmigration#147)) ([99e10f7](googleapis/java-vmmigration@99e10f7))
* Update dependency gcp-releasetool to v1.8.8 ([#143](googleapis/java-vmmigration#143)) ([778f845](googleapis/java-vmmigration@778f845))
* Update dependency google-api-core to v2.10.1 ([#148](googleapis/java-vmmigration#148)) ([7b74afa](googleapis/java-vmmigration@7b74afa))
* Update dependency google-auth to v2.12.0 ([#149](googleapis/java-vmmigration#149)) ([6585870](googleapis/java-vmmigration@6585870))
* Update dependency google-cloud-core to v2.3.2 ([#144](googleapis/java-vmmigration#144)) ([cb815f8](googleapis/java-vmmigration@cb815f8))
* Update dependency google-cloud-storage to v2.5.0 ([#150](googleapis/java-vmmigration#150)) ([89e854a](googleapis/java-vmmigration@89e854a))
* Update dependency google-crc32c to v1.5.0 ([#151](googleapis/java-vmmigration#151)) ([dc88700](googleapis/java-vmmigration@dc88700))
* Update dependency googleapis-common-protos to v1.56.4 ([#145](googleapis/java-vmmigration#145)) ([5c8312d](googleapis/java-vmmigration@5c8312d))
* Update dependency importlib-metadata to v4.12.0 ([#152](googleapis/java-vmmigration#152)) ([c4ffddc](googleapis/java-vmmigration@c4ffddc))
* Update dependency jeepney to v0.8.0 ([#153](googleapis/java-vmmigration#153)) ([d84c437](googleapis/java-vmmigration@d84c437))
* Update dependency jinja2 to v3.1.2 ([#154](googleapis/java-vmmigration#154)) ([6682d82](googleapis/java-vmmigration@6682d82))
* Update dependency keyring to v23.9.3 ([#155](googleapis/java-vmmigration#155)) ([3d1a2d6](googleapis/java-vmmigration@3d1a2d6))
* Update dependency markupsafe to v2.1.1 ([#156](googleapis/java-vmmigration#156)) ([5666a1e](googleapis/java-vmmigration@5666a1e))
* Update dependency protobuf to v3.20.2 ([#157](googleapis/java-vmmigration#157)) ([e422694](googleapis/java-vmmigration@e422694))
* Update dependency protobuf to v4 ([#163](googleapis/java-vmmigration#163)) ([39884b8](googleapis/java-vmmigration@39884b8))
* Update dependency pyjwt to v2.5.0 ([#158](googleapis/java-vmmigration#158)) ([af206d0](googleapis/java-vmmigration@af206d0))
* Update dependency requests to v2.28.1 ([#159](googleapis/java-vmmigration#159)) ([83eb4d1](googleapis/java-vmmigration@83eb4d1))
* Update dependency typing-extensions to v4.3.0 ([#160](googleapis/java-vmmigration#160)) ([9d2cf45](googleapis/java-vmmigration@9d2cf45))
* Update dependency zipp to v3.8.1 ([#161](googleapis/java-vmmigration#161)) ([1ad1a9c](googleapis/java-vmmigration@1ad1a9c))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.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. cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants