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 Loading
base: v6.45.3
Choose a base ref
...
head repository: googleapis/java-spanner Loading
compare: v6.46.0
Choose a head ref
  • 10 commits
  • 32 files changed
  • 6 contributors

Commits on Aug 17, 2023

  1. chore(main): release 6.45.4-SNAPSHOT (#2596)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ### Updating meta-information for bleeding-edge SNAPSHOT release.
    
    ---
    This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
    release-please[bot] committed Aug 17, 2023
    Configuration menu
    Copy the full SHA
    134bf33 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. feat: Adding support for databoost (#2505)

    * feat: Adding support for databoost 
    
    Enable databoost feature for all customers and removing the beta api annotation.
    
    * Enabling databoost test
    
    * Update ITBatchReadTest.java
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * docs fix
    
    * 🦉 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
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    Co-authored-by: Rajat Bhatta <[email protected]>
    3 people committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    dd3e9a0 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. docs: add sample for transaction timeouts (#2599)

    Our current samples show how to set timeout and retry settings for all RPC invocations for a given RPC method, and how to set a timeout for a single statement, but we did not have a sample for setting a timeout for an entire transaction. This is something that customers have been asking multiple times. This sample shows how a transaction timeout can be set by using a gRPC context with a timeout.
    olavloite committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    59cec9b View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2023

  1. chore: allow comments in PG strings (#2604)

    Allow comments in PostgreSQL query strings for extracting parameter
    definitions. The comments need to be preserved, as they could contain
    query hints.
    olavloite committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    bfa777b View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. feat: support PostgreSQL for autoConfigEmulator (#2601)

    * feat: support PostgreSQL for autoConfigEmulator
    
    The autoConfigEmulator=true flag in the Connection API can be used to
    automatically connect to the emulator and automatically create the
    instance and database that is being referenced. This makes running a
    quick test on the emulator much easier, as all you need to do is to
    configure the correct (JDBC) connection URL, and it will automatically
    work. This mode would always create a GoogleSQL database. This change
    adds support for creating a PostgreSQL database if the user specifically
    sets the dialect in the connection string.
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    olavloite and gcf-owl-bot[bot] committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    fbf1df9 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. fix: fix kokoro windows java8 ci (#2573)

    * chore: fix kokoro windows java8 ci
    
    * chore: update version
    
    * chore: update file
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    harshachinta and gcf-owl-bot[bot] committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    465df7b View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. test: add a test for blind writes (#2595)

    * test: add a test for blind writes
    
    Adds a test for blind writes before executing a read or SQL statement in
    a read/write transaction.
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    olavloite and gcf-owl-bot[bot] committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    78470cb View commit details
    Browse the repository at this point in the history
  2. chore: deduplicate code for batch updates (#2591)

    * chore: deduplicate code for batch updates
    
    De-duplicate code that is equal for both the sync and async version of
    the executeBatchUpdate methods.
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    olavloite and gcf-owl-bot[bot] committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    1f850e9 View commit details
    Browse the repository at this point in the history
  3. chore: add execute method with allowed return types (#2592)

    * chore: add execute method with allowed return types
    
    Adds an execute method to the Connection API that allows the caller to
    specify the allowed result types. This can be used by driver
    implementations, such as JDBC, to use a single execute method in the
    Connection API, while still making sure that the method only executes
    statements that it should.
    The current executeUpdate method in the Connection API does not overlap
    completely with semantics of executeUpdate in JDBC, as JDBC allows any
    statement type that does not return a ResultSet to be executed with that
    method. The Connection API only allows statements that return an update
    count.
    Instead of modifying the executeUpdate method in the Connection API to
    match the semantics of JDBC (which would be a breaking change), this
    method can be used generically for all execute*** methods in the JDBC
    driver, which again can be used to clean up some code there.
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * fix: bad merge for clirr
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    olavloite and gcf-owl-bot[bot] committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    2851ce8 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. chore(main): release 6.46.0 (#2598)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    823582c View commit details
    Browse the repository at this point in the history
Loading