Skip to content

Commit 24a8a10

Browse files
Merge pull request #396 from programmatix/release/3.5
3.5.1 release
2 parents defe9b6 + 8b17066 commit 24a8a10

4 files changed

Lines changed: 48 additions & 7 deletions

File tree

antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ nav:
77
asciidoc:
88
attributes:
99
server_version: '7.2'
10-
sdk_current_version: '3.5.0'
10+
sdk_current_version: '3.5.1'
1111
sdk_dot_minor: 3.5
1212
sdk_dot_major: 3.x
1313
version-server: '7.2'

modules/hello-world/pages/start-using-sdk.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ We recommend running the latest Java LTS version (i.e. at the time of writing JD
6262
// Other supported Java versions will work, too.
6363
Couchbase publishes all stable artifacts to https://central.sonatype.com/namespace/com.couchbase.client[Maven Central].
6464

65-
The latest version (as of November 2023) is https://central.sonatype.com/artifact/com.couchbase.client/java-client/3.5.0/jar[3.5.0].
65+
The latest version (as of December 2023) is https://central.sonatype.com/artifact/com.couchbase.client/java-client/3.5.1/jar[3.5.1].
6666

6767
You can use your favorite dependency management tool to install the SDK.
6868

@@ -77,7 +77,7 @@ Maven::
7777
<dependency>
7878
<groupId>com.couchbase.client</groupId>
7979
<artifactId>java-client</artifactId>
80-
<version>3.5.0</version>
80+
<version>3.5.1</version>
8181
</dependency>
8282
</dependencies>
8383
----
@@ -88,7 +88,7 @@ Gradle::
8888
--
8989
[source,groovy]
9090
----
91-
implementation 'com.couchbase.client:java-client:3.5.0'
91+
implementation 'com.couchbase.client:java-client:3.5.1'
9292
----
9393
--
9494
====

modules/project-docs/pages/sdk-full-installation.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ see the xref:project-docs:compatibility.adoc#jdk-compat[Compatibility] section f
3232
We recommend running the latest Java LTS version (i.e. at the time of writing JDK 21) with the highest patch version available.
3333

3434
Couchbase publishes all stable artifacts to https://central.sonatype.com/namespace/com.couchbase.client[Maven Central].
35-
The latest version (as of November 2023) is https://central.sonatype.com/artifact/com.couchbase.client/java-client/3.5.0/jar[3.5.0].
35+
The latest version (as of December 2023) is https://central.sonatype.com/artifact/com.couchbase.client/java-client/3.5.1/jar[3.5.1].
3636

3737
You can use your favorite dependency management tool to install the SDK.
3838

@@ -49,7 +49,7 @@ For https://maven.apache.org[Maven], you can insert the following into the depen
4949
<dependency>
5050
<groupId>com.couchbase.client</groupId>
5151
<artifactId>java-client</artifactId>
52-
<version>3.5.0</version>
52+
<version>3.5.1</version>
5353
</dependency>
5454
----
5555
Refer to the https://maven.apache.org/guides/introduction/introduction-to-the-pom.html/[Maven Documentation] for more information regarding the structure of the `pom.xml` file.
@@ -61,7 +61,7 @@ For https://gradle.org/[Gradle], you can use:
6161
6262
[source,groovy]
6363
----
64-
implementation 'com.couchbase.client:java-client:3.5.0'
64+
implementation 'com.couchbase.client:java-client:3.5.1'
6565
----
6666
--
6767
====

modules/project-docs/pages/sdk-release-notes.adoc

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,47 @@ All patch releases for each dot minor release should be API compatible, and safe
2929
any changes to expected behavior are noted in the release notes that follow.
3030

3131

32+
=== Version 3.5.1 (7 December 2023)
33+
34+
This is a regular maintenance release.
35+
36+
The supported and tested dependencies for this release are:
37+
38+
* io.projectreactor:**reactor-core:3.5.8**
39+
* org.reactivestreams:**reactive-streams:1.0.4**
40+
41+
Optional artifacts on top of this SDK version are tested for the following compatibilities:
42+
43+
.Optional Artifact Version Compatibility
44+
[options="header"]
45+
|=======================
46+
| Artifact | Couchbase Version | Built Against | API Stability
47+
| `tracing-opentelemetry` | 1.3.1 | OpenTelemetry 1.31.0 | Committed
48+
| `tracing-opentracing` | 1.3.1 | OpenTracing 0.33.0 | Committed
49+
| `metrics-opentelemetry` | 0.5.1 | OpenTelemetry 1.31.0 | Volatile
50+
| `metrics-micrometer` | 0.5.1 | Micrometer 1.10.0 | Volatile
51+
|=======================
52+
53+
==== Improvements
54+
55+
* https://issues.couchbase.com/browse/JVMCBC-1435[JVMCBC-1435],
56+
https://issues.couchbase.com/browse/JVMCBC-1436[JVMCBC-1436]:
57+
Upgraded Netty and Jackson dependencies.
58+
* https://issues.couchbase.com/browse/JVMCBC-1440[JVMCBC-1440]:
59+
Adding `DocumentNotLockedException` supporting future Couchbase Server versions that will return an error code when unlocking a document that is not locked.
60+
61+
==== Bugfixes
62+
63+
* https://issues.couchbase.com/browse/JVMCBC-1433[JVMCBC-1433]:
64+
The SDK can now connect to Memcached buckets whose names contain the percent (`%`) character.
65+
(We'd like to take this opportunity to remind everyone that Memcached buckets are deprecated in favor of Ephemeral buckets.)
66+
* https://issues.couchbase.com/browse/JVMCBC-1437[JVMCBC-1437]:
67+
With Couchbase Server versions that support updating a collection's max expiry, it's now possible to clear the expiry by passing `Duration.ZERO` for the new value.
68+
* https://issues.couchbase.com/browse/JVMCBC-1441[JVMCBC-1441]:
69+
The SDK now handles an additional error case for `IndexNotFoundException`.
70+
* https://issues.couchbase.com/browse/JVMCBC-1442[JVMCBC-1442]:
71+
Fixed a dependency issue with `tracing-opentelemetry` module.
72+
3273

3374
=== Version 3.5.0 (21 November 2023)
3475

0 commit comments

Comments
 (0)