-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Added batch support to the local DNS helper. #925
Conversation
Changes Unknown when pulling b783fe8 on mderka:bhelper into * on GoogleCloudPlatform:dns-alpha-batch*. |
Changes Unknown when pulling 3eebaa8 on mderka:bhelper into * on GoogleCloudPlatform:dns-alpha-batch*. |
URI relative = BASE_CONTEXT.relativize(exchange.getRequestURI()); | ||
URI relative = null; | ||
try { | ||
relative = BASE_CONTEXT.relativize(new URI(exchange.getRequestURI().getRawPath())); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
LocalDnsHelperTest.java:2916:86: error: ',' is not followed by whitespace. Edit: Fixed. |
Changes Unknown when pulling 0b168fb on mderka:bhelper into * on GoogleCloudPlatform:dns-alpha-batch*. |
On lines 1951-2 in the tests, why do we assertEquals(first, results.get(1)); and assertEquals(second, results.get(0));? Edit: The order of zones to be returned is not specified. Switched to using contains. |
Missing "batch.submit()" in testCombined() EDIT: Done. |
Done with my pass. |
@@ -112,6 +119,15 @@ | |||
private static final ScheduledExecutorService EXECUTORS = | |||
Executors.newScheduledThreadPool(2, Executors.defaultThreadFactory()); | |||
private static final String PROJECT_ID = "dummyprojectid"; | |||
private static final String responseBoundary = "____THIS_IS_HELPERS_BOUNDARY____"; |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Finished with my pass on the main code. Didn't complete a thorough review of the tests, though they seem fine (I think code could be more compact if you created 2 inner class for |
Contains minor test adjustments.
Changes Unknown when pulling e8aa3db on mderka:bhelper into * on GoogleCloudPlatform:dns-alpha-batch*. |
I made the test code more compact by adding the nested implementations of callbacks. Ready to proceed. |
Changes Unknown when pulling 5931b30 on mderka:bhelper into * on GoogleCloudPlatform:dns-alpha-batch*. |
Added batch support to the local DNS helper
Added batch support to the local DNS helper
[![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.springframework.boot:spring-boot-maven-plugin](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | `2.7.0` -> `2.7.1` | [![age](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-maven-plugin/2.7.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-maven-plugin/2.7.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-maven-plugin/2.7.1/compatibility-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-maven-plugin/2.7.1/confidence-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | | [org.springframework.boot:spring-boot-starter-thymeleaf](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | `2.7.0` -> `2.7.1` | [![age](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-thymeleaf/2.7.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-thymeleaf/2.7.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-thymeleaf/2.7.1/compatibility-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-thymeleaf/2.7.1/confidence-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | | [org.springframework.boot:spring-boot-starter-web](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | `2.7.0` -> `2.7.1` | [![age](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-web/2.7.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-web/2.7.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-web/2.7.1/compatibility-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.springframework.boot:spring-boot-starter-web/2.7.1/confidence-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>spring-projects/spring-boot</summary> ### [`v2.7.1`](https://github.com/spring-projects/spring-boot/releases/tag/v2.7.1) [Compare Source](https://github.com/spring-projects/spring-boot/compare/v2.7.0...v2.7.1) #### 🐞 Bug Fixes - Values in a spring.data.cassandra.config file can't override some defaults defined in CassandraProperties [#​31503](https://github.com/spring-projects/spring-boot/issues/31503) - `@RestControllerAdvice` `@ExceptionHandler` Inconsistent behavior with `@RestControllerEndpoint` [#​31501](https://github.com/spring-projects/spring-boot/issues/31501) - Malformed json causes BasicJsonParser to throw a NullPointerException [#​31499](https://github.com/spring-projects/spring-boot/issues/31499) - Metadata generated by the configuration properties annotation processor can miss inherited properties from nested classes [#​31484](https://github.com/spring-projects/spring-boot/issues/31484) - JarFile implementation calls close early which breaks verification of signed unpacked nested jars on Oracle JDK [#​31395](https://github.com/spring-projects/spring-boot/issues/31395) - Health indicators that take a long time to respond are difficult to diagnose [#​31384](https://github.com/spring-projects/spring-boot/issues/31384) - Custom Converter annotated with `@ConfigurationPropertiesBinding` does not get selected if targetType has a static factory method different return type [#​31341](https://github.com/spring-projects/spring-boot/issues/31341) - Tomcat server.max-http-header-size property is ignored when using HTTP/2 [#​31329](https://github.com/spring-projects/spring-boot/issues/31329) - OAuth2 Resource Server Auto-Configuration can only configure a single JWS algorithm [#​31321](https://github.com/spring-projects/spring-boot/issues/31321) - Maven shade plugin configuration in spring-boot-starter-parent does not append META-INF/spring/\*.imports files [#​31316](https://github.com/spring-projects/spring-boot/issues/31316) - GraphQL RouterFunctions are unordered which prevents other functions from being ordered after them [#​31314](https://github.com/spring-projects/spring-boot/issues/31314) - spring-boot-dependencies manages spring-ldap-ldif-batch which no longer exists [#​31254](https://github.com/spring-projects/spring-boot/issues/31254) - Dependency task can fail due to BootJar and BootWar afterResolve hooks [#​31213](https://github.com/spring-projects/spring-boot/issues/31213) - MimeMappings does not include application/wasm [#​31188](https://github.com/spring-projects/spring-boot/issues/31188) - spring-configuration-metadata.json is missing for additional-spring-configuration-metadata.json after switching from `@Configuration` to `@AutoConfiguration` [#​31186](https://github.com/spring-projects/spring-boot/issues/31186) - Binder(ConfigurationPropertySource... sources) does not assert that sources contains only non-null elements [#​31183](https://github.com/spring-projects/spring-boot/issues/31183) - WebMvcMetricsFilter stopped working since 2.7.0 [#​31150](https://github.com/spring-projects/spring-boot/issues/31150) - Dependency management for mimepull is redundant and the managed version is incompatible with Java 8 [#​31145](https://github.com/spring-projects/spring-boot/pull/31145) - layers.xsd is out of sync with the documentation and implementation for including and excluding module dependencies [#​31128](https://github.com/spring-projects/spring-boot/issues/31128) #### 📔 Documentation - Make SpringApplication Kotlin samples idiomatic [#​31463](https://github.com/spring-projects/spring-boot/pull/31463) - Harmonize Kotlin example [#​31458](https://github.com/spring-projects/spring-boot/pull/31458) - Remove duplicate content from "The Spring WebFlux Framework" section [#​31381](https://github.com/spring-projects/spring-boot/issues/31381) - Document that property placeholders should use the canonical property name form [#​31369](https://github.com/spring-projects/spring-boot/issues/31369) - Fix typos in the reference documentation [#​31366](https://github.com/spring-projects/spring-boot/issues/31366) - Enable Links for the Javadoc of the Gradle Plugin [#​31362](https://github.com/spring-projects/spring-boot/issues/31362) - Remove "earlier in this chapter" from places where content is now elsewhere in the documentation [#​31360](https://github.com/spring-projects/spring-boot/issues/31360) - Restore custom favicon documentation [#​31358](https://github.com/spring-projects/spring-boot/issues/31358) - Document that when using Lombok it must be configured to run before spring-boot-configuration-processor [#​31356](https://github.com/spring-projects/spring-boot/issues/31356) - Use Lambda-based API in Spring Security examples [#​31354](https://github.com/spring-projects/spring-boot/issues/31354) - Fix typo in name of imports file in javadoc of ImportCandidates.from [#​31277](https://github.com/spring-projects/spring-boot/pull/31277) - Typos in documentation ("spring-factories" instead of "spring.factories") [#​31206](https://github.com/spring-projects/spring-boot/issues/31206) - Fix Custom Layers Configuration section title in Maven plugin docs [#​31180](https://github.com/spring-projects/spring-boot/issues/31180) - org.springframework.boot.actuate.autoconfigure.metrics.graphql has no package info [#​31140](https://github.com/spring-projects/spring-boot/pull/31140) - Update Dynatrace Micrometer registry documentation [#​31132](https://github.com/spring-projects/spring-boot/pull/31132) #### 🔨 Dependency Upgrades - Upgrade to AppEngine SDK 1.9.97 [#​31421](https://github.com/spring-projects/spring-boot/issues/31421) - Upgrade to Byte Buddy 1.12.11 [#​31508](https://github.com/spring-projects/spring-boot/issues/31508) - Upgrade to Couchbase Client 3.3.1 [#​31422](https://github.com/spring-projects/spring-boot/issues/31422) - Upgrade to Dropwizard Metrics 4.2.10 [#​31488](https://github.com/spring-projects/spring-boot/issues/31488) - Upgrade to Elasticsearch 7.17.4 [#​31423](https://github.com/spring-projects/spring-boot/issues/31423) - Upgrade to Embedded Mongo 3.4.6 [#​31424](https://github.com/spring-projects/spring-boot/issues/31424) - Upgrade to Flyway 8.5.13 [#​31425](https://github.com/spring-projects/spring-boot/issues/31425) - Upgrade to Groovy 3.0.11 [#​31426](https://github.com/spring-projects/spring-boot/issues/31426) - Upgrade to H2 2.1.214 [#​31427](https://github.com/spring-projects/spring-boot/issues/31427) - Upgrade to Hazelcast 5.1.2 [#​31428](https://github.com/spring-projects/spring-boot/issues/31428) - Upgrade to Jetty 9.4.48.v20220622 [#​31509](https://github.com/spring-projects/spring-boot/issues/31509) - Upgrade to jOOQ 3.14.16 [#​31429](https://github.com/spring-projects/spring-boot/issues/31429) - Upgrade to Kotlin Coroutines 1.6.3 [#​31490](https://github.com/spring-projects/spring-boot/issues/31490) - Upgrade to MariaDB 3.0.5 [#​31431](https://github.com/spring-projects/spring-boot/issues/31431) - Upgrade to Micrometer 1.9.1 [#​31372](https://github.com/spring-projects/spring-boot/issues/31372) - Upgrade to MongoDB 4.6.1 [#​31432](https://github.com/spring-projects/spring-boot/issues/31432) - Upgrade to Neo4j Java Driver 4.4.6 [#​31433](https://github.com/spring-projects/spring-boot/issues/31433) - Upgrade to Netty 4.1.78.Final [#​31434](https://github.com/spring-projects/spring-boot/issues/31434) - Upgrade to Postgresql 42.3.6 [#​31435](https://github.com/spring-projects/spring-boot/issues/31435) - Upgrade to Reactive Streams 1.0.4 [#​31436](https://github.com/spring-projects/spring-boot/issues/31436) - Upgrade to Reactor 2020.0.20 [#​31371](https://github.com/spring-projects/spring-boot/issues/31371) - Upgrade to Solr 8.11.2 [#​31491](https://github.com/spring-projects/spring-boot/issues/31491) - Upgrade to Spring AMQP 2.4.6 [#​31376](https://github.com/spring-projects/spring-boot/issues/31376) - Upgrade to Spring Data 2021.2.1 [#​31374](https://github.com/spring-projects/spring-boot/issues/31374) - Upgrade to Spring Framework 5.3.21 [#​31319](https://github.com/spring-projects/spring-boot/issues/31319) - Upgrade to Spring HATEOAS 1.5.1 [#​31465](https://github.com/spring-projects/spring-boot/issues/31465) - Upgrade to Spring Integration 5.5.13 [#​31483](https://github.com/spring-projects/spring-boot/issues/31483) - Upgrade to Spring Kafka 2.8.7 [#​31377](https://github.com/spring-projects/spring-boot/issues/31377) - Upgrade to Spring LDAP 2.4.1 [#​31373](https://github.com/spring-projects/spring-boot/issues/31373) - Upgrade to Spring Security 5.7.2 [#​31375](https://github.com/spring-projects/spring-boot/issues/31375) - Upgrade to Tomcat 9.0.64 [#​31437](https://github.com/spring-projects/spring-boot/issues/31437) - Upgrade to Undertow 2.2.18.Final [#​31438](https://github.com/spring-projects/spring-boot/issues/31438) #### ❤️ Contributors We'd like to thank all the contributors who worked on this release! - [@​sdeleuze](https://github.com/sdeleuze) - [@​1993heqiang](https://github.com/1993heqiang) - [@​hpoettker](https://github.com/hpoettker) - [@​naveensrinivasan](https://github.com/naveensrinivasan) - [@​vpavic](https://github.com/vpavic) - [@​izeye](https://github.com/izeye) - [@​ningenMe](https://github.com/ningenMe) - [@​larsgrefer](https://github.com/larsgrefer) - [@​anthonyvdotbe](https://github.com/anthonyvdotbe) - [@​pirgeo](https://github.com/pirgeo) - [@​jprinet](https://github.com/jprinet) - [@​dalbani](https://github.com/dalbani) - [@​ittays](https://github.com/ittays) - [@​eddumelendez](https://github.com/eddumelendez) - [@​youribonnaffe](https://github.com/youribonnaffe) - [@​matei-cernaianu](https://github.com/matei-cernaianu) - [@​tudormarc](https://github.com/tudormarc) - [@​abel533](https://github.com/abel533) - [@​terminux](https://github.com/terminux) </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 these updates 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-vision).
🤖 I have created a release *beep* *boop* --- ## [2.1.4](googleapis/java-vision@v2.1.3...v2.1.4) (2022-06-27) ### Dependencies * update spring.version to v2.7.1 ([googleapis#925](googleapis/java-vision#925)) ([e52efbd](googleapis/java-vision@e52efbd)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
🤖 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).
…-info-reports-plugin to v3.4.0 (#925) [![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/) | `3.3.0` -> `3.4.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/compatibility-slim/3.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.0/confidence-slim/3.3.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-speech). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
…#925) [![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-core](https://github.com/googleapis/java-core) | `2.8.9` -> `2.8.10` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.10/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.10/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.10/compatibility-slim/2.8.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-core/2.8.10/confidence-slim/2.8.9)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/java-core</summary> ### [`v2.8.10`](https://github.com/googleapis/java-core/blob/HEAD/CHANGELOG.md#​2810-httpsgithubcomgoogleapisjava-corecomparev289v2810-2022-08-24) [Compare Source](https://github.com/googleapis/java-core/compare/v2.8.9...v2.8.10) ##### Dependencies - update dependency com.google.api:gax-bom to v2.19.0 ([#​907](https://github.com/googleapis/java-core/issues/907)) ([51b824c](https://github.com/googleapis/java-core/commit/51b824c225fd7095138e1ec2b6d47af4e2a34352)) - update dependency io.grpc:grpc-bom to v1.49.0 ([#​908](https://github.com/googleapis/java-core/issues/908)) ([fbccd2d](https://github.com/googleapis/java-core/commit/fbccd2daceb0984c7cb95f84f89a116e54bf4ddc)) </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-errorreporting). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNzQuMSIsInVwZGF0ZWRJblZlciI6IjMyLjE3NC4xIn0=-->
🤖 I have created a release *beep* *boop* --- ## [0.124.4](googleapis/java-errorreporting@v0.124.3...v0.124.4) (2022-08-25) ### Dependencies * update dependency com.google.cloud:google-cloud-core to v2.8.10 ([#925](googleapis/java-errorreporting#925)) ([a05d20b](googleapis/java-errorreporting@a05d20b)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
…1.1 (#925) [![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://github.com/googleapis/java-cloud-bom)) | `26.1.0` -> `26.1.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/compatibility-slim/26.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.1/confidence-slim/26.1.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-containeranalysis). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xODQuMiIsInVwZGF0ZWRJblZlciI6IjMyLjE4NC4yIn0=-->
…1575) (#925) Source-Link: googleapis/synthtool@2e9ac19 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:8175681a918181d306d9c370d3262f16b4c724cc73d74111b7d42fc985ca7f93
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [importlib-metadata](https://github.com/python/importlib_metadata) | `==4.8.3` -> `==4.12.0` | [![age](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/compatibility-slim/4.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/importlib-metadata/4.12.0/confidence-slim/4.8.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### 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-language). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
🤖 I have created a release *beep* *boop* --- ## [2.4.1](https://github.com/googleapis/java-language/compare/v2.4.0...v2.4.1) (2022-10-03) ### Documentation * Update classification sample to use v2 model ([#899](https://github.com/googleapis/java-language/issues/899)) ([3f956fe](https://github.com/googleapis/java-language/commit/3f956fe12e0eeee2fb4fdf546f77d6b1043f1f73)) ### Dependencies * Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#929](https://github.com/googleapis/java-language/issues/929)) ([26b8438](https://github.com/googleapis/java-language/commit/26b84380417fa4bb153f6d7c4f30716192440f81)) * Update dependency google-api-core to v2.10.1 ([#921](https://github.com/googleapis/java-language/issues/921)) ([412cbb9](https://github.com/googleapis/java-language/commit/412cbb97138f52f8b706fbae3c847a80fbe34b4f)) * Update dependency google-auth to v2.12.0 ([#922](https://github.com/googleapis/java-language/issues/922)) ([5e2fd20](https://github.com/googleapis/java-language/commit/5e2fd20f9d720cde6f6cf7a4547115373b57a3a8)) * Update dependency google-cloud-storage to v2.5.0 ([#923](https://github.com/googleapis/java-language/issues/923)) ([fa6ec7b](https://github.com/googleapis/java-language/commit/fa6ec7b5f759f16d7ca9e420f46afa29cca859dd)) * Update dependency google-crc32c to v1.5.0 ([#924](https://github.com/googleapis/java-language/issues/924)) ([a400871](https://github.com/googleapis/java-language/commit/a40087156b32159f72ce3908ff1f77bfd2727a3a)) * Update dependency importlib-metadata to v4.12.0 ([#925](https://github.com/googleapis/java-language/issues/925)) ([7fa6782](https://github.com/googleapis/java-language/commit/7fa678217951ab0ab7729e082c1e2f43a6c294a2)) * Update dependency jeepney to v0.8.0 ([#926](https://github.com/googleapis/java-language/issues/926)) ([d52324e](https://github.com/googleapis/java-language/commit/d52324e86b8d192a5e2ff0ab7aa8c5209d93b112)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
🤖 I have created a release *beep* *boop* --- ## [3.0.12](https://github.com/googleapis/java-recaptchaenterprise/compare/v3.0.11...v3.0.12) (2022-10-05) ### Bug Fixes * update protobuf to v3.21.7 ([6b5278d](https://github.com/googleapis/java-recaptchaenterprise/commit/6b5278d54f47be0816a7918102b003f0df024f8c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
* cleanup: Remove migrated files * 🦉 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>
….6.0 (#925) [![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.api.grpc:proto-google-iam-v1](https://github.com/googleapis/java-iam/proto-google-iam-v1) ([source](https://github.com/googleapis/java-iam)) | `1.5.2` -> `1.6.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.0/compatibility-slim/1.5.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.0/confidence-slim/1.5.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/java-iam</summary> ### [`v1.6.0`](https://github.com/googleapis/java-iam/blob/HEAD/CHANGELOG.md#​160-httpsgithubcomgoogleapisjava-iamcomparev152v160-2022-09-20) [Compare Source](https://github.com/googleapis/java-iam/compare/v1.5.2...v1.6.0) ##### Features - Add v2 client ([#​423](https://github.com/googleapis/java-iam/issues/423)) ([6b6c24f](https://github.com/googleapis/java-iam/commit/6b6c24f11093d2ccc5e5005337576db7c9626ec0)) - Update the public IAM Deny v2beta API ([5894873](https://github.com/googleapis/java-iam/commit/58948731feee6462ae75f6fe11c31e36e9ec6fce)) ##### Documentation - **samples:** Update param values ([#​401](https://github.com/googleapis/java-iam/issues/401)) ([8879c28](https://github.com/googleapis/java-iam/commit/8879c28cac3543c441be636da626bcc3c10509da)) ##### Dependencies - Update dependency com.google.apis:google-api-services-cloudresourcemanager to v3-rev20220710-1.32.1 ([#​383](https://github.com/googleapis/java-iam/issues/383)) ([0670b46](https://github.com/googleapis/java-iam/commit/0670b461db649b2be307735aa128e8273d42d38f)) - Update dependency com.google.apis:google-api-services-cloudresourcemanager to v3-rev20220710-2.0.0 ([#​396](https://github.com/googleapis/java-iam/issues/396)) ([ec96383](https://github.com/googleapis/java-iam/commit/ec96383900c271ddf96a58772ff459c6879c106f)) - Update dependency com.google.apis:google-api-services-cloudresourcemanager to v3-rev20220731-2.0.0 ([#​402](https://github.com/googleapis/java-iam/issues/402)) ([39605e5](https://github.com/googleapis/java-iam/commit/39605e5b1cb4ee9fea068e36a6452e02710ae03d)) - Update dependency com.google.apis:google-api-services-cloudresourcemanager to v3-rev20220807-2.0.0 ([#​407](https://github.com/googleapis/java-iam/issues/407)) ([475fa93](https://github.com/googleapis/java-iam/commit/475fa93c1b5affb19eec36856e719041d5bf56af)) - Update dependency com.google.apis:google-api-services-cloudresourcemanager to v3-rev20220828-2.0.0 ([#​417](https://github.com/googleapis/java-iam/issues/417)) ([f3b365d](https://github.com/googleapis/java-iam/commit/f3b365df695b61515871c24dd2d14cde015ad599)) - Update dependency com.google.apis:google-api-services-iam to v2beta-rev20220713-1.32.1 ([#​390](https://github.com/googleapis/java-iam/issues/390)) ([9bef280](https://github.com/googleapis/java-iam/commit/9bef280b9c871ad9333daa8f027b8679f91ccbb1)) - Update dependency com.google.apis:google-api-services-iam to v2beta-rev20220713-2.0.0 ([#​403](https://github.com/googleapis/java-iam/issues/403)) ([7a8270b](https://github.com/googleapis/java-iam/commit/7a8270b691b5c749c90185659bd3a51480c3e1c4)) - Update dependency com.google.apis:google-api-services-iamcredentials to v1-rev20211203-2.0.0 ([#​404](https://github.com/googleapis/java-iam/issues/404)) ([ee3537d](https://github.com/googleapis/java-iam/commit/ee3537d763c389d25d887fb1b2cfc61ff4101d65)) - Update dependency com.google.auth:google-auth-library-oauth2-http to v1.10.0 ([#​406](https://github.com/googleapis/java-iam/issues/406)) ([56284df](https://github.com/googleapis/java-iam/commit/56284df32ee657a5055e6dea3bd7b25772c218ea)) - Update dependency com.google.auth:google-auth-library-oauth2-http to v1.11.0 ([#​419](https://github.com/googleapis/java-iam/issues/419)) ([3375ba3](https://github.com/googleapis/java-iam/commit/3375ba3a5b44d97370233238a63e1a310b5b605a)) - Update dependency com.google.auth:google-auth-library-oauth2-http to v1.8.1 ([#​385](https://github.com/googleapis/java-iam/issues/385)) ([e6199b3](https://github.com/googleapis/java-iam/commit/e6199b3c094f606359c8e469a853a283cd82c836)) - Update dependency com.google.auth:google-auth-library-oauth2-http to v1.9.0 ([#​400](https://github.com/googleapis/java-iam/issues/400)) ([aa4e5b6](https://github.com/googleapis/java-iam/commit/aa4e5b6ec5af98925c4353c9393e33c423c67a60)) - Update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#​395](https://github.com/googleapis/java-iam/issues/395)) ([a88edd6](https://github.com/googleapis/java-iam/commit/a88edd61e1a66c5f48185dd5e8a2a61e5e9a002e)) - Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.1 ([#​399](https://github.com/googleapis/java-iam/issues/399)) ([bf814a9](https://github.com/googleapis/java-iam/commit/bf814a9faf878195676937cfe793b4a20fff6f06)) - Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#​420](https://github.com/googleapis/java-iam/issues/420)) ([e358921](https://github.com/googleapis/java-iam/commit/e358921e5ade85359a97b6a19af7a8397227c428)) - Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#​426](https://github.com/googleapis/java-iam/issues/426)) ([6da2bd2](https://github.com/googleapis/java-iam/commit/6da2bd228c5e3b9f6d9d35e95b955c7fbd65807d)) - Update dependency com.google.http-client:google-http-client-jackson2 to v1.42.2 ([#​386](https://github.com/googleapis/java-iam/issues/386)) ([de1b271](https://github.com/googleapis/java-iam/commit/de1b27180bf93a5c9b5a9a274f9d5a2c2ff5afc1)) - Update dependency com.google.protobuf:protobuf-java to v3.21.3 ([#​391](https://github.com/googleapis/java-iam/issues/391)) ([02a3c56](https://github.com/googleapis/java-iam/commit/02a3c56b1143d497b98e2f437d9b36ea468e36ea)) - Update dependency com.google.protobuf:protobuf-java to v3.21.4 ([#​393](https://github.com/googleapis/java-iam/issues/393)) ([f4c649b](https://github.com/googleapis/java-iam/commit/f4c649b67c0a8fa950487b3e3b2f10ab85136165)) - Update dependency com.google.protobuf:protobuf-java to v3.21.5 ([#​405](https://github.com/googleapis/java-iam/issues/405)) ([66b27cb](https://github.com/googleapis/java-iam/commit/66b27cb9722cac68af7844447524f149fb08b3b0)) - Update dependency io.grpc:grpc-protobuf to v1.48.0 ([#​388](https://github.com/googleapis/java-iam/issues/388)) ([d7beea4](https://github.com/googleapis/java-iam/commit/d7beea4de4aff35f998b017c6d6136c76ec1e36b)) - Update dependency io.grpc:grpc-protobuf to v1.48.1 ([#​397](https://github.com/googleapis/java-iam/issues/397)) ([512a655](https://github.com/googleapis/java-iam/commit/512a6554067bbbe9ac400f833a0a8cd4bfaef785)) - Update dependency io.grpc:grpc-protobuf to v1.49.0 ([#​413](https://github.com/googleapis/java-iam/issues/413)) ([93ac43d](https://github.com/googleapis/java-iam/commit/93ac43deb5a663bd22b5d14f8ba7a4bdff6928cd)) - Update dependency io.grpc:grpc-protobuf to v1.49.1 ([#​427](https://github.com/googleapis/java-iam/issues/427)) ([c7b26dd](https://github.com/googleapis/java-iam/commit/c7b26dd62e4b22634f15e4eb19d96c3dfc919d11)) - Update dependency io.grpc:grpc-stub to v1.48.0 ([#​389](https://github.com/googleapis/java-iam/issues/389)) ([c76beb0](https://github.com/googleapis/java-iam/commit/c76beb01ba7a59cdfe60fc498f33881faadafe89)) - Update dependency io.grpc:grpc-stub to v1.48.1 ([#​398](https://github.com/googleapis/java-iam/issues/398)) ([4917a59](https://github.com/googleapis/java-iam/commit/4917a59ae856825e6e96a5b3ca0d766b8a931de6)) - Update dependency io.grpc:grpc-stub to v1.49.0 ([#​414](https://github.com/googleapis/java-iam/issues/414)) ([1d98460](https://github.com/googleapis/java-iam/commit/1d9846000bf41f20907dfcbc11574e88f91cc8f8)) - Update dependency io.grpc:grpc-stub to v1.49.1 ([#​428](https://github.com/googleapis/java-iam/issues/428)) ([ad6f449](https://github.com/googleapis/java-iam/commit/ad6f449c6fdfbf91a89561359ef2f124e9d8dfa2)) </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-core). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTguMSIsInVwZGF0ZWRJblZlciI6IjMyLjE5OC4xIn0=-->
🤖 I have created a release *beep* *boop* --- ## [2.8.15](googleapis/java-core@v2.8.14...v2.8.15) (2022-09-23) ### Dependencies * Update dependency com.google.api.grpc:proto-google-iam-v1 to v1.6.0 ([#925](googleapis/java-core#925)) ([88a8523](googleapis/java-core@88a8523)) * Update dependency com.google.api.grpc:proto-google-iam-v1 to v1.6.1 ([#926](googleapis/java-core#926)) ([9f348aa](googleapis/java-core@9f348aa)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
[![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.api.grpc:grpc-google-iam-v1](https://github.com/googleapis/java-iam/grpc-google-iam-v1) ([source](https://github.com/googleapis/java-iam)) | `1.6.16` -> `1.6.17` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.6.17/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.6.17/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.6.17/compatibility-slim/1.6.16)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:grpc-google-iam-v1/1.6.17/confidence-slim/1.6.16)](https://docs.renovatebot.com/merge-confidence/) | | [com.google.api.grpc:proto-google-iam-v1](https://github.com/googleapis/java-iam/proto-google-iam-v1) ([source](https://github.com/googleapis/java-iam)) | `1.6.16` -> `1.6.17` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.17/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.17/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.17/compatibility-slim/1.6.16)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api.grpc:proto-google-iam-v1/1.6.17/confidence-slim/1.6.16)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/java-iam</summary> ### [`v1.6.17`](https://github.com/googleapis/java-iam/blob/HEAD/CHANGELOG.md#​1617-httpsgithubcomgoogleapisjava-iamcomparev1616v1617-2022-11-21) [Compare Source](https://github.com/googleapis/java-iam/compare/v1.6.16...v1.6.17) ##### Dependencies - Update dependency com.google.cloud:google-iam-policy to v1.6.16 ([#​542](https://github.com/googleapis/java-iam/issues/542)) ([deca3f1](https://github.com/googleapis/java-iam/commit/deca3f14b9ead487536cb7c94a20dc4c26800a2b)) </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 these updates 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-shared-dependencies). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yOS4yIiwidXBkYXRlZEluVmVyIjoiMzQuMjkuMiJ9-->
No description provided.