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

Identify resources consistently, ideally the same way gsutil does #62

Closed
jboynes opened this issue May 14, 2015 · 13 comments
Closed

Identify resources consistently, ideally the same way gsutil does #62

jboynes opened this issue May 14, 2015 · 13 comments
Assignees
Labels
api: storage Issues related to the Cloud Storage API. 🚨 This issue needs some love. triage me I really want to be triaged.

Comments

@jboynes
Copy link

jboynes commented May 14, 2015

The StorageService API identifies objects using a either (bucket, name) combination e.g. the reader(bucket, name) method or as using a Blob object e.g. the writer(Blob) method.

We should use a consistent representation of an object's identity. It would be nice if that also have a string representation that was consistent with how objects are identified in other tools such as gsutil.

We could use a URI for this:

  URI id = URI.create("gs://bucket/path/to/object");
  storage.reader(id);
  storage.writer(id);
@aozarov
Copy link
Contributor

aozarov commented May 14, 2015

writers accept Blob because it needs (and write/update) the data in addition to the name.
Similar to Datastore get(key), put(Entity). Blob already contains the name.

@aozarov aozarov added the api: storage Issues related to the Cloud Storage API. label May 14, 2015
@jgeewax jgeewax modified the milestone: Needed for public announcement Jun 1, 2015
@aozarov
Copy link
Contributor

aozarov commented Jun 1, 2015

As commented above, write needs the Blob. I think the place of URI for reference is in higher level libraries (such the one based on java.nio.Files API which we plan to provide in gcloud-java-contrib)

@aozarov aozarov closed this as completed Jun 1, 2015
@jgeewax
Copy link

jgeewax commented Jun 3, 2015

I'd agree that a URI might not be the best way to handle this, however I don't think we should close this out yet (until we get some responses). Reopening for debate.

@jgeewax jgeewax reopened this Jun 3, 2015
@jboynes
Copy link
Author

jboynes commented Jun 3, 2015

The issue here is that we identify things in different ways across the API surface and we should make that consistent. Examples in the Storage interface:

BlobInfo create(BlobInfo blobInfo, byte[] content, BlobTargetOption... options)
BlobInfo update(BlobInfo blobInfo, BlobTargetOption... options)
boolean delete(String bucket, String blob, BlobSourceOption... options)

BlobInfo copy(CopyRequest copyRequest)

BlobReadChannel reader(String bucket, String blob, BlobSourceOption... options)
BlobWriteChannel writer(BlobInfo blobInfo, BlobTargetOption... options)

I'm suggesting we clearly separate to concept of identity from data and metadata. There is a well defined way to identify an object: the structured string passed to gsutil containing the bucket and path tokens (where path can include the version). URI is simply a standard way to handle such structured strings; we could use a specific class for that e.g. ObjectId(bucket, path) but I don't see what it adds and think we'd just end up with something very close to URI. I would prefer that though to the option of passing two strings around. URI also supports relative references so could be used consistently at a global level where it would be absolute and include the bucket name, or at a per-bucket level where it would just contain the relative path component.

BlobInfo would then become a value object representing an object's metadata independent of its identity. This simplifies server-side operations like copy or delete where the client may not be interested in the metadata at all.

Content operations may or may not need access to metadata. For example, a download operation might want it so that it can set headers on an HTTP Response (e.g. content-length, etag), whereas an application loading/storing data for its own use might not. However, every operation would need the identity.

@jgeewax
Copy link

jgeewax commented Jun 3, 2015

I'm suggesting we clearly separate to concept of identity from data and metadata.

I agree with this premise -- Identity, Metadata, and Data are three separate things.

we could use a specific class for that e.g. ObjectId(bucket, path) but I don't see what it adds and think we'd just end up with something very close to URI

I actually would prefer the specific class for that, as Amazon does with AmazonS3URI which comes with special S3-specific methods (getKey(), getBucket()).

I'd also argue that we make this easier to construct to avoid people manually crafting the "gs://...." string:

// These should be equivalent.
StorageURI uri = StorageURI("bucket", "path/to/file.txt");
StorageURI uri = StorageURI("gs://bucket/path/to/file.txt");

And it'd be awesome to include the helper methods...

BucketInfo bucket = uri.getBucketInfo();
String bucketName = uri.getBucketName();
ObjectInfo object = uri.getObjectInfo();
String objectName = uri.getObjectName();

@aozarov
Copy link
Contributor

aozarov commented Jun 3, 2015

We use BlobInfo when we need both the name and its metadata.
We use just name when we don't need the metadata.

I don't think the use of URI is that popular, even in cases like this (specific reference. name or bucket/name).

Yes, Amazon do have AmazonS3URI but...

  • It is not a real URI but rather their own class that has a mong other identify method getURI
  • Most APIs that I looked at, on AmazonS3 or its requests (e.g. CopyObjectRequest, CreateBucketRequest,..) don't use the URI as input but rather bucket name and/or object name.

I think the reason Amazon API is doing it this way (input does not seem to use URI) is for the same
reason I am not use it (it is less convenient). However, it is totally fine to have a way to get URI from
Bucket or Blob and to have a way to get them back from a URI. If we choose this route I think we need
either to update the issue description or create a separate issue for it.

@jboynes
Copy link
Author

jboynes commented Jun 3, 2015

@jgeewax OK, sold. Not sure about StorageURI as a name - I'd suggest ObjectId ObjectName or BlobId as alternatives.

BucketInfo bucket = uri.getBucketInfo()

means that the id implementation has to be able to access the service to obtain the info so is no longer a pure, immutable value object. I'd suggest we don't do that and instead do something more like

// pick a bucket
Bucket bucket = storage.getBucket("bucket");
BucketInfo bucketInfo = bucket.getInfo();

// get metadata about an object in the bucket 
BlobInfo info = bucket.getInfo(ObjectId.create("object"));

// or as a single operation
BlobInfo info = storage.getInfo(ObjectId.create("bucket", "object"));

@jgeewax
Copy link

jgeewax commented Jun 3, 2015

What I'm worried about is .... "What if I want a way to pass around a unique identifier (which is effectively a bucket name and a object name), but don't want the giant list of permissions and other metadata that comes with it?"

It seems like it might make sense to have all those methods accept...

  • the StorageURI type (which is the combo-meal of bucket name and object name),
  • the BucketInfo/ObjectInfo instances, or
  • the two String arguments as we have now.

These might all just be shortcuts that all turn into the StorageURI class (as it's job is "identity"), but I agree that we shouldn't require people to jump through hoops and create one of these just to call delete() or reader().

So this would mean we'd have:

boolean delete(String bucket, String blob, BlobSourceOption... options)
boolean delete(BlobInfo blobInfo, BlobSourceOption... options)
boolean delete(StorageURI blobURI, BlobSourceOption... options)

where the first two would effectively do:

boolean delete(String bucket, String blob, BlobSourceOption... options) {
  return delete(new StorageURI(bucket, blob), options);
}

boolean delete(BlobInfo blobInfo, BlobSourceOption... options) {
  return delete(blobInfo.getStorageURI(), options);
}

@jgeewax
Copy link

jgeewax commented Jun 3, 2015

What about ObjectURI? I do like the idea of a URI as the primary job is to act as an identifier -- and people likely understand what it is...

@mziccard
Copy link
Contributor

Let me restart the discussion so that we can finally close this issue.
I have been using Amazon's S3 API and I never needed/wanted to use AmazonS3URI.
Do we really need an ObjectURI? While I understand the point of creating a semantic way of representing an object identify separated from it's metadata, what is the value added by doing this through a URI?

What I propose is having a BlobId object which wraps bucketName and blobName as strings. BlobId is immutable and does not provide functional methods (no getInfo()). Rather we modify methods in Storage to accept a BlobId object:

get(BlobId blobId, BlobSourceOption... options)
boolean delete(BlobId blobId, BlobSourceOption... options)
BlobReadChannel reader(BlobId blobId, BlobSourceOption... options)

As @jgeewax suggested I would not remove current methods but rather implement them using the above ones.
All other methods that use blob's metadata keep having a BlobInfo parameter. If you prefer we can overload those methods to take a BlobId and skip metadata checks.

Thoughts?

@aozarov
Copy link
Contributor

aozarov commented Oct 12, 2015

I do not strongly object an immutable Key like reference such as BlobId and in fact at the time started
with it.

However, I later took @BrandonY suggestion to use plain strings (bucket or bucket/name) instead (mostly to make usage simpler, e.g. storage.get(bucket, name) instead of storage.get(BlobId.of(bucket, name))`).

If we decide to still go a head with it I would suggest returning it from BlobInfo and to only have methods that accept BlobInfo or BlobId.

@mziccard
Copy link
Contributor

I think that from a user perspective adding BlobId does not have any particolar PROs. It might facilitate users to create collections of blob identities (they do no need to create their own wrapper class for bucket and blob name). But as @aozarov said having to write storage.get(BlobId.of(bucket, name)) is unnecessarily verbose.

I don't feel the need for a BlobId but I am not against, if anybody wants to add it I'll be happy to do it.

@mziccard
Copy link
Contributor

Closed with #251

@yoshi-automation yoshi-automation added triage me I really want to be triaged. 🚨 This issue needs some love. labels Apr 6, 2020
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this issue Jun 29, 2022
* chore: update dependencies for regapic

* add more dependencies and trigger comment

* update goldens

* fix indentation

* remove duplicate gax-httpjson dependency

* remove duplicated dependencies
Source-Link: googleapis/synthtool@fa54eb2
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:1ec28a46062b19135b11178ceee60231e5f5a92dab454e23ae0aab72cd875906
github-actions bot pushed a commit that referenced this issue Jul 1, 2022
This PR was generated using Autosynth. 🌈

Synth log will be available here:
https://source.cloud.google.com/results/invocations/a826dcfa-9562-4e43-bd02-8453c8ee88ff/targets

- [ ] To automatically regenerate this PR, check this box.

Source-Link: googleapis/synthtool@b65ef07
github-actions bot pushed a commit that referenced this issue Jul 14, 2022
…tion to v1.1.0 (#62)

* chore(deps): update dependency com.google.cloud:google-cloud-optimization to v1.1.0

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
…itcher to v0.3.0 (#62)

[![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-video-stitcher](https://togithub.com/googleapis/java-video-stitcher) | `0.2.1` -> `0.3.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-video-stitcher/0.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-video-stitcher/0.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-video-stitcher/0.3.0/compatibility-slim/0.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-video-stitcher/0.3.0/confidence-slim/0.2.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-video-stitcher</summary>

### [`v0.3.0`](https://togithub.com/googleapis/java-video-stitcher/blob/HEAD/CHANGELOG.md#&#8203;030-httpsgithubcomgoogleapisjava-video-stitchercomparev021v030-2022-06-30)

[Compare Source](https://togithub.com/googleapis/java-video-stitcher/compare/v0.2.1...v0.3.0)

##### ⚠ BREAKING CHANGES

-   remove COMPLETE_POD stitching option

##### Features

-   add asset_id and stream_id fields to VodSession and LiveSession responses ([98686dd](https://togithub.com/googleapis/java-video-stitcher/commit/98686dd64eb2c6d89b22ba7d1bf7f820049788f0))

##### Bug Fixes

-   remove COMPLETE_POD stitching option ([98686dd](https://togithub.com/googleapis/java-video-stitcher/commit/98686dd64eb2c6d89b22ba7d1bf7f820049788f0))

</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-video-stitcher).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
…cies to v3 (#62)

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### Dependencies

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

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

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

##### Bug Fixes

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

##### Dependencies

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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


### Updating meta-information for bleeding-edge SNAPSHOT release.

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [0.3.1](googleapis/java-run@v0.3.0...v0.3.1) (2022-08-02)


### Bug Fixes

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


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#62](googleapis/java-run#62)) ([ca4fde1](googleapis/java-run@ca4fde1))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Aug 16, 2022
…-info-reports-plugin to v3.4.1 (#62)

[![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.4.0` -> `3.4.1` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/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.1/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.1/compatibility-slim/3.4.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.1/confidence-slim/3.4.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bare-metal-solution).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjMyLjE2MS4wIn0=-->
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 |
|---|---|---|---|---|---|
| [googleapis-common-protos](https://togithub.com/googleapis/python-api-common-protos) | `==1.56.3` -> `==1.56.4` | [![age](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/compatibility-slim/1.56.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/googleapis-common-protos/1.56.4/confidence-slim/1.56.3)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bigquery-data-exchange).
<!--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 |
|---|---|---|---|---|---|
| [google-cloud-core](https://togithub.com/googleapis/python-cloud-core) | `==2.3.1` -> `==2.3.2` | [![age](https://badges.renovateapi.com/packages/pypi/google-cloud-core/2.3.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/google-cloud-core/2.3.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/google-cloud-core/2.3.2/compatibility-slim/2.3.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/google-cloud-core/2.3.2/confidence-slim/2.3.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

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

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

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

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

---

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

---

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


## [0.2.5](https://togithub.com/googleapis/java-gke-backup/compare/v0.2.4...v0.2.5) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#60](https://togithub.com/googleapis/java-gke-backup/issues/60)) ([317ef8f](https://togithub.com/googleapis/java-gke-backup/commit/317ef8f5c11f3cd6275e51104d44b33e61099b83))
* Update dependency charset-normalizer to v2.1.1 ([#64](https://togithub.com/googleapis/java-gke-backup/issues/64)) ([94eddb9](https://togithub.com/googleapis/java-gke-backup/commit/94eddb9aa24138d9f393d8ab32160077bc4e1b0a))
* Update dependency click to v8.1.3 ([#65](https://togithub.com/googleapis/java-gke-backup/issues/65)) ([c2e2275](https://togithub.com/googleapis/java-gke-backup/commit/c2e227566d56769c98fc4890d4c841b94f11f918))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#85](https://togithub.com/googleapis/java-gke-backup/issues/85)) ([93b2282](https://togithub.com/googleapis/java-gke-backup/commit/93b2282dde9d35276d937bdd84aa26d5412c3bbc))
* Update dependency gcp-releasetool to v1.8.8 ([#61](https://togithub.com/googleapis/java-gke-backup/issues/61)) ([6f63d57](https://togithub.com/googleapis/java-gke-backup/commit/6f63d57fbd09e5f1cbe52de7dcc28e2afa8e9b32))
* Update dependency google-api-core to v2.10.1 ([#66](https://togithub.com/googleapis/java-gke-backup/issues/66)) ([8e91da3](https://togithub.com/googleapis/java-gke-backup/commit/8e91da351601167fa3620b83981bc1d66de81563))
* Update dependency google-auth to v2.12.0 ([#67](https://togithub.com/googleapis/java-gke-backup/issues/67)) ([296cf38](https://togithub.com/googleapis/java-gke-backup/commit/296cf38a057da02650ca2c3fbe22be437c26c67c))
* Update dependency google-cloud-core to v2.3.2 ([#62](https://togithub.com/googleapis/java-gke-backup/issues/62)) ([ca1f3c2](https://togithub.com/googleapis/java-gke-backup/commit/ca1f3c2424a2313d7143c43441b63861618ac14a))
* Update dependency google-cloud-storage to v2.5.0 ([#68](https://togithub.com/googleapis/java-gke-backup/issues/68)) ([3799767](https://togithub.com/googleapis/java-gke-backup/commit/379976763fa24ff37216149fd4af99f5e977d3d3))
* Update dependency google-crc32c to v1.5.0 ([#69](https://togithub.com/googleapis/java-gke-backup/issues/69)) ([9e57fb5](https://togithub.com/googleapis/java-gke-backup/commit/9e57fb5a3ece05a750a5b4f8180fd1eaa97d8964))
* Update dependency googleapis-common-protos to v1.56.4 ([#63](https://togithub.com/googleapis/java-gke-backup/issues/63)) ([d29e652](https://togithub.com/googleapis/java-gke-backup/commit/d29e6527be55672bb72e2a51f16580adecab2b75))
* Update dependency importlib-metadata to v4.12.0 ([#78](https://togithub.com/googleapis/java-gke-backup/issues/78)) ([de743e5](https://togithub.com/googleapis/java-gke-backup/commit/de743e5c2e11a3cf67a6553727bded09bc33d233))
* Update dependency jeepney to v0.8.0 ([#79](https://togithub.com/googleapis/java-gke-backup/issues/79)) ([5b9831b](https://togithub.com/googleapis/java-gke-backup/commit/5b9831b0a8692a4c7c0fdeb2dacce31f2847a1a6))
* Update dependency jinja2 to v3.1.2 ([#80](https://togithub.com/googleapis/java-gke-backup/issues/80)) ([7929d9b](https://togithub.com/googleapis/java-gke-backup/commit/7929d9bc679b9feb85d2fcf51f77f3a9a0161877))
* Update dependency keyring to v23.9.3 ([#81](https://togithub.com/googleapis/java-gke-backup/issues/81)) ([95a1f64](https://togithub.com/googleapis/java-gke-backup/commit/95a1f64147f5821c63f391a6a4c7909331e8611b))
* Update dependency markupsafe to v2.1.1 ([#70](https://togithub.com/googleapis/java-gke-backup/issues/70)) ([947bbba](https://togithub.com/googleapis/java-gke-backup/commit/947bbba22d90b9cc3317f3138eac68d172bc01bf))
* Update dependency protobuf to v3.20.2 ([#71](https://togithub.com/googleapis/java-gke-backup/issues/71)) ([0eb5782](https://togithub.com/googleapis/java-gke-backup/commit/0eb57820de0ef678af4f53536d00321dd5ab83ba))
* Update dependency pyjwt to v2.5.0 ([#72](https://togithub.com/googleapis/java-gke-backup/issues/72)) ([f3ef3ab](https://togithub.com/googleapis/java-gke-backup/commit/f3ef3abd9e6a0318ce4f4580a1903a7ac55bfa83))
* Update dependency requests to v2.28.1 ([#73](https://togithub.com/googleapis/java-gke-backup/issues/73)) ([1d6762a](https://togithub.com/googleapis/java-gke-backup/commit/1d6762a15ea03b621607cbb89e086fc89dfc3bf0))

---
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.3.1](https://togithub.com/googleapis/java-apigee-registry/compare/v0.3.0...v0.3.1) (2022-10-03)


### Bug Fixes

* Additional error codes added to service configuration for retry ([#39](https://togithub.com/googleapis/java-apigee-registry/issues/39)) ([55a9b41](https://togithub.com/googleapis/java-apigee-registry/commit/55a9b417cf04575d2070ad026e5648a494fe076a))


### Dependencies

* Update dependency certifi to v2022.9.24 ([#48](https://togithub.com/googleapis/java-apigee-registry/issues/48)) ([1c6ae70](https://togithub.com/googleapis/java-apigee-registry/commit/1c6ae70cb9ff9e7e98d83ce472ae5526d08f9a35))
* Update dependency charset-normalizer to v2.1.1 ([#53](https://togithub.com/googleapis/java-apigee-registry/issues/53)) ([2130079](https://togithub.com/googleapis/java-apigee-registry/commit/21300793a908ed41c535813ee15ec94b5f5ef018))
* Update dependency click to v8.1.3 ([#54](https://togithub.com/googleapis/java-apigee-registry/issues/54)) ([cf3458b](https://togithub.com/googleapis/java-apigee-registry/commit/cf3458bd2972f3db75c8cbf834be0b383d9e74a0))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#42](https://togithub.com/googleapis/java-apigee-registry/issues/42)) ([38cb4f9](https://togithub.com/googleapis/java-apigee-registry/commit/38cb4f9932c3d6cb4c36d3f61922fd613409607f))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#44](https://togithub.com/googleapis/java-apigee-registry/issues/44)) ([ddaed09](https://togithub.com/googleapis/java-apigee-registry/commit/ddaed0964ae57cd7b799b9acf7b202595af4c781))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#65](https://togithub.com/googleapis/java-apigee-registry/issues/65)) ([882e36b](https://togithub.com/googleapis/java-apigee-registry/commit/882e36b2d21ff601f569aa79dfe840cd41bf0438))
* Update dependency gcp-releasetool to v1.8.8 ([#49](https://togithub.com/googleapis/java-apigee-registry/issues/49)) ([3a927a3](https://togithub.com/googleapis/java-apigee-registry/commit/3a927a3df5a8cf5cfff79faede5387291a3d443e))
* Update dependency google-api-core to v2.10.1 ([#55](https://togithub.com/googleapis/java-apigee-registry/issues/55)) ([f841a07](https://togithub.com/googleapis/java-apigee-registry/commit/f841a07c0b1c2fa585f7e665208d6a6b7843c75c))
* Update dependency google-auth to v2.11.1 ([#50](https://togithub.com/googleapis/java-apigee-registry/issues/50)) ([7b450cb](https://togithub.com/googleapis/java-apigee-registry/commit/7b450cbeadc08b8dc26fbd4738ce47788a5cf330))
* Update dependency google-cloud-core to v2.3.2 ([#51](https://togithub.com/googleapis/java-apigee-registry/issues/51)) ([b7f1110](https://togithub.com/googleapis/java-apigee-registry/commit/b7f111014416ff76fa787085d0d0bc9ab47f9af6))
* Update dependency google-cloud-storage to v2.5.0 ([#56](https://togithub.com/googleapis/java-apigee-registry/issues/56)) ([f3799d3](https://togithub.com/googleapis/java-apigee-registry/commit/f3799d3d2d754ec89c784655d835ecaed4df3406))
* Update dependency google-crc32c to v1.5.0 ([#57](https://togithub.com/googleapis/java-apigee-registry/issues/57)) ([b978c7d](https://togithub.com/googleapis/java-apigee-registry/commit/b978c7d2bed23554998a9f0f047e7211ff37f906))
* Update dependency googleapis-common-protos to v1.56.4 ([#52](https://togithub.com/googleapis/java-apigee-registry/issues/52)) ([9e069f1](https://togithub.com/googleapis/java-apigee-registry/commit/9e069f1d96c78fdaedbf57a95d05ada18d57ea0f))
* Update dependency importlib-metadata to v4.12.0 ([#58](https://togithub.com/googleapis/java-apigee-registry/issues/58)) ([370bd1e](https://togithub.com/googleapis/java-apigee-registry/commit/370bd1eba82d820fe7156c276ee5e4a5cbf3f9e0))
* Update dependency jeepney to v0.8.0 ([#59](https://togithub.com/googleapis/java-apigee-registry/issues/59)) ([7a63034](https://togithub.com/googleapis/java-apigee-registry/commit/7a63034a2a194feed6dc7e8215c5063ad1454072))
* Update dependency jinja2 to v3.1.2 ([#60](https://togithub.com/googleapis/java-apigee-registry/issues/60)) ([4fe2b85](https://togithub.com/googleapis/java-apigee-registry/commit/4fe2b853af3c39d2c46efbdc5027cc34945a736c))
* Update dependency keyring to v23.9.3 ([#61](https://togithub.com/googleapis/java-apigee-registry/issues/61)) ([c8cf1c2](https://togithub.com/googleapis/java-apigee-registry/commit/c8cf1c29cab75b18ab67e372bf3d50b36a4b57e9))
* Update dependency markupsafe to v2.1.1 ([#62](https://togithub.com/googleapis/java-apigee-registry/issues/62)) ([98036ae](https://togithub.com/googleapis/java-apigee-registry/commit/98036ae98fa56eba73cccb88a2af726d20fb2a1d))
* Update dependency protobuf to v3.20.2 ([#63](https://togithub.com/googleapis/java-apigee-registry/issues/63)) ([aa9f0e7](https://togithub.com/googleapis/java-apigee-registry/commit/aa9f0e7cad3940fa02cd69c3b3c3e8c2938e0c1b))

---
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.4.0](https://togithub.com/googleapis/java-bigquery-data-exchange/compare/v0.3.2...v0.4.0) (2022-10-03)


### ⚠ BREAKING CHANGES

* refactor references to Category message
* refresh current dataexchange/v1beta1/* directory to include recent change in protos. Removed common directory and use local enum Category

### Features

* Update BigQuery Analytics Hub API v1beta1 client ([#51](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/51)) ([a70b8ac](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/a70b8ac71383a051f384884b043c554e7fb277bc))


### Bug Fixes

* refactor references to Category message ([a70b8ac](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/a70b8ac71383a051f384884b043c554e7fb277bc))


### Documentation

* improve proto documentation. ([a70b8ac](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/a70b8ac71383a051f384884b043c554e7fb277bc))


### Dependencies

* Update dependency cachetools to v5 ([#79](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/79)) ([e7fc966](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/e7fc9667452a94f8f976a00409a8cc3fbe6b502f))
* Update dependency certifi to v2022.9.24 ([#59](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/59)) ([9cdbe53](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/9cdbe538bcb6b9e78346206985db000fa3fef3cf))
* Update dependency charset-normalizer to v2.1.1 ([#63](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/63)) ([ea2d77f](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/ea2d77f5381aa3ee97f4ae936f580614f2228075))
* Update dependency click to v8.1.3 ([#64](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/64)) ([6f0b519](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/6f0b519171a8a9e0a0b8bc254486b2ee99a12599))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#54](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/54)) ([63e56e2](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/63e56e248472e64f0fa6ea2b67c0d8066e3d187e))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#56](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/56)) ([acefe6d](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/acefe6df105aa534ab69283dab25e7555478ef0c))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#83](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/83)) ([1329a2d](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/1329a2db26009e7c844282d65da9256d8789fb46))
* Update dependency gcp-releasetool to v1.8.8 ([#60](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/60)) ([cb20437](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/cb20437ca4a81457d16316e52ac505b06997a5ab))
* Update dependency google-api-core to v2.10.1 ([#65](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/65)) ([5677913](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/56779139cfed3778ae6c95cf3677e0ac05755b3e))
* Update dependency google-auth to v2.12.0 ([#66](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/66)) ([d7d2a29](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/d7d2a294b527a4e947a6c8d1a11db5077a941cec))
* Update dependency google-cloud-core to v2.3.2 ([#61](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/61)) ([b23beaf](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/b23beafe5126b10c86993722019da8f9533bbe19))
* Update dependency google-cloud-storage to v2.5.0 ([#67](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/67)) ([afaf995](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/afaf9951a8e9b23dbe645e7711ad563fff21df43))
* Update dependency google-crc32c to v1.5.0 ([#68](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/68)) ([5810429](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/5810429d1f6fa4e04d8b3aac002cc4df46b93b35))
* Update dependency googleapis-common-protos to v1.56.4 ([#62](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/62)) ([845625c](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/845625cc014de6bd21659ff191fda39120c02969))
* Update dependency importlib-metadata to v4.12.0 ([#69](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/69)) ([de23b25](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/de23b2529f9f9adab51361c8dd772c79233cc956))
* Update dependency jeepney to v0.8.0 ([#74](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/74)) ([d3754be](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/d3754be6555594b3776cb056a7b4511223c51850))
* Update dependency jinja2 to v3.1.2 ([#75](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/75)) ([93f43a4](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/93f43a47322508a9b8f8f7d667e3576666d95d72))
* Update dependency keyring to v23.9.3 ([#76](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/76)) ([0a1b61a](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/0a1b61a9c2144ba523cc8aea7d77a93bbdec2176))
* Update dependency markupsafe to v2.1.1 ([#70](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/70)) ([ab50c0e](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/ab50c0eb2a3e081ec81ac14fbc8d3539086c198f))
* Update dependency protobuf to v3.20.2 ([#71](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/71)) ([b647377](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/b647377c7c430cbb86b5fd7125792ae07be7dda6))
* Update dependency protobuf to v4 ([#80](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/80)) ([409ceed](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/409ceed1a74b5ed066b1c565978900773ffe1b0c))
* Update dependency pyjwt to v2.5.0 ([#72](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/72)) ([e43efcd](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/e43efcdfccfd99571622ed47f14432cf0a42cfdc))
* Update dependency requests to v2.28.1 ([#73](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/73)) ([60746a8](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/60746a81486f3edcef143d91ca0d19cfa9546b3d))
* Update dependency typing-extensions to v4.3.0 ([#77](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/77)) ([2a22b12](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/2a22b12e2860296f4a866c5abb54bc11a0cd8a65))
* Update dependency zipp to v3.8.1 ([#78](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/78)) ([7b1a48a](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/7b1a48a0810d1e5702a6b214e148b97efdac7564))

---
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: storage Issues related to the Cloud Storage API. 🚨 This issue needs some love. triage me I really want to be triaged.
Projects
None yet
Development

No branches or pull requests

5 participants