Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ implementation 'com.google.cloud:google-cloud-spanner'
If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-spanner:6.32.0'
implementation 'com.google.cloud:google-cloud-spanner:6.33.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.32.0"
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.33.0"
```

## Authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@
* read-write/write-only transactions, create multiple sessions. Note that standalone reads and
* queries use a transaction internally, and count toward the one transaction limit.
*
* <p>Cloud Spanner limits the number of sessions that can exist at any given time; thus, it is a
* good idea to delete idle and/or unneeded sessions. Aside from explicit deletes, Cloud Spanner can
* delete sessions for which no operations are sent for more than an hour, or due to internal
* errors. If a session is deleted, requests to it return {@link ErrorCode#NOT_FOUND}.
* <p>It is a good idea to delete idle and/or unneeded sessions. Aside from explicit deletes, Cloud
* Spanner can delete sessions for which no operations are sent for more than an hour, or due to
* internal errors. If a session is deleted, requests to it return {@link ErrorCode#NOT_FOUND}.
*
* <p>Idle sessions can be kept alive by sending a trivial SQL query periodically, for example,
* {@code SELECT 1}.
Expand Down