Skip to content
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-spanner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.27.0
Choose a base ref
...
head repository: googleapis/java-spanner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.28.0
Choose a head ref
  • 12 commits
  • 50 files changed
  • 6 contributors

Commits on Jul 19, 2022

  1. chore(main): release 6.27.1-SNAPSHOT (#1955)

    🤖 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).
    release-please[bot] authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    9728c84 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

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

    …plugin to v3 (#1954)
    
    [![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-deploy-plugin](https://maven.apache.org/plugins/) | `2.8.2` -> `3.0.0` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/compatibility-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-deploy-plugin/3.0.0/confidence-slim/2.8.2)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
    
    ---
    
    This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-spanner).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
    renovate-bot authored Jul 20, 2022
    Configuration menu
    Copy the full SHA
    f19b8f3 View commit details
    Browse the repository at this point in the history
  2. test(deps): update dependency org.mockito:mockito-core to v4.6.1 (#1901)

    [![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.mockito:mockito-core](https://togithub.com/mockito/mockito) | `4.5.1` -> `4.6.1` | [![age](https://badges.renovateapi.com/packages/maven/org.mockito:mockito-core/4.6.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.mockito:mockito-core/4.6.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.mockito:mockito-core/4.6.1/compatibility-slim/4.5.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.mockito:mockito-core/4.6.1/confidence-slim/4.5.1)](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-spanner).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjExNy40In0=-->
    renovate-bot authored Jul 20, 2022
    Configuration menu
    Copy the full SHA
    f01d263 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. feat: support multiple PostgreSQL transaction options (#1949)

    * feat: support multiple PostgreSQL transaction options
    
    PostgreSQL allows BEGIN and other transaction statements to set multiple transaction
    options at once (e.g. both 'read only' and 'isolation level serializable'). This was
    not supported by the Connection API, which only allowed one option at a time. The
    Python psycopg2 driver generates statements that include multiple transaction options
    in one statement.
    
    * fix: remove duplicated statement
    
    * chore: run code formatter
    
    * fix: support 'to' in set statements
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * fix: support on/off yes/no 1/0
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    olavloite and gcf-owl-bot[bot] authored Jul 22, 2022
    Configuration menu
    Copy the full SHA
    8b99f30 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. deps: update dependency org.junit.vintage:junit-vintage-engine to v5.…

    …9.0 (#1959)
    
    [![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.junit.vintage:junit-vintage-engine](https://junit.org/junit5/) ([source](https://togithub.com/junit-team/junit5)) | `5.8.2` -> `5.9.0` | [![age](https://badges.renovateapi.com/packages/maven/org.junit.vintage:junit-vintage-engine/5.9.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.junit.vintage:junit-vintage-engine/5.9.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.junit.vintage:junit-vintage-engine/5.9.0/compatibility-slim/5.8.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.junit.vintage:junit-vintage-engine/5.9.0/confidence-slim/5.8.2)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
    
    ---
    
    This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-spanner).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMjcuNCIsInVwZGF0ZWRJblZlciI6IjMyLjEyNy40In0=-->
    renovate-bot authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    f908626 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

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

    …onfig to v1.5.3 (#1961)
    
    [![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-shared-config](https://togithub.com/googleapis/java-shared-config) | `1.5.0` -> `1.5.3` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/compatibility-slim/1.5.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/confidence-slim/1.5.0)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-shared-config</summary>
    
    ### [`v1.5.3`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;153-httpsgithubcomgoogleapisjava-shared-configcomparev152v153-2022-07-27)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.2...v1.5.3)
    
    ##### Dependencies
    
    -   update dependency org.junit.vintage:junit-vintage-engine to v5.9.0 ([#&#8203;497](https://togithub.com/googleapis/java-shared-config/issues/497)) ([1fc6ab4](https://togithub.com/googleapis/java-shared-config/commit/1fc6ab445624cd4f9c8b161d109f346a9e5ed09a))
    -   Update doclet to latest version 1.6.0 ([38fb7c3](https://togithub.com/googleapis/java-shared-config/commit/38fb7c3957fb6c9b2da10f9e463cc93a8b80a3a4))
    
    ### [`v1.5.2`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;152-httpsgithubcomgoogleapisjava-shared-configcomparev151v152-2022-07-25)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.1...v1.5.2)
    
    ##### Dependencies
    
    -   update dependency com.puppycrawl.tools:checkstyle to v10 ([#&#8203;435](https://togithub.com/googleapis/java-shared-config/issues/435)) ([bfc8ce1](https://togithub.com/googleapis/java-shared-config/commit/bfc8ce1deca6292147d002d3afe22a09840aa5d6))
    -   update dependency org.graalvm.buildtools:junit-platform-native to v0.9.13 ([#&#8203;488](https://togithub.com/googleapis/java-shared-config/issues/488)) ([39b91ee](https://togithub.com/googleapis/java-shared-config/commit/39b91ee1283f0a5fbbe63e8bfd1ec97ab4ab377e))
    -   update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.13 ([#&#8203;489](https://togithub.com/googleapis/java-shared-config/issues/489)) ([cc3bcfa](https://togithub.com/googleapis/java-shared-config/commit/cc3bcfa2d6717441a8d5b5048fa78c2cf7aabf2b))
    
    ### [`v1.5.1`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;151-httpsgithubcomgoogleapisjava-shared-configcomparev150v151-2022-06-30)
    
    [Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.0...v1.5.1)
    
    ##### Dependencies
    
    -   update dependency org.graalvm.buildtools:junit-platform-native to v0.9.12 ([#&#8203;482](https://togithub.com/googleapis/java-shared-config/issues/482)) ([fbfc6dc](https://togithub.com/googleapis/java-shared-config/commit/fbfc6dc1329faaead3a3114c8599d9267722e7f0))
    -   update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.12 ([#&#8203;483](https://togithub.com/googleapis/java-shared-config/issues/483)) ([336cb78](https://togithub.com/googleapis/java-shared-config/commit/336cb7827b36583228c9e2b85871ae72f4c55975))
    
    </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-spanner).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
    renovate-bot authored Aug 4, 2022
    Configuration menu
    Copy the full SHA
    9bad20b View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. deps: update dependency com.google.cloud:google-cloud-monitoring to v…

    …3.3.6 (#1962)
    
    [![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-monitoring](https://togithub.com/googleapis/java-monitoring) | `3.3.1` -> `3.3.6` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-monitoring/3.3.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-monitoring/3.3.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-monitoring/3.3.6/compatibility-slim/3.3.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-monitoring/3.3.6/confidence-slim/3.3.1)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>googleapis/java-monitoring</summary>
    
    ### [`v3.3.6`](https://togithub.com/googleapis/java-monitoring/blob/HEAD/CHANGELOG.md#&#8203;336-httpsgithubcomgoogleapisjava-monitoringcomparev335v336-2022-08-02)
    
    [Compare Source](https://togithub.com/googleapis/java-monitoring/compare/v3.3.5...v3.3.6)
    
    ##### Dependencies
    
    -   update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.1 ([#&#8203;902](https://togithub.com/googleapis/java-monitoring/issues/902)) ([44d7138](https://togithub.com/googleapis/java-monitoring/commit/44d7138db870e748fb7f419ef2fe1cf10fc59926))
    
    ### [`v3.3.5`](https://togithub.com/googleapis/java-monitoring/blob/HEAD/CHANGELOG.md#&#8203;335-httpsgithubcomgoogleapisjava-monitoringcomparev334v335-2022-07-30)
    
    [Compare Source](https://togithub.com/googleapis/java-monitoring/compare/v3.3.4...v3.3.5)
    
    ##### Dependencies
    
    -   update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#&#8203;897](https://togithub.com/googleapis/java-monitoring/issues/897)) ([d6b01f3](https://togithub.com/googleapis/java-monitoring/commit/d6b01f3261e2df6d0f5b24566c11004cf3652950))
    
    ### [`v3.3.4`](https://togithub.com/googleapis/java-monitoring/blob/HEAD/CHANGELOG.md#&#8203;334-httpsgithubcomgoogleapisjava-monitoringcomparev333v334-2022-07-26)
    
    [Compare Source](https://togithub.com/googleapis/java-monitoring/compare/v3.3.3...v3.3.4)
    
    ##### Dependencies
    
    -   update dependency com.google.protobuf:protobuf-java-util to v3.21.4 ([#&#8203;894](https://togithub.com/googleapis/java-monitoring/issues/894)) ([e321edb](https://togithub.com/googleapis/java-monitoring/commit/e321edbeb9d5f51bbfb404129d919a77cdcca315))
    
    ### [`v3.3.3`](https://togithub.com/googleapis/java-monitoring/blob/HEAD/CHANGELOG.md#&#8203;333-httpsgithubcomgoogleapisjava-monitoringcomparev332v333-2022-07-22)
    
    [Compare Source](https://togithub.com/googleapis/java-monitoring/compare/v3.3.2...v3.3.3)
    
    ##### Dependencies
    
    -   update dependency com.google.protobuf:protobuf-java-util to v3.21.3 ([#&#8203;889](https://togithub.com/googleapis/java-monitoring/issues/889)) ([31c7bf1](https://togithub.com/googleapis/java-monitoring/commit/31c7bf1db20fe44eb7c9cfd4a95fbde449a879a6))
    
    ### [`v3.3.2`](https://togithub.com/googleapis/java-monitoring/blob/HEAD/CHANGELOG.md#&#8203;332-httpsgithubcomgoogleapisjava-monitoringcomparev331v332-2022-07-13)
    
    [Compare Source](https://togithub.com/googleapis/java-monitoring/compare/v3.3.1...v3.3.2)
    
    ##### Bug Fixes
    
    -   enable longpaths support for windows test ([#&#8203;1485](https://togithub.com/googleapis/java-monitoring/issues/1485)) ([#&#8203;883](https://togithub.com/googleapis/java-monitoring/issues/883)) ([8a96502](https://togithub.com/googleapis/java-monitoring/commit/8a965025da7942c2d9bcb970782343a3c8538d36))
    
    </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-spanner).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
    renovate-bot authored Aug 5, 2022
    Configuration menu
    Copy the full SHA
    5bb9844 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency com.google.cloud:google-cloud-spanner …

    …to v6.27.0 (#1963)
    
    [![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-spanner](https://togithub.com/googleapis/java-spanner) | `6.25.6` -> `6.27.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-spanner/6.27.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-spanner/6.27.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-spanner/6.27.0/compatibility-slim/6.25.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-spanner/6.27.0/confidence-slim/6.25.6)](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-spanner).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
    renovate-bot authored Aug 5, 2022
    Configuration menu
    Copy the full SHA
    51c0520 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2022

  1. fix: target new spanner db admin service config (#1956)

    - [ ] Regenerate this pull request now.
    
    chore: remove old spanner db admin service config
    PiperOrigin-RevId: 463110616
    
    Source-Link: googleapis/googleapis@0f38696
    
    Source-Link: https://github.com/googleapis/googleapis-gen/commit/b048ca647e11fc92d5bcf0bec1881d25f321dea9
    Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjA0OGNhNjQ3ZTExZmM5MmQ1YmNmMGJlYzE4ODFkMjVmMzIxZGVhOSJ9
    
    feat: Add ListDatabaseRoles API to support role based access control
    PiperOrigin-RevId: 462086058
    
    Source-Link: googleapis/googleapis@4f072bf
    
    Source-Link: https://github.com/googleapis/googleapis-gen/commit/06f699da66f7a07b9541e57a7d03863b4df4971c
    Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDZmNjk5ZGE2NmY3YTA3Yjk1NDFlNTdhN2QwMzg2M2I0ZGY0OTcxYyJ9
    gcf-owl-bot[bot] authored Aug 6, 2022
    Configuration menu
    Copy the full SHA
    cb13534 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. fix: Use the key instead of the value to verify the number of channel…

    …s created in ChannelUsageTest. (#1965)
    
    This is to fix an issue where the test would fail if the value of the key changes in gRPC.
    blakeli0 authored Aug 9, 2022
    Configuration menu
    Copy the full SHA
    ea329bb View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. Configuration menu
    Copy the full SHA
    327b5f0 View commit details
    Browse the repository at this point in the history
  2. chore(main): release 6.28.0 (#1958)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Aug 11, 2022
    Configuration menu
    Copy the full SHA
    c8e82fe View commit details
    Browse the repository at this point in the history
Loading