Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/java-shared-dependencies
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.6
Choose a base ref
...
head repository: googleapis/java-shared-dependencies
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.0
Choose a head ref
  • 13 commits
  • 9 files changed
  • 5 contributors

Commits on Aug 10, 2020

  1. chore: release 0.8.7-SNAPSHOT (#117)

    🤖 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).
    release-please[bot] authored Aug 10, 2020
    Configuration menu
    Copy the full SHA
    2093173 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2020

  1. Configuration menu
    Copy the full SHA
    05ad27e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1409a16 View commit details
    Browse the repository at this point in the history
  3. deps: update iam.version to v1 (major) (#120)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [com.google.api.grpc:grpc-google-iam-v1](https://togithub.com/googleapis/java-iam) | major | `0.15.0` -> `1.0.0` |
    | [com.google.api.grpc:proto-google-iam-v1](https://togithub.com/googleapis/java-iam) | major | `0.15.0` -> `1.0.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-iam</summary>
    
    ### [`v1.0.0`](https://togithub.com/googleapis/java-iam/blob/master/CHANGELOG.md#&#8203;100-httpswwwgithubcomgoogleapisjava-iamcomparev0140v100-2020-08-12)
    
    ##### Features
    
    -   promote to 1.0.0 ([#&#8203;16](https://www.github.com/googleapis/java-iam/issues/16)) ([84ff001](https://www.github.com/googleapis/java-iam/commit/84ff001e68e55145104095bc9193872f5e5623e4))
    
    ##### Dependencies
    
    -   update dependency com.google.cloud:google-cloud-shared-dependencies to v0.8.6 ([#&#8203;20](https://www.github.com/googleapis/java-iam/issues/20)) ([2613432](https://www.github.com/googleapis/java-iam/commit/2613432f698b6a857946ab5277d9ee55e6579f77))
    
    </details>
    
    ---
    
    ### Renovate configuration
    
    :date: **Schedule**: At any time (no schedule defined).
    
    :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    :no_bell: **Ignore**: Close this PR and you won't be reminded about these updates again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/java-shared-dependencies).
    renovate-bot authored Aug 12, 2020
    Configuration menu
    Copy the full SHA
    a6243a0 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2020

  1. chore: split renovate PRs (#123)

    For this artifact, we actually care about each individual library in the
    release notes. We shouldn't have ordering issues within this bom.
    chingor13 authored Aug 13, 2020
    Configuration menu
    Copy the full SHA
    a9416a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2020

  1. Configuration menu
    Copy the full SHA
    f72cef3 View commit details
    Browse the repository at this point in the history
  2. deps: update dependency com.google.protobuf:protobuf-bom to v3.13.0 (#…

    …126)
    
    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [com.google.protobuf:protobuf-bom](https://developers.google.com/protocol-buffers/) ([source](https://togithub.com/protocolbuffers/protobuf)) | minor | `3.12.4` -> `3.13.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>protocolbuffers/protobuf</summary>
    
    ### [`v3.13.0`](https://togithub.com/protocolbuffers/protobuf/releases/v3.13.0)
    
    [Compare Source](https://togithub.com/protocolbuffers/protobuf/compare/v3.12.4...v3.13.0)
    
    ### PHP
    
    -   The C extension is completely rewritten. The new C extension has significantly
         better parsing performance and fixes a handful of conformance issues. It will
        also make it easier to add support for more features like proto2 and proto3 presence.
    -   The new C extension does not support PHP 5.x, which is the reason for the major
         version bump. PHP 5.x users can still use pure-PHP.
    
    ### C++
    
    -   Removed deprecated unsafe arena string accessors
    -   Enabled heterogeneous lookup for std::string keys in maps.
    -   Removed implicit conversion from StringPiece to std::string
    -   Fix use-after-destroy bug when the Map is allocated in the arena.
    -   Improved the randomness of map ordering
    -   Added stack overflow protection for text format with unknown fields
    -   Use std::hash for proto maps to help with portability.
    -   Added more Windows macros to proto whitelist.
    -   Arena constructors for map entry messages are now marked "explicit"
        (for regular messages they were already explicit).
    -   Fix subtle aliasing bug in RepeatedField::Add
    -   Fix mismatch between MapEntry ByteSize and Serialize with respect to unset
        fields.
    
    ### Python
    
    -   JSON format conformance fixes:
        -   Reject lowercase t for Timestamp json format.
        -   Print full_name directly for extensions (no camelCase).
        -   Reject boolean values for integer fields.
        -   Reject NaN, Infinity, -Infinity that is not quoted.
        -   Base64 fixes for bytes fields: accept URL-safe base64 and missing padding.
    -   Bugfix for fields/files named "async" or "await".
    -   Improved the error message when AttributeError is returned from **getattr**
        in EnumTypeWrapper.
    
    ### Java
    
    -   Fixed a bug where setting optional proto3 enums with setFooValue() would
        not mark the value as present.
    -   Add Subtract function to FieldMaskUtil.
    
    ### C
    
    -   Dropped support for netstandard1.0 (replaced by support for netstandard1.1).
        This was required to modernize the parsing stack to use the `Span<byte>`
        type internally. ([#&#8203;7351](https://togithub.com/protocolbuffers/protobuf/issues/7351))
    -   Add `ParseFrom(ReadOnlySequence<byte>)` method to enable GC friendly
        parsing with reduced allocations and buffer copies. ([#&#8203;7351](https://togithub.com/protocolbuffers/protobuf/issues/7351))
    -   Add support for serialization directly to a `IBufferWriter<byte>` or
        to a `Span<byte>` to enable GC friendly serialization.
        The new API is available as extension methods on the `IMessage` type. ([#&#8203;7576](https://togithub.com/protocolbuffers/protobuf/issues/7576))
    -   Add `GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE` define to make
        generated code compatible with old C# compilers (pre-roslyn compilers
        from .NET framework and old versions of mono) that do not support
        ref structs. Users that are still on a legacy stack that does
        not support C# 7.2 compiler might need to use the new define
        in their projects to be able to build the newly generated code. ([#&#8203;7490](https://togithub.com/protocolbuffers/protobuf/issues/7490))
    -   Due to the major overhaul of parsing and serialization internals ([#&#8203;7351](https://togithub.com/protocolbuffers/protobuf/issues/7351) and [#&#8203;7576](https://togithub.com/protocolbuffers/protobuf/issues/7576)),
        it is recommended to regenerate your generated code to achieve the best
        performance (the legacy generated code will still work, but might incur
        a slight performance penalty).
    
    </details>
    
    ---
    
    ### Renovate configuration
    
    :date: **Schedule**: At any time (no schedule defined).
    
    :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-shared-dependencies).
    renovate-bot authored Aug 17, 2020
    Configuration menu
    Copy the full SHA
    908063f View commit details
    Browse the repository at this point in the history
  3. deps: update dependency io.grpc:grpc-bom to v1.31.1 (#124)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [io.grpc:grpc-bom](https://togithub.com/grpc/grpc-java) | patch | `1.31.0` -> `1.31.1` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>grpc/grpc-java</summary>
    
    ### [`v1.31.1`](https://togithub.com/grpc/grpc-java/releases/v1.31.1)
    
    [Compare Source](https://togithub.com/grpc/grpc-java/compare/v1.31.0...v1.31.1)
    
    Bug Fixes:
    
    -   netty: The environment variable `GRPC_EXPERIMENTAL_AUTOFLOWCONTROL=false` will now disable the BDP monitoring introduced in v1.30.0. This is intended to help diagnose a “too_many_pings” compatibility issue and will be removed once it is resolved. If you need to use the variable, \_please_ file an issue
    -   examples: some gRPC artifacts are missing in JCenter causing Android examples to sometimes fail to build. Now we are adding mavenCentral as fallback for the Android examples. See [#&#8203;5782](https://togithub.com/grpc/grpc-java/issues/5782)
    -   xds: meshCA protocol buffers added in v1.31.0 are now properly shaded in an internal package
    -   xds: fixed some internal breakage for traffic splitting
    
    </details>
    
    ---
    
    ### Renovate configuration
    
    :date: **Schedule**: At any time (no schedule defined).
    
    :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-shared-dependencies).
    renovate-bot authored Aug 17, 2020
    Configuration menu
    Copy the full SHA
    553a339 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2020

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

Commits on Aug 28, 2020

  1. fix: temporarily disable reporting to unblock releases (#129)

    Source-Author: Stephanie Wang <[email protected]>
    Source-Date: Tue Aug 25 13:05:26 2020 -0400
    Source-Repo: googleapis/synthtool
    Source-Sha: 968465a1cad496e1292ef4584a054a35f756ff94
    Source-Link: googleapis/synthtool@968465a
    yoshi-automation authored Aug 28, 2020
    Configuration menu
    Copy the full SHA
    7fff6f2 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. build(java): switch to release-publish app for notifying GitHub of re…

    …lease status (#130)
    
    Source-Author: Jeff Ching <[email protected]>
    Source-Date: Wed Aug 26 21:48:06 2020 -0700
    Source-Repo: googleapis/synthtool
    Source-Sha: 019c7168faa0e56619f792693a8acdb30d6de19b
    Source-Link: googleapis/synthtool@019c716
    yoshi-automation authored Aug 31, 2020
    Configuration menu
    Copy the full SHA
    c708f56 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d7d248 View commit details
    Browse the repository at this point in the history
  3. chore: release 0.9.0 (#132)

    * chore: updated CHANGELOG.md [ci skip]
    
    * chore: updated README.md [ci skip]
    
    * chore: updated versions.txt [ci skip]
    
    * chore: updated pom.xml
    
    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Aug 31, 2020
    Configuration menu
    Copy the full SHA
    d93e665 View commit details
    Browse the repository at this point in the history
Loading