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 @@ -9,7 +9,7 @@ asciidoc:
attributes:
page-nav-header-levels: 2
server_version: '7.6.2'
sdk_current_version: '1.7.3'
sdk_current_version: '1.7.4'
sdk_dot_minor: '1.7'
sdk_dot_major: '1.x'
version-server: '7.6'
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ sourceSets {
}

dependencies {
implementation group: 'com.couchbase.client', name: 'scala-client_2.12', version: '1.7.3'
implementation group: 'com.couchbase.client', name: 'tracing-opentelemetry', version: '1.5.3'
implementation group: 'com.couchbase.client', name: 'metrics-opentelemetry', version: '0.7.3'
implementation group: 'com.couchbase.client', name: 'metrics-micrometer', version: '0.7.3'
implementation group: 'com.couchbase.client', name: 'scala-client_2.12', version: '1.7.4'
implementation group: 'com.couchbase.client', name: 'tracing-opentelemetry', version: '1.5.4'
implementation group: 'com.couchbase.client', name: 'metrics-opentelemetry', version: '0.7.4'
implementation group: 'com.couchbase.client', name: 'metrics-micrometer', version: '0.7.4'

implementation "org.scalatest:scalatest_2.12:3.1.1"

Expand Down
25 changes: 22 additions & 3 deletions modules/project-docs/pages/sdk-release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ include::hello-world:start-using-sdk.adoc[tag=quick-install]
// reminder - add spoiler tag to wrappers for cxx notes?



[#latest-release]

[#latest-release]
== Scala SDK 1.7 Releases

Expand All @@ -42,6 +39,28 @@ grep '<reactor.version>' $src/pom.xml
grep ' <reactive-streams.version>' $src/pom.xml
////

=== Version 1.7.4 (08 October 2024)

Version 1.7.4 is the fourth maintenance release of the 1.7 series.

https://docs.couchbase.com/sdk-api/couchbase-scala-client-1.7.4/com/couchbase/client/scala/index.html[API Reference] |
http://docs.couchbase.com/sdk-api/couchbase-core-io-3.7.4/[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**


==== Bug Fixes
* https://jira.issues.couchbase.com/browse/JVMCBC-1570[JVMCBC-1570]:
The SDK was producing an incorrect partition map in `CouchbaseBucketConfig`, for buckets with >= 2 replicas.
This has now been fixed.

==== Improvements
* https://jira.issues.couchbase.com/browse/JVMCBC-1573[JVMCBC-1573]:
`ExtParallelUnstaging` was producing more threads than required, leading to OOM when many concurrent transactions were executed.
This has been rewritten to produce only the necessary number of threads are produced for each transaction.


=== Version 1.7.3 (23 September 2024)
Expand Down