Skip to content
This repository was archived by the owner on Sep 16, 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-iam
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.13.0
Choose a base ref
...
head repository: googleapis/java-iam
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.14.0
Choose a head ref
  • 15 commits
  • 108 files changed
  • 5 contributors

Commits on May 5, 2020

  1. Configuration menu
    Copy the full SHA
    97d433f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    81a7470 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2020

  1. ci: enable GitHub actions (#5)

    * ci: enable GitHub actions
    
    * chore: fix build.bat
    chingor13 authored May 13, 2020
    Configuration menu
    Copy the full SHA
    b2e7dd9 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2020

  1. deps: update dependency com.google.protobuf:protobuf-bom to v3.12.0 (#6)

    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.11.4` -> `3.12.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>protocolbuffers/protobuf</summary>
    
    ### [`v3.12.0`](https://togithub.com/protocolbuffers/protobuf/releases/v3.12.0)
    
    [Compare Source](https://togithub.com/protocolbuffers/protobuf/compare/v3.11.4...v3.12.0)
    
    ### Protocol Compiler
    
    -   [experimental] Singular, non-message typed fields in proto3 now support
        presence tracking. This is enabled by adding the "optional" field label and
        passing the `--experimental_allow_proto3_optional` flag to protoc.
        -   For usage info, see [docs/field_presence.md](docs/field_presence.md).
        -   During this experimental phase, code generators should update to support
            proto3 presence, see [docs/implementing_proto3_presence.md](docs/implementing_proto3_presence.md) for instructions.
    -   Allow duplicate symbol names when multiple descriptor sets are passed on
        the command-line, to match the behavior when multiple .proto files are passed.
    -   Deterministic `protoc --descriptor_set_out` ([#&#8203;7175](https://togithub.com/protocolbuffers/protobuf/issues/7175))
    
    ### C++
    
    -   [experimental] Added proto3 presence support.
    -   New descriptor APIs to support proto3 presence.
    -   Fix for [#&#8203;7463](https://togithub.com/protocolbuffers/protobuf/issues/7463) in -rc1 (core dump mixing optional and singular fields in proto3)
    -   Enable Arenas by default on all .proto files.
    -   Documented that users are not allowed to subclass Message or MessageLite.
    -   Mark generated classes as final; inheriting from protos is strongly discouraged.
    -   Add stack overflow protection for text format with unknown fields.
    -   Add accessors for map key and value FieldDescriptors.
    -   Add FieldMaskUtil::FromFieldNumbers().
    -   MessageDifferencer: use ParsePartial() on Any fields so the diff does not
        fail when there are missing required fields.
    -   ReflectionOps::Merge(): lookup messages in the right factory, if it can.
    -   Added Descriptor::WellKnownTypes enum and Descriptor::well_known_type()
        accessor as an easier way of determining if a message is a Well-Known Type.
    -   Optimized RepeatedField::Add() when it is used in a loop.
    -   Made proto move/swap more efficient.
    -   De-virtualize the GetArena() method in MessageLite.
    -   Improves performance of json_stream_parser.cc by factor 1000 ([#&#8203;7230](https://togithub.com/protocolbuffers/protobuf/issues/7230))
    -   bug: [#&#8203;7076](https://togithub.com/protocolbuffers/protobuf/issues/7076) undefine Windows OUT and OPTIONAL macros ([#&#8203;7087](https://togithub.com/protocolbuffers/protobuf/issues/7087))
    -   Fixed a bug in FieldDescriptor::DebugString() that would erroneously print
        an "optional" label for a field in a oneof.
    -   Fix bug in parsing bool extensions that assumed they are always 1 byte.
    -   Fix off-by-one error in FieldOptions::ByteSize() when extensions are present.
    -   Clarified the comments to show an example of the difference between
        Descriptor::extension and DescriptorPool::FindAllExtensions.
    -   Add a compiler option 'code_size' to force optimize_for=code_size on all
        protos where this is possible.
    
    ### Java
    
    -   [experimental] Added proto3 presence support.
    -   Fix for [#&#8203;7480](https://togithub.com/protocolbuffers/protobuf/issues/7480) in -rc1 ("TextFormat and JsonFormat ignore experimental proto3 optional enums")
    -   Fix for [#&#8203;7505](https://togithub.com/protocolbuffers/protobuf/issues/7505) in -rc1 (" toString() returns incorrect ascii when there are duplicate keys in a map")
    -   Mark java enum \_VALUE constants as [@&#8203;Deprecated](https://togithub.com/Deprecated) if the enum field is deprecated
    -   reduce <clinit> size for enums with allow_alias set to true.
    -   Sort map fields alphabetically by the field's key when printing textproto.
    -   TextFormat.merge() handles Any as top level type.
    -   Throw a descriptive IllegalArgumentException when calling
        getValueDescriptor() on enum special value UNRECOGNIZED instead of
        ArrayIndexOutOfBoundsException.
    -   Fixed an issue with JsonFormat.printer() where setting printingEnumsAsInts()
        would override the configuration passed into includingDefaultValueFields().
    -   Implement overrides of indexOf() and contains() on primitive lists returned
        for repeated fields to avoid autoboxing the list contents.
    -   Add overload to FieldMaskUtil.fromStringList that accepts a descriptor.
    -   [bazel] Move Java runtime/toolchains into //java ([#&#8203;7190](https://togithub.com/protocolbuffers/protobuf/issues/7190))
    
    ### Python
    
    -   [experimental] Added proto3 presence support.
    -   [experimental] fast import protobuf module, only works with cpp generated code linked in.
    -   Truncate 'float' fields to 4 bytes of precision in setters for pure-Python
        implementation (C++ extension was already doing this).
    -   Fixed a memory leak in C++ bindings.
    -   Added a deprecation warning when code tries to create Descriptor objects
        directly.
    -   Fix unintended comparison between bytes and string in descriptor.py.
    -   Avoid printing excess digits for float fields in TextFormat.
    -   Remove Python 2.5 syntax compatibility from the proto compiler generated \_pb2.py module code.
    -   Drop 3.3, 3.4 and use single version docker images for all python tests ([#&#8203;7396](https://togithub.com/protocolbuffers/protobuf/issues/7396))
    
    ### JavaScript
    
    -   Fix js message pivot selection ([#&#8203;6813](https://togithub.com/protocolbuffers/protobuf/issues/6813))
    
    ### PHP
    
    -   Persistent Descriptor Pool ([#&#8203;6899](https://togithub.com/protocolbuffers/protobuf/issues/6899))
    -   Implement lazy loading of php class for proto messages ([#&#8203;6911](https://togithub.com/protocolbuffers/protobuf/issues/6911))
    -   Correct [@&#8203;return](https://togithub.com/return) in Any.unpack docblock ([#&#8203;7089](https://togithub.com/protocolbuffers/protobuf/issues/7089))
    -   Ignore unknown enum value when ignore_unknown specified ([#&#8203;7455](https://togithub.com/protocolbuffers/protobuf/issues/7455))
    
    ### Ruby
    
    -   [experimental] Implemented proto3 presence for Ruby. ([#&#8203;7406](https://togithub.com/protocolbuffers/protobuf/issues/7406))
    -   Stop building binary gems for ruby &lt;2.5 ([#&#8203;7453](https://togithub.com/protocolbuffers/protobuf/issues/7453))
    -   Fix for wrappers with a zero value ([#&#8203;7195](https://togithub.com/protocolbuffers/protobuf/issues/7195))
    -   Fix for JSON serialization of 0/empty-valued wrapper types ([#&#8203;7198](https://togithub.com/protocolbuffers/protobuf/issues/7198))
    -   Call "Class#new" over rb_class_new_instance in decoding ([#&#8203;7352](https://togithub.com/protocolbuffers/protobuf/issues/7352))
    -   Build extensions for Ruby 2.7 ([#&#8203;7027](https://togithub.com/protocolbuffers/protobuf/issues/7027))
    -   assigning 'nil' to submessage should clear the field. ([#&#8203;7397](https://togithub.com/protocolbuffers/protobuf/issues/7397))
    
    ### C
    
    -   [experimental] Add support for proto3 presence fields in C# ([#&#8203;7382](https://togithub.com/protocolbuffers/protobuf/issues/7382))
    -   Cleanup various bits of Google.Protobuf ([#&#8203;6674](https://togithub.com/protocolbuffers/protobuf/issues/6674))
    -   Fix conformance test failures for Google.Protobuf ([#&#8203;6910](https://togithub.com/protocolbuffers/protobuf/issues/6910))
    -   Fix latest ArgumentException for C# extensions ([#&#8203;6938](https://togithub.com/protocolbuffers/protobuf/issues/6938))
    -   Remove unnecessary branch from ReadTag ([#&#8203;7289](https://togithub.com/protocolbuffers/protobuf/issues/7289))
    -   Enforce recursion depth checking for unknown fields ([#&#8203;7132](https://togithub.com/protocolbuffers/protobuf/issues/7132))
    -   Mark GetOption API as obsolete and expose the "GetOptions()" method
        on descriptors instead ([#&#8203;7491](https://togithub.com/protocolbuffers/protobuf/issues/7491))
    -   Remove Has/Clear members for C# message fields in proto2 ([#&#8203;7429](https://togithub.com/protocolbuffers/protobuf/issues/7429))
    
    ### Objective-C
    
    -   [experimental] ObjC Proto3 optional support ([#&#8203;7421](https://togithub.com/protocolbuffers/protobuf/issues/7421))
    -   Block subclassing of generated classes ([#&#8203;7124](https://togithub.com/protocolbuffers/protobuf/issues/7124))
    -   Use references to Obj C classes instead of names in descriptors. ([#&#8203;7026](https://togithub.com/protocolbuffers/protobuf/issues/7026))
    -   Revisit how the WKTs are bundled with ObjC. ([#&#8203;7173](https://togithub.com/protocolbuffers/protobuf/issues/7173))
    
    ### Other
    
    -   Add a proto_lang_toolchain for javalite ([#&#8203;6882](https://togithub.com/protocolbuffers/protobuf/issues/6882))
    -   [bazel] Update gtest and deprecate //external:{gtest,gtest_main} ([#&#8203;7237](https://togithub.com/protocolbuffers/protobuf/issues/7237))
    -   Add application note for explicit presence tracking. ([#&#8203;7390](https://togithub.com/protocolbuffers/protobuf/issues/7390))
    -   Howto doc for implementing proto3 presence in a code generator. ([#&#8203;7407](https://togithub.com/protocolbuffers/protobuf/issues/7407))
    
    </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#googleapis/java-iam).
    renovate-bot authored May 19, 2020
    Configuration menu
    Copy the full SHA
    73b7a4a View commit details
    Browse the repository at this point in the history

Commits on May 20, 2020

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

    …onfig to v0.6.0 (#7)
    
    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | minor | `0.5.0` -> `0.6.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-shared-config</summary>
    
    ### [`v0.6.0`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#&#8203;060-httpswwwgithubcomgoogleapisjava-shared-configcomparev050v060-2020-05-19)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v0.5.0...v0.6.0)
    
    ##### Features
    
    -   add new configuration necessary to support auto-value ([#&#8203;136](https://www.github.com/googleapis/java-shared-config/issues/136)) ([c14689b](https://www.github.com/googleapis/java-shared-config/commit/c14689b8791c173687f719d73156a989aedd7ba6))
    
    </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#googleapis/java-iam).
    renovate-bot authored May 20, 2020
    Configuration menu
    Copy the full SHA
    2c3fe21 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. build(deps): update dependency org.apache.maven.plugins:maven-project…

    …-info-reports-plugin to v3.1.0 (#9)
    
    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | org.apache.maven.plugins:maven-project-info-reports-plugin | minor | `3.0.0` -> `3.1.0` |
    
    ---
    
    ### 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#googleapis/java-iam).
    renovate-bot authored Jun 4, 2020
    Configuration menu
    Copy the full SHA
    74ecaa1 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2020

  1. deps: update dependency io.grpc:grpc-bom to v1.30.0 (#10)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [io.grpc:grpc-bom](https://togithub.com/grpc/grpc-java) | minor | `1.29.0` -> `1.30.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>grpc/grpc-java</summary>
    
    ### [`v1.30.0`](https://togithub.com/grpc/grpc-java/releases/v1.30.0)
    
    [Compare Source](https://togithub.com/grpc/grpc-java/compare/v1.29.0...v1.30.0)
    
    ##### Behavioral Changes
    
    -   netty: Bandwidth delay product (BDP) is enabled by default ([#&#8203;6979](https://togithub.com/grpc/grpc-java/issues/6979)). BDP dynamically adjusts flow control window to optimize the network bandwidth utilization. To disable this feature, build channel/server with `NettyChannelBuilder#flowControlWindow` or `NettyServerBuilder#flowControlWindow`. Existing `flowControlWindow` users need to use `initialFlowWindowSize` to enable BDP.
    
    ##### New Features
    
    -   core: ManagedChannel provides LoadBalancer#Helper with implemented createResolvingOobChannel ([#&#8203;6923](https://togithub.com/grpc/grpc-java/issues/6923)).
    -   stub: Add `ClientCallStreamObserver.disableAutoRequestWithInitial(int)` and `ServerCallStreamObserver.disableAutoRequest()` that disables all automatic inbound flow-control requests. These methods are intended to replace the existing `CallStreamObserver.disableAutoInboundFlowControl()`. There may still be some tweaks to the API, so `disableAutoInboundFlowControl()` is not yet deprecated
    -   inprocess,core: add ability to pass status cause to client ([#&#8203;6968](https://togithub.com/grpc/grpc-java/issues/6968)). The new API is added to `InprocessChannelBuilder` to show stacktrace from transport when an error happens in tests.
    -   netty: support setting options of boss in NettyServer ([#&#8203;6947](https://togithub.com/grpc/grpc-java/issues/6947)). Adds a new API on `NettyServerBuilder` to allow passing channel options for the boss ELG.
    
    ##### Bug Fixes
    
    -   okhttp&amp;#x3A; use new APIs to configure TLS in Android (roll forward of [#&#8203;6959](https://togithub.com/grpc/grpc-java/issues/6959)) ([#&#8203;6960](https://togithub.com/grpc/grpc-java/issues/6960)). Starting from Android 10, there is a new set of public APIs for configuring TLS, where we were previously invoking hidden methods in SSLSocket. Some of those hidden methods are no longer allowed (will be removed in the future) in Android 11. We migrate to use public APIs whenever possible.
    -   netty: Using classloader to isolate grpc without isolating netty can cause exceptions when creating netty channel/server is fixed ([#&#8203;7048](https://togithub.com/grpc/grpc-java/issues/7048)).
    -   api, core, services: make ProtoReflectionService interceptor compatible ([#&#8203;6967](https://togithub.com/grpc/grpc-java/issues/6967)). Previously intercepting the ProtoReflectionService breaks the internal hack of passing the server instance to the service. Now we change the way of how it obtains the server instance so that applying interceptors to it doesn’t break its functionality. This change also allows multiple servers to use a shared ProtoReflectionService instance.
    -   netty: Reduce race window size between GOAWAY and new streams. This should greatly reduce the number of calls that fail with errors similar to “UNAVAILABLE: HTTP/2 error code: NO_ERROR Received Goaway.” Although note that these errors have multiple sources, and it only addresses one of them
    -   core: Delay transport shutdown when changing a subchannel’s addresses. This should prevent users from seeing errors saying “UNAVAILABLE: InternalSubchannel closed transport due to address change,” which should have already been rare
    
    ##### Documentation
    
    -   For Java 9+ users, we now recommend using `org.apache.tomcat:annotations-api` for the `@Generated` annotation instead of `javax.annotation:javax.annotation-api`, as it has a more appropriate license
    -   SECURITY.md: add instruction for disabling Conscrypt's default TrustManager ([#&#8203;6962](https://togithub.com/grpc/grpc-java/issues/6962)). By default, Conscrypt delegates hostname verification to the platform's default HostNameVerifier, which in OpenJDK is a deny-all implementation. You can configure the Conscrypt provider to not use its TrustManager.
    
    ##### Dependencies
    
    -   Starting from this version, some transitive dependencies of gRPC artifacts are changed from compile scope to runtime scope. Users may experience their application can not rebuild once the gRPC version is upgraded, because some other component of the project may require a dependency that is no longer transitively provided by gRPC artifacts at compile time; and if that happens, users should explicitly add that dependency for the other component. This change does not affect running the application at runtime.
    -   Bumped protobuf to 3.12.0
    
    ##### Examples
    
    -   Deleted example-kotlin ([#&#8203;6936](https://togithub.com/grpc/grpc-java/issues/6936)). [grpc-kotlin](https://togithub.com/grpc/grpc-kotlin) was officially released and examples can be found in its own repository.
    
    ##### Acknowledgements
    
    [@&#8203;agasparovic-sabre](https://togithub.com/agasparovic-sabre)
    [@&#8203;AgentK20](https://togithub.com/AgentK20)
    [@&#8203;apolcyn](https://togithub.com/apolcyn)
    [@&#8203;asdf2014](https://togithub.com/asdf2014)
    [@&#8203;ashithasantosh](https://togithub.com/ashithasantosh)
    [@&#8203;chalin](https://togithub.com/chalin)
    [@&#8203;bogdandrutu](https://togithub.com/bogdandrutu)
    [@&#8203;DRayX](https://togithub.com/DRayX)
    [@&#8203;hojongs](https://togithub.com/hojongs)
    [@&#8203;Nextproc](https://togithub.com/Nextproc)
    [@&#8203;plaflamme](https://togithub.com/plaflamme)
    [@&#8203;reggiemcdonald](https://togithub.com/reggiemcdonald)
    [@&#8203;RiyaTyagi](https://togithub.com/RiyaTyagi)
    
    </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#googleapis/java-iam).
    renovate-bot authored Jun 10, 2020
    Configuration menu
    Copy the full SHA
    f69ac15 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2020

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

    …onfig to v0.8.0 (#11)
    
    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | minor | `0.6.0` -> `0.8.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-shared-config</summary>
    
    ### [`v0.8.0`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#&#8203;080-httpswwwgithubcomgoogleapisjava-shared-configcomparev070v080-2020-06-10)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v0.7.0...v0.8.0)
    
    ##### Features
    
    -   revert "feat: mark auto-value-annotations scope as provided" ([#&#8203;154](https://www.github.com/googleapis/java-shared-config/issues/154)) ([88afb4e](https://www.github.com/googleapis/java-shared-config/commit/88afb4e7c57cb6e00929c098135314a926d9da30))
    
    ### [`v0.7.0`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#&#8203;070-httpswwwgithubcomgoogleapisjava-shared-configcomparev060v070-2020-06-10)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v0.6.0...v0.7.0)
    
    ##### Features
    
    -   mark auto-value-annotations scope as provided ([#&#8203;151](https://www.github.com/googleapis/java-shared-config/issues/151)) ([44ea4cb](https://www.github.com/googleapis/java-shared-config/commit/44ea4cbbf92b4ad35ffaffb7a01a1bce05063daf))
    
    ##### Bug Fixes
    
    -   lock the google-java-format version used by formatter plugin ([#&#8203;149](https://www.github.com/googleapis/java-shared-config/issues/149)) ([d58c054](https://www.github.com/googleapis/java-shared-config/commit/d58c05437a4ea8767db2bebfcc405ec77aeb9705))
    
    </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#googleapis/java-iam).
    renovate-bot authored Jun 11, 2020
    Configuration menu
    Copy the full SHA
    22705a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f005b4 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2020

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

Commits on Jun 18, 2020

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

Commits on Jun 26, 2020

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

    …onfig to v0.9.0 (#17)
    
    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | minor | `0.8.1` -> `0.9.0` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-shared-config</summary>
    
    ### [`v0.9.0`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#&#8203;090-httpswwwgithubcomgoogleapisjava-shared-configcomparev081v090-2020-06-25)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v0.8.1...v0.9.0)
    
    ##### Features
    
    -   add ignore rule for javax annotations to handle error in java11 ([#&#8203;171](https://www.github.com/googleapis/java-shared-config/issues/171)) ([cd635ad](https://www.github.com/googleapis/java-shared-config/commit/cd635ad6e8e5d71ac3a30e7656eb788027f1c370))
    
    ##### [0.8.1](https://www.github.com/googleapis/java-shared-config/compare/v0.8.0...v0.8.1) (2020-06-15)
    
    ##### Bug Fixes
    
    -   bump flatten plugin version to fix missing version in profile section issue ([#&#8203;159](https://www.github.com/googleapis/java-shared-config/issues/159)) ([5b34939](https://www.github.com/googleapis/java-shared-config/commit/5b349399a590b589718b7049f66c82ee38742372))
    
    </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#googleapis/java-iam).
    renovate-bot authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    c54859b View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2020

  1. deps: update dependency com.google.cloud:google-cloud-shared-dependen…

    …cies to v0.8.2 (#18)
    
    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | patch | `0.8.1` -> `0.8.2` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-shared-dependencies</summary>
    
    ### [`v0.8.2`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#&#8203;082-httpswwwgithubcomgoogleapisjava-shared-dependenciescomparev081v082-2020-07-01)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v0.8.1...v0.8.2)
    
    </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#googleapis/java-iam).
    renovate-bot authored Jul 1, 2020
    Configuration menu
    Copy the full SHA
    13767ef View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. Configuration menu
    Copy the full SHA
    25c0098 View commit details
    Browse the repository at this point in the history
  2. chore: release 0.14.0 (#15)

    * chore: created CHANGELOG.md [ci skip]
    
    * chore: updated README.md [ci skip]
    
    * chore: updated versions.txt [ci skip]
    
    * chore: updated proto-google-iam-v1/pom.xml [ci skip]
    
    * chore: updated grpc-google-iam-v1/pom.xml [ci skip]
    
    * chore: updated pom.xml [ci skip]
    
    * chore: updated grpc-google-iam-v1/build.gradle [ci skip]
    
    * chore: updated proto-google-iam-v1/build.gradle
    
    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    5f64afe View commit details
    Browse the repository at this point in the history
Loading