Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.11.2"
".": "1.12.0"
}
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.12.0](https://github.com/googleapis/go-sql-spanner/compare/v1.11.2...v1.12.0) (2025-03-18)


### Features

* Add AutoConfigEmulator option ([#395](https://github.com/googleapis/go-sql-spanner/issues/395)) ([4193437](https://github.com/googleapis/go-sql-spanner/commit/4193437f27b419aecc7e2669543f3c931953fcc3)), refs [#384](https://github.com/googleapis/go-sql-spanner/issues/384)
* Partitioned DML as ExecOption ([#393](https://github.com/googleapis/go-sql-spanner/issues/393)) ([ac2f7f2](https://github.com/googleapis/go-sql-spanner/commit/ac2f7f29979d026619cfded186b67714d540011c)), refs [#378](https://github.com/googleapis/go-sql-spanner/issues/378)
* Use retry delay for aborted read/write transactions ([#398](https://github.com/googleapis/go-sql-spanner/issues/398)) ([b357353](https://github.com/googleapis/go-sql-spanner/commit/b357353b089c757c5f33d693bb18505902f5b307))


### Bug Fixes

* Protect transaction runner from panic in tx func ([#394](https://github.com/googleapis/go-sql-spanner/issues/394)) ([0dc0845](https://github.com/googleapis/go-sql-spanner/commit/0dc0845e56ca8a97fd76b6513c00fde87e67b939)), refs [#386](https://github.com/googleapis/go-sql-spanner/issues/386)

## [1.11.2](https://github.com/googleapis/go-sql-spanner/compare/v1.11.1...v1.11.2) (2025-03-06)


Expand Down
2 changes: 1 addition & 1 deletion driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
"google.golang.org/grpc/status"
)

const userAgent = "go-sql-spanner/1.11.2" // x-release-please-version
const userAgent = "go-sql-spanner/1.12.0" // x-release-please-version

// LevelNotice is the default logging level that the Spanner database/sql driver
// uses for informational logs. This level is deliberately chosen to be one level
Expand Down
Loading