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-jdbc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.24.2
Choose a base ref
...
head repository: googleapis/java-spanner-jdbc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.25.0
Choose a head ref
  • 13 commits
  • 11 files changed
  • 4 contributors

Commits on Nov 26, 2024

  1. chore(main): release 2.24.3-SNAPSHOT (#1834)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    9f22070 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    78aa4bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c01ab98 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    52180d9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fb20987 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d681cea View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3f9dbf1 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

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

Commits on Dec 4, 2024

  1. Configuration menu
    Copy the full SHA
    b4ea413 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a010a1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3cd9cd6 View commit details
    Browse the repository at this point in the history
  4. feat: add fallback to PDML mode (#1841)

    DML statements that are executed in auto-commit mode can use either
    atomic transactions, or partitioned non-atomic transactions. The
    former is bound by the mutation limits in Spanner. The latter may
    update/delete any number of rows.
    
    The transaction type that is used to execute DML statements in
    auto-commit mode is determined by the connection variable
    `autocommit_dml_mode`. This connection variable now supports a
    third value. The supported values are:
    
      - TRANSACTIONAL (default): Uses atomic read/write transactions.
      - PARTITIONED_NON_ATOMIC: Use Partitioned DML for DML statements in auto-commit mode. Use this mode
        to execute DML statements that exceed the transaction mutation limit in Spanner.
      - TRANSACTIONAL_WITH_FALLBACK_TO_PARTITIONED_NON_ATOMIC: Execute DML statements using atomic read/write
        transactions. If this fails because the mutation limit on Spanner has been exceeded, the DML statement
        is retried using a Partitioned DML transaction.
    olavloite authored Dec 4, 2024
    Configuration menu
    Copy the full SHA
    1e81863 View commit details
    Browse the repository at this point in the history
  5. chore(main): release 2.25.0 (#1842)

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