You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/project-docs/pages/sdk-full-installation.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ We recommend running the latest Java LTS version (i.e. at the time of writing JD
33
33
Java 17 has various enhancements like sealed classes, pattern matching for switch expressions (in preview), and further updates and improvements on core libraries.
34
34
35
35
Couchbase publishes all stable artifacts to https://search.maven.org/search?q=com.couchbase.client[Maven Central].
36
-
The latest version (as of February 2023) is https://search.maven.org/artifact/com.couchbase.client/java-client/3.4.3/jar[3.4.3].
36
+
The latest version (as of March 2023) is https://search.maven.org/artifact/com.couchbase.client/java-client/3.4.4/jar[3.4.4].
37
37
38
38
You can use your favorite dependency management tool to install the SDK.
39
39
@@ -51,7 +51,7 @@ The following snippet shows how to do it with https://maven.apache.org/[Maven].
51
51
<dependency>
52
52
<groupId>com.couchbase.client</groupId>
53
53
<artifactId>java-client</artifactId>
54
-
<version>3.4.3</version>
54
+
<version>3.4.4</version>
55
55
</dependency>
56
56
</dependencies>
57
57
----
@@ -63,7 +63,7 @@ For https://gradle.org/[Gradle], you can use:
Coordinates in Full-Text Search geographic queries can now be specified using a staged builder, so it's harder to accidentally swap the latitude and longitude components. Example usage:
Added "network" as an alias for the "io.networkResolution" connection string parameter.
57
+
For example, the connection string "couchbase://example.com?network=external" is now equivalent to "couchbase://example.com?io.networkResolution=external".
58
+
This was done for compatibility with other Couchbase SDKs that use "network" as the name of this parameter.
`Cluster.connect()` now rejects connection strings that have no addresses (like "couchbase://").
63
+
Before this change, it would accept the invalid connection string, and subsequent operations would fail with a misleading error message: "The cluster does not support cluster-level queries".
Fixed a regression in Java SDK 3.4.3 and Scala SDK 1.4.3 that caused SQL++ query result metadata to always include metrics, regardless of the "metrics" query option.
0 commit comments