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

Fix merge mishap #741

Merged
merged 17 commits into from
Mar 18, 2016
Merged

Conversation

jean-philippe-martin
Copy link

Sorry! I don't know how that slipped by!

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Mar 10, 2016
@aozarov
Copy link
Contributor

aozarov commented Mar 10, 2016

Looks like there are more merge issues? See Travis logs.

@jean-philippe-martin
Copy link
Author

How can I reproduce the problem? The log suggests that mvn clean triggers the problem, but for me it doesn't.

I tried mvn clean and mvn clean compile test, both worked fine.

@jean-philippe-martin
Copy link
Author

OK this is super weird. I just tried mvn compile and it returned success, including GCloud Java NIO. However, when I rebuild this same project from the IDE I get an error about BlobInfo.Builder.size not being public (apparently true). mvn clean compile also worked, similarly reporting success in compiling this code.

Clearly there is something wrong in my mental model about what's going on here. Would you have some wisdom to share?

@jean-philippe-martin
Copy link
Author

The core problem with this merge appears to be that the Storage.get interface was changed to return a Blob instead of a BlobInfo, and there is no way to create a mock Blob to return. So I had to change its interface a little bit to allow us to still test against it.

Please have a look; you might prefer doing things differently, such as adding a static "builder" method to the Blob class.

@aozarov
Copy link
Contributor

aozarov commented Mar 10, 2016

Blob is final, it cannot be mocked. Will revisit later.

Good point. Though there are testing frameworks that supports mocking final classes (such as powermock). I think we can (and should) relax that.

@aozarov
Copy link
Contributor

aozarov commented Mar 10, 2016

when we do so, we should make equals and hashCode final.

@aozarov aozarov added api: storage Issues related to the Cloud Storage API. contrib labels Mar 10, 2016
@googlebot
Copy link

We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm.

@googlebot googlebot added cla: no This human has *not* signed the Contributor License Agreement. and removed cla: yes This human has signed the Contributor License Agreement. labels Mar 11, 2016
@jean-philippe-martin
Copy link
Author

Merging with master's now-not-final Blob class allowed us to mock the Blob, and then make things work. Two things of note in the process, though:

  • I had to change Blob.equals to short-circuit the pointer-equality case (probably a limitation of the mock system)
  • I had to put the java.nio.file.spi.FileSystemProvider file back; without it, the gs provider wasn't installed (as if AutoService mysteriously stopped working - I tried building multiple times)

@jean-philippe-martin
Copy link
Author

Ready to merge as soon as I get the OK. Googlebot's warning seems spurious.

@aozarov aozarov removed the cla: no This human has *not* signed the Contributor License Agreement. label Mar 16, 2016
@jean-philippe-martin
Copy link
Author

The issue I had was that tests would fail in the IDE (intelliJ in my case) even after building multiple times. If adding a redundant file allows us to run tests in the IDE then it's worthwhile, even though of course ideally we shouldn't need it.

@aozarov
Copy link
Contributor

aozarov commented Mar 17, 2016

I verified that with my version of intelliJ (Community edition 2016.1) my tests pass fine without the meta file after I build the project (project is configured as a maven project).

Also, this should not be an issue for most people that depends on the gcs-nio jar directly.

However, if you still think we should keep the file then I see no reason for adding the auto-service dependency and using its annotation.

@jean-philippe-martin
Copy link
Author

I had version 15.0.4. I updated to 2016.1 and this seems to have fixed the problem. I was able to build and test fine without the spi file, so I'm removing it.

@googlebot googlebot added cla: no This human has *not* signed the Contributor License Agreement. and removed cla: yes This human has signed the Contributor License Agreement. labels Mar 17, 2016
@aozarov aozarov added cla: yes This human has signed the Contributor License Agreement. and removed cla: no This human has *not* signed the Contributor License Agreement. labels Mar 18, 2016
aozarov added a commit that referenced this pull request Mar 18, 2016
@aozarov aozarov merged commit e85256c into googleapis:gcs-nio Mar 18, 2016
@jean-philippe-martin jean-philippe-martin deleted the gcs-nio-fix branch March 18, 2016 16:13
github-actions bot pushed a commit that referenced this pull request Jun 23, 2022
…4.0 (#741)

[![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:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/GoogleCloudPlatform/cloud-opensource-java)) | `25.3.0` -> `25.4.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/compatibility-slim/25.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/25.4.0/confidence-slim/25.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**: 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-container).
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*
---


### [1.2.6](googleapis/java-resourcemanager@v1.2.5...v1.2.6) (2022-03-24)


### Dependencies

* update dependency com.google.apis:google-api-services-cloudresourcemanager to v1-rev20220320-1.32.1 ([googleapis#740](googleapis/java-resourcemanager#740)) ([6907f85](googleapis/java-resourcemanager@6907f85))

---
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 Jul 1, 2022
Making CLIRR not required. The version bumps are now controlled by the Release Please and OwlBot. The CL authors create appropriate change description to control major version bumps.
github-actions bot pushed a commit that referenced this pull request Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.2](googleapis/java-billingbudgets@v2.3.1...v2.3.2) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#738](googleapis/java-billingbudgets#738)) ([ce52ee9](googleapis/java-billingbudgets@ce52ee9))

---
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 Aug 16, 2022
…-plugin to v3.4.1 (#741)

[![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-javadoc-plugin](https://maven.apache.org/plugins/) | `3.4.0` -> `3.4.1` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-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-javadoc-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**: 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-tasks).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTguMCIsInVwZGF0ZWRJblZlciI6IjMyLjE2MS4wIn0=-->
github-actions bot pushed a commit that referenced this pull request Sep 15, 2022
…ator_java versions (#741)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 472750037

Source-Link: googleapis/googleapis@88f2ea3

Source-Link: googleapis/googleapis-gen@230a558
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjMwYTU1ODgzMDZhYWUxOGZlOGYyYTU3ZjE0ZDQwMzlhZDcyYzkwMSJ9
github-actions bot pushed a commit that referenced this pull request Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.4](googleapis/java-texttospeech@v2.4.3...v2.4.4) (2022-09-15)


### Dependencies

* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#740](googleapis/java-texttospeech#740)) ([14cfbaf](googleapis/java-texttospeech@14cfbaf))

---
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 19, 2022
…race.Code (#741)

- [ ] Regenerate this pull request now.

fix: Added fix to return a list of the endpoints that encountered errors during crawl, along with the specific error message when the starting URL returns Http errors
fix: GoogleAccount is deprecated

PiperOrigin-RevId: 472758119

Source-Link: googleapis/googleapis@4356ba6

Source-Link: googleapis/googleapis-gen@2370420
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjM3MDQyMDIzZjEwOGIxNGMwNDI3MTE4NDUyNDFmYmI2MmNmMmUwOCJ9

chore(bazel): Update WORKSPACE files for rules_gapic, gax_java, generator_java versions

PiperOrigin-RevId: 472750037

Source-Link: googleapis/googleapis@88f2ea3

Source-Link: googleapis/googleapis-gen@230a558
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjMwYTU1ODgzMDZhYWUxOGZlOGYyYTU3ZjE0ZDQwMzlhZDcyYzkwMSJ9
github-actions bot pushed a commit that referenced this pull request Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [2.4.5](https://togithub.com/googleapis/java-bigqueryreservation/compare/v2.4.4...v2.4.5) (2022-10-03)


### Dependencies

* Update dependency cachetools to v5 ([#741](https://togithub.com/googleapis/java-bigqueryreservation/issues/741)) ([1debf99](https://togithub.com/googleapis/java-bigqueryreservation/commit/1debf993bba11a6cddb2e8d40d9df6b8551ec1f1))
* Update dependency certifi to v2022.9.24 ([#720](https://togithub.com/googleapis/java-bigqueryreservation/issues/720)) ([4d071ce](https://togithub.com/googleapis/java-bigqueryreservation/commit/4d071ced03689df379ff02c7d3f4a31715670268))
* Update dependency charset-normalizer to v2.1.1 ([#724](https://togithub.com/googleapis/java-bigqueryreservation/issues/724)) ([6d25d08](https://togithub.com/googleapis/java-bigqueryreservation/commit/6d25d085ba4c7a602492d3db1d967db6e35c2f65))
* Update dependency click to v8.1.3 ([#725](https://togithub.com/googleapis/java-bigqueryreservation/issues/725)) ([737be00](https://togithub.com/googleapis/java-bigqueryreservation/commit/737be00b716b190ce3df7a255751ae9ea47744dd))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#745](https://togithub.com/googleapis/java-bigqueryreservation/issues/745)) ([6abed9f](https://togithub.com/googleapis/java-bigqueryreservation/commit/6abed9f128902a6e0011db6a9adf436d143549e5))
* Update dependency gcp-releasetool to v1.8.8 ([#721](https://togithub.com/googleapis/java-bigqueryreservation/issues/721)) ([d1bceed](https://togithub.com/googleapis/java-bigqueryreservation/commit/d1bceedcd66230f5024a28aefeb7a5a726e2ca7c))
* Update dependency google-api-core to v2.10.1 ([#726](https://togithub.com/googleapis/java-bigqueryreservation/issues/726)) ([ffdb83f](https://togithub.com/googleapis/java-bigqueryreservation/commit/ffdb83f9bd65a06f081e4d286aabeaeb6ae91657))
* Update dependency google-auth to v2.12.0 ([#727](https://togithub.com/googleapis/java-bigqueryreservation/issues/727)) ([14938e7](https://togithub.com/googleapis/java-bigqueryreservation/commit/14938e7719d877b6bb510b73380f2d5781948fe6))
* Update dependency google-cloud-core to v2.3.2 ([#722](https://togithub.com/googleapis/java-bigqueryreservation/issues/722)) ([f2b8e24](https://togithub.com/googleapis/java-bigqueryreservation/commit/f2b8e24a8d852df15df8d51898070aa1fcca7351))
* Update dependency google-cloud-storage to v2.5.0 ([#728](https://togithub.com/googleapis/java-bigqueryreservation/issues/728)) ([2929a3a](https://togithub.com/googleapis/java-bigqueryreservation/commit/2929a3a8cee4957f548750eae8d6d7b45e3eb525))
* Update dependency google-crc32c to v1.5.0 ([#729](https://togithub.com/googleapis/java-bigqueryreservation/issues/729)) ([ba4ea5b](https://togithub.com/googleapis/java-bigqueryreservation/commit/ba4ea5b6823ff041bf9d35e6c70f1eb689bd61ad))
* Update dependency googleapis-common-protos to v1.56.4 ([#723](https://togithub.com/googleapis/java-bigqueryreservation/issues/723)) ([08f6a0e](https://togithub.com/googleapis/java-bigqueryreservation/commit/08f6a0e366d8b9f4eecc70343373faae679bc790))
* Update dependency importlib-metadata to v4.12.0 ([#730](https://togithub.com/googleapis/java-bigqueryreservation/issues/730)) ([8c76d37](https://togithub.com/googleapis/java-bigqueryreservation/commit/8c76d3769de6b6f50101685836db08e32b08357d))
* Update dependency jeepney to v0.8.0 ([#731](https://togithub.com/googleapis/java-bigqueryreservation/issues/731)) ([c44516d](https://togithub.com/googleapis/java-bigqueryreservation/commit/c44516d27b5cdf7199cb3c69068689bf7f98f1de))
* Update dependency jinja2 to v3.1.2 ([#732](https://togithub.com/googleapis/java-bigqueryreservation/issues/732)) ([3723078](https://togithub.com/googleapis/java-bigqueryreservation/commit/37230783b12e600cee90372bbae9ba00d382eb98))
* Update dependency keyring to v23.9.3 ([#733](https://togithub.com/googleapis/java-bigqueryreservation/issues/733)) ([70333a6](https://togithub.com/googleapis/java-bigqueryreservation/commit/70333a663a5112662bbaa63618ad97c3f4561f9c))
* Update dependency markupsafe to v2.1.1 ([#735](https://togithub.com/googleapis/java-bigqueryreservation/issues/735)) ([0b70a40](https://togithub.com/googleapis/java-bigqueryreservation/commit/0b70a401c5a5144713fee932719aa4622d3703ac))
* Update dependency requests to v2.28.1 ([#738](https://togithub.com/googleapis/java-bigqueryreservation/issues/738)) ([708af55](https://togithub.com/googleapis/java-bigqueryreservation/commit/708af5554ca9d9432f7f268ef35bfdf82e5ef2b5))
* Update dependency zipp to v3.8.1 ([#740](https://togithub.com/googleapis/java-bigqueryreservation/issues/740)) ([a6b4dcc](https://togithub.com/googleapis/java-bigqueryreservation/commit/a6b4dcc8205d4488e70fc0deded16f0ca704e81a))

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


## [2.2.6](https://togithub.com/googleapis/java-os-login/compare/v2.2.5...v2.2.6) (2022-10-03)


### Dependencies

* Update dependency charset-normalizer to v2.1.1 ([#741](https://togithub.com/googleapis/java-os-login/issues/741)) ([3b75ebd](https://togithub.com/googleapis/java-os-login/commit/3b75ebdbffbea6fdfb04f8dded74e318272bf245))
* Update dependency click to v8.1.3 ([#742](https://togithub.com/googleapis/java-os-login/issues/742)) ([a31156d](https://togithub.com/googleapis/java-os-login/commit/a31156df7b79a9ac871cc240ef6f5e08afa7b882))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#762](https://togithub.com/googleapis/java-os-login/issues/762)) ([decf589](https://togithub.com/googleapis/java-os-login/commit/decf58985da905a70413a4a2933dd74054d78536))
* Update dependency gcp-releasetool to v1.8.8 ([#737](https://togithub.com/googleapis/java-os-login/issues/737)) ([544ee2c](https://togithub.com/googleapis/java-os-login/commit/544ee2cef2d0e86b8d886da370333b9fc3d497d5))
* Update dependency google-api-core to v2.10.1 ([#743](https://togithub.com/googleapis/java-os-login/issues/743)) ([f0522d5](https://togithub.com/googleapis/java-os-login/commit/f0522d5774d2a10a17b0b21a860bb1650334acb2))
* Update dependency google-auth to v2.11.1 ([#738](https://togithub.com/googleapis/java-os-login/issues/738)) ([fc3b537](https://togithub.com/googleapis/java-os-login/commit/fc3b5377121e5c3268d41f55329f41e383ce291f))
* Update dependency google-auth to v2.12.0 ([#755](https://togithub.com/googleapis/java-os-login/issues/755)) ([aa212c5](https://togithub.com/googleapis/java-os-login/commit/aa212c5064f47c741082328c0d3a7bdfce1d5a70))
* Update dependency google-cloud-core to v2.3.2 ([#739](https://togithub.com/googleapis/java-os-login/issues/739)) ([b67bd85](https://togithub.com/googleapis/java-os-login/commit/b67bd85e362ccb2926fecbf913139d70d5a18c9a))
* Update dependency google-cloud-storage to v2.5.0 ([#756](https://togithub.com/googleapis/java-os-login/issues/756)) ([83b006a](https://togithub.com/googleapis/java-os-login/commit/83b006ad6fca281fbc2521d4f8f88c0683e6742a))
* Update dependency google-crc32c to v1.5.0 ([#757](https://togithub.com/googleapis/java-os-login/issues/757)) ([cdddc07](https://togithub.com/googleapis/java-os-login/commit/cdddc072a75a9582cb8ec78002fe00ff848d72b6))
* Update dependency importlib-metadata to v4.12.0 ([#758](https://togithub.com/googleapis/java-os-login/issues/758)) ([4228eac](https://togithub.com/googleapis/java-os-login/commit/4228eac668508d00bc08eea42dac30647516a6eb))
* Update dependency jeepney to v0.8.0 ([#759](https://togithub.com/googleapis/java-os-login/issues/759)) ([7f4e7e5](https://togithub.com/googleapis/java-os-login/commit/7f4e7e5fdc4629224b90eb62f4fb56e4b4bf9cf6))
* Update dependency jinja2 to v3.1.2 ([#744](https://togithub.com/googleapis/java-os-login/issues/744)) ([2fe1551](https://togithub.com/googleapis/java-os-login/commit/2fe1551fe6a8dce8a7b2d7964ce50235335d960a))
* Update dependency keyring to v23.9.3 ([#745](https://togithub.com/googleapis/java-os-login/issues/745)) ([4135da8](https://togithub.com/googleapis/java-os-login/commit/4135da8acfb45bf587eb45f1b960fada0335045c))
* Update dependency markupsafe to v2.1.1 ([#746](https://togithub.com/googleapis/java-os-login/issues/746)) ([b0bd633](https://togithub.com/googleapis/java-os-login/commit/b0bd633230739888cb648e1c25533be0b62d68db))
* Update dependency protobuf to v3.20.2 ([#747](https://togithub.com/googleapis/java-os-login/issues/747)) ([ee62667](https://togithub.com/googleapis/java-os-login/commit/ee626676cae459a4393a1d930add5c1804996723))
* Update dependency pyjwt to v2.5.0 ([#748](https://togithub.com/googleapis/java-os-login/issues/748)) ([77d5a02](https://togithub.com/googleapis/java-os-login/commit/77d5a020b9697db9385a878046166a9a9e3b4dfe))
* Update dependency typing-extensions to v4.3.0 ([#750](https://togithub.com/googleapis/java-os-login/issues/750)) ([6f961a8](https://togithub.com/googleapis/java-os-login/commit/6f961a83a7f859fb5a2aac488c3a6c7c38d74123))

---
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 pull request Oct 4, 2022
* chore(bazel): update protobuf to v3.21.7

PiperOrigin-RevId: 477955264

Source-Link: googleapis/googleapis@a724450

Source-Link: googleapis/googleapis-gen@4abcbca
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGFiY2JjYWVjODU1ZTc0YTBiMjJhNDk4OGNmOWUwZWI2MWE4MzA5NCJ9

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


## [2.3.0](https://togithub.com/googleapis/java-websecurityscanner/compare/v2.2.4...v2.3.0) (2022-10-04)


### Features

* Added NO_STARTING_URL_FOUND_FOR_MANAGED_SCAN to ScanRunWarningTrace.Code ([#741](https://togithub.com/googleapis/java-websecurityscanner/issues/741)) ([bdc4af4](https://togithub.com/googleapis/java-websecurityscanner/commit/bdc4af46ed6d1d690c60b336e9769fc9ad087578))


### Bug Fixes

* Added fix to return a list of the endpoints that encountered errors during crawl, along with the specific error message when the starting URL returns Http errors ([bdc4af4](https://togithub.com/googleapis/java-websecurityscanner/commit/bdc4af46ed6d1d690c60b336e9769fc9ad087578))
* GoogleAccount is deprecated ([bdc4af4](https://togithub.com/googleapis/java-websecurityscanner/commit/bdc4af46ed6d1d690c60b336e9769fc9ad087578))
* update protobuf to v3.21.7 ([607ea93](https://togithub.com/googleapis/java-websecurityscanner/commit/607ea935cee44edf4c744fcf8d1103b7475c7859))


### Dependencies

* Update dependency cachetools to v5 ([#761](https://togithub.com/googleapis/java-websecurityscanner/issues/761)) ([5c48ffb](https://togithub.com/googleapis/java-websecurityscanner/commit/5c48ffba59c9e119ef8aa07ad9eed4e2bc1df8f4))
* Update dependency certifi to v2022.9.24 ([#754](https://togithub.com/googleapis/java-websecurityscanner/issues/754)) ([45a6597](https://togithub.com/googleapis/java-websecurityscanner/commit/45a65974f15738845d223138f908698c204cf702))
* Update dependency charset-normalizer to v2.1.1 ([#763](https://togithub.com/googleapis/java-websecurityscanner/issues/763)) ([e151a7d](https://togithub.com/googleapis/java-websecurityscanner/commit/e151a7dbafec413768861781c8ff3693e5be1e16))
* Update dependency click to v8.1.3 ([#764](https://togithub.com/googleapis/java-websecurityscanner/issues/764)) ([57f034c](https://togithub.com/googleapis/java-websecurityscanner/commit/57f034cc8733502e9cab72ecd4efd72e33a483c4))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#774](https://togithub.com/googleapis/java-websecurityscanner/issues/774)) ([a4ca862](https://togithub.com/googleapis/java-websecurityscanner/commit/a4ca8621e8b263d69b273770e0674ce2f44c8024))
* Update dependency gcp-releasetool to v1.8.8 ([#755](https://togithub.com/googleapis/java-websecurityscanner/issues/755)) ([88ecda6](https://togithub.com/googleapis/java-websecurityscanner/commit/88ecda6da20ad542fc2ad3360eee1864e9bdf95b))
* Update dependency google-api-core to v2.10.1 ([#765](https://togithub.com/googleapis/java-websecurityscanner/issues/765)) ([e5e3f7b](https://togithub.com/googleapis/java-websecurityscanner/commit/e5e3f7b50c8c8b9691716557a960d7f10a49dbd5))
* Update dependency google-auth to v2.11.1 ([#756](https://togithub.com/googleapis/java-websecurityscanner/issues/756)) ([26d68c6](https://togithub.com/googleapis/java-websecurityscanner/commit/26d68c63c6804c8d16c3f37b69de1c46efb92f34))
* Update dependency google-cloud-core to v2.3.2 ([#757](https://togithub.com/googleapis/java-websecurityscanner/issues/757)) ([625a1da](https://togithub.com/googleapis/java-websecurityscanner/commit/625a1da75640ee857c63bc6ad652bc4b07215438))
* Update dependency google-cloud-storage to v2.5.0 ([#766](https://togithub.com/googleapis/java-websecurityscanner/issues/766)) ([ec32fb7](https://togithub.com/googleapis/java-websecurityscanner/commit/ec32fb7d4909301d8db8c15c66ac6f8039bef1bb))
* Update dependency googleapis-common-protos to v1.56.4 ([#758](https://togithub.com/googleapis/java-websecurityscanner/issues/758)) ([48a2f9a](https://togithub.com/googleapis/java-websecurityscanner/commit/48a2f9a0fcf1cedc2e77c9ee301f89d69dcf199c))
* Update dependency joda-time:joda-time to v2.11.2 ([#751](https://togithub.com/googleapis/java-websecurityscanner/issues/751)) ([ccabb8e](https://togithub.com/googleapis/java-websecurityscanner/commit/ccabb8ef52ad1459c51ced253a4091c479684609))
* Update dependency protobuf to v4 ([#762](https://togithub.com/googleapis/java-websecurityscanner/issues/762)) ([50d6147](https://togithub.com/googleapis/java-websecurityscanner/commit/50d6147d2ff53de31d8fd3b7248d4d0be62f58e5))
* Update dependency zipp to v3.8.1 ([#760](https://togithub.com/googleapis/java-websecurityscanner/issues/760)) ([f6f5547](https://togithub.com/googleapis/java-websecurityscanner/commit/f6f55472157b78d1b1acfe48b9f067922230bbb8))

---
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 to renovate-bot/google-cloud-java that referenced this pull request Oct 8, 2022
…1.3 (googleapis#741)

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

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-dns).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMTkuMSIsInVwZGF0ZWRJblZlciI6IjMyLjIxOS4xIn0=-->
github-actions bot pushed a commit that referenced this pull request Nov 9, 2022
…1.4 (#741)

[![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:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.1.3` -> `26.1.4` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/compatibility-slim/26.1.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.4/confidence-slim/26.1.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, check this box

---

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-billing).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC45LjIiLCJ1cGRhdGVkSW5WZXIiOiIzNC45LjIifQ==-->
github-actions bot pushed a commit that referenced this pull request Nov 9, 2022
#741)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 485623855

Source-Link: https://togithub.com/googleapis/googleapis/commit/807125e7953e32535710924fe4bf0362ac93754d

Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/c4ddd6d651da69658a4762c5eafff5cd8f0e25c5
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYzRkZGQ2ZDY1MWRhNjk2NThhNDc2MmM1ZWFmZmY1Y2Q4ZjBlMjVjNSJ9
suztomo pushed a commit that referenced this pull request Feb 1, 2023
🤖 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).
suztomo pushed a commit that referenced this pull request Feb 1, 2023
suztomo pushed a commit that referenced this pull request Feb 1, 2023
🤖 I have created a release *beep* *boop*
---


## [3.0.0](googleapis/java-shared-dependencies@v2.13.0...v3.0.0) (2022-07-29)


### Bug Fixes

* enable longpaths support for windows test ([#1485](https://github.com/googleapis/java-shared-dependencies/issues/1485)) ([#738](googleapis/java-shared-dependencies#738)) ([48b157d](googleapis/java-shared-dependencies@48b157d))


### Dependencies

* update dependency com.google.api-client:google-api-client-bom to v1.35.2 ([#729](googleapis/java-shared-dependencies#729)) ([d518319](googleapis/java-shared-dependencies@d518319))
* update dependency com.google.api-client:google-api-client-bom to v2 ([#746](googleapis/java-shared-dependencies#746)) ([ef2b57a](googleapis/java-shared-dependencies@ef2b57a))
* update dependency com.google.api.grpc:grpc-google-common-protos to v2.9.2 ([#741](googleapis/java-shared-dependencies#741)) ([347269f](googleapis/java-shared-dependencies@347269f))
* update dependency com.google.auth:google-auth-library-bom to v1.8.0 ([#726](googleapis/java-shared-dependencies#726)) ([236bbb3](googleapis/java-shared-dependencies@236bbb3))
* update dependency com.google.auth:google-auth-library-bom to v1.8.1 ([#742](googleapis/java-shared-dependencies#742)) ([dabdbdf](googleapis/java-shared-dependencies@dabdbdf))
* update dependency com.google.cloud:first-party-dependencies to v2 ([#747](googleapis/java-shared-dependencies#747)) ([93b1ed8](googleapis/java-shared-dependencies@93b1ed8))
* update dependency com.google.cloud:grpc-gcp to v1.2.1 ([#751](googleapis/java-shared-dependencies#751)) ([618b00c](googleapis/java-shared-dependencies@618b00c))
* update dependency com.google.cloud:third-party-dependencies to v2 ([#748](googleapis/java-shared-dependencies#748)) ([afca3fd](googleapis/java-shared-dependencies@afca3fd))
* update dependency com.google.http-client:google-http-client-bom to v1.42.1 ([#730](googleapis/java-shared-dependencies#730)) ([4fdaad8](googleapis/java-shared-dependencies@4fdaad8))
* update dependency com.google.http-client:google-http-client-bom to v1.42.2 ([#749](googleapis/java-shared-dependencies#749)) ([68a82f4](googleapis/java-shared-dependencies@68a82f4))
* update dependency com.google.protobuf:protobuf-bom to v3.21.2 ([#722](googleapis/java-shared-dependencies#722)) ([68f570e](googleapis/java-shared-dependencies@68f570e))
* update dependency com.google.protobuf:protobuf-bom to v3.21.3 ([#756](googleapis/java-shared-dependencies#756)) ([7429507](googleapis/java-shared-dependencies@7429507))
* update dependency com.google.protobuf:protobuf-bom to v3.21.4 ([#759](googleapis/java-shared-dependencies#759)) ([f033db0](googleapis/java-shared-dependencies@f033db0))
* update dependency io.grpc:grpc-bom to v1.48.0 ([#752](googleapis/java-shared-dependencies#752)) ([9678d52](googleapis/java-shared-dependencies@9678d52))
* update dependency org.checkerframework:checker-qual to v3.23.0 ([#736](googleapis/java-shared-dependencies#736)) ([816d380](googleapis/java-shared-dependencies@816d380))
* update gax.version to v2.18.3 ([#731](googleapis/java-shared-dependencies#731)) ([5bbf1e1](googleapis/java-shared-dependencies@5bbf1e1))
* update gax.version to v2.18.4 ([#735](googleapis/java-shared-dependencies#735)) ([5161c6e](googleapis/java-shared-dependencies@5161c6e))
* update gax.version to v2.18.5 ([#758](googleapis/java-shared-dependencies#758)) ([608e040](googleapis/java-shared-dependencies@608e040))
* update gax.version to v2.18.6 ([#763](googleapis/java-shared-dependencies#763)) ([84b81e9](googleapis/java-shared-dependencies@84b81e9))
* update google.common-protos.version to v2.9.1 ([#724](googleapis/java-shared-dependencies#724)) ([62cd59a](googleapis/java-shared-dependencies@62cd59a))
* update google.core.version to v2.8.1 ([#725](googleapis/java-shared-dependencies#725)) ([d47af56](googleapis/java-shared-dependencies@d47af56))
* update google.core.version to v2.8.3 ([#760](googleapis/java-shared-dependencies#760)) ([33e38dc](googleapis/java-shared-dependencies@33e38dc))
* update google.core.version to v2.8.4 ([#762](googleapis/java-shared-dependencies#762)) ([5410450](googleapis/java-shared-dependencies@5410450))
* update google.core.version to v2.8.5 ([#764](googleapis/java-shared-dependencies#764)) ([4bc8c75](googleapis/java-shared-dependencies@4bc8c75))
* update iam.version to v1.5.0 ([#732](googleapis/java-shared-dependencies#732)) ([3e64541](googleapis/java-shared-dependencies@3e64541))
* update iam.version to v1.5.1 ([#737](googleapis/java-shared-dependencies#737)) ([5a85115](googleapis/java-shared-dependencies@5a85115))
* update iam.version to v1.5.2 ([#743](googleapis/java-shared-dependencies#743)) ([294ea85](googleapis/java-shared-dependencies@294ea85))

---
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: storage Issues related to the Cloud Storage API. cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants