Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit d4b9d54

Browse files
chore: generate libraries at Wed Jan 7 15:11:02 UTC 2026
1 parent db18b29 commit d4b9d54

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ implementation 'com.google.cloud:google-cloud-spanner'
5656
If you are using Gradle without BOM, add this to your dependencies:
5757

5858
```Groovy
59-
implementation 'com.google.cloud:google-cloud-spanner:6.105.0'
59+
implementation 'com.google.cloud:google-cloud-spanner:6.106.0'
6060
```
6161

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

6464
```Scala
65-
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.105.0"
65+
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.106.0"
6666
```
6767

6868
## Authentication
@@ -567,7 +567,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
567567
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-spanner/java11.html
568568
[stability-image]: https://img.shields.io/badge/stability-stable-green
569569
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-spanner.svg
570-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-spanner/6.105.0
570+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-spanner/6.106.0
571571
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
572572
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
573573
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

google-cloud-spanner/src/main/java/com/google/cloud/spanner/SpannerOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,8 @@ public Builder setExperimentalHost(String host) {
16791679
if (this.usePlainText) {
16801680
Preconditions.checkArgument(
16811681
!host.startsWith("https:"),
1682-
"Please remove the 'https:' protocol prefix from the host string when using plain text communication");
1682+
"Please remove the 'https:' protocol prefix from the host string when using plain text"
1683+
+ " communication");
16831684
if (!host.startsWith("http")) {
16841685
host = "http://" + host;
16851686
}

0 commit comments

Comments
 (0)