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 antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ asciidoc:
attributes:
page-nav-header-levels: 1
server_version: '7.6.6'
sdk_current_version: '3.8.0'
sdk_current_version: '3.8.1'
sdk_dot_minor: '3.8'
sdk_dot_major: '3.x'
version-server: '7.6'
Expand Down
2 changes: 1 addition & 1 deletion modules/devguide/examples/java/Search.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ protected void hookOnNext(SearchRow row) {
SearchRequest request = SearchRequest
.create(VectorSearch.create(List.of(
VectorQuery.create("vector_field", vectorQuery).numCandidates(2).boost(0.3),
VectorQuery.create("vector_field", anotherVectorQuery).numCandidates(5).boost(0.7)));
VectorQuery.create("vector_field", anotherVectorQuery).numCandidates(5).boost(0.7))));

SearchResult result = scope.search("vector-and-fts-index", request);
// end::vector3[]
Expand Down
4 changes: 2 additions & 2 deletions modules/hello-world/pages/start-using-sdk.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ Maven::
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>java-client</artifactId>
<version>3.8.0</version>
<version>3.8.1</version>
</dependency>
</dependencies>
----
Expand All @@ -651,7 +651,7 @@ Gradle::
--
[source,groovy]
----
implementation 'com.couchbase.client:java-client:3.8.0'
implementation 'com.couchbase.client:java-client:3.8.1'
----
--
====
Expand Down
32 changes: 32 additions & 0 deletions modules/project-docs/pages/sdk-release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,38 @@ echo metrics-opentelemetry ; grep '<version>' $src/metrics-opentelemetry/pom.xml
echo metrics-micrometer ; grep '<version>' $src/metrics-micrometer/pom.xml | head -2 | tail -1 ; grep '<micrometer.version>' $src/pom.xml
////


=== Version 3.8.1 (9 May 2025)

This is the first maintenance release of the 3.8.1 series.

https://packages.couchbase.com/clients/java/3.8.1/Couchbase-Java-Client-3.1.0.zip[Download] |
https://docs.couchbase.com/sdk-api/couchbase-java-client-3.8.1/index.html[API Reference] |
http://docs.couchbase.com/sdk-api/couchbase-core-io-3.8.1/[Core API Reference]

The supported and tested dependencies for this release are:

* io.projectreactor:**reactor-core:3.6.9**
* org.reactivestreams:**reactive-streams:1.0.4**

Optional artifacts on top of this SDK version are tested for the following compatibilities:

.Optional Artifact Version Compatibility
[options="header"]
|=======================
| Artifact | Couchbase Version | Built Against | API Stability
| `tracing-opentelemetry` | 1.6.1 | OpenTelemetry 1.31.0 | Committed
| `tracing-opentracing` | 1.6.1 | OpenTracing 0.33.0 | Committed
| `metrics-opentelemetry` | 0.8.1 | OpenTelemetry 1.31.0 | Volatile
| `metrics-micrometer` | 0.8.1 | Micrometer 1.12.9 | Volatile
|=======================

==== Improvements

* https://couchbasecloud.atlassian.net/browse/JVMCBC-1631[JVMCBC-1631]:
Updated `Netty` to `4.1.119`.


=== Version 3.8.0 (9 April 2025)

This is the first release of the 3.8 series.
Expand Down
Loading