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 @@ -8,7 +8,7 @@ nav:
asciidoc:
attributes:
server_version: '7.6'
sdk_current_version: '1.6.1'
sdk_current_version: '1.6.2'
sdk_dot_minor: '1.6'
sdk_dot_major: '1.x'
version-server: '7.6'
Expand Down
6 changes: 3 additions & 3 deletions modules/hello-world/pages/start-using-sdk.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ SBT::
--
[source,sbt]
----
libraryDependencies += "com.couchbase.client" %% "scala-client" % "1.6.0"
libraryDependencies += "com.couchbase.client" %% "scala-client" % "1.6.2"
----

This will automatically use the Scala 2.12 or 2.13 builds, as appropriate for your SBT project.
Expand All @@ -67,7 +67,7 @@ It can be included in your `build.gradle` like this for 2.13:
[source,groovy]
----
dependencies {
compile group: 'com.couchbase.client', name: 'scala-client_2.13', version: '1.6.0'
compile group: 'com.couchbase.client', name: 'scala-client_2.13', version: '1.6.2'
}
----

Expand All @@ -85,7 +85,7 @@ It can be included in your Maven `pom.xml` like this for 2.13:
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>scala-client_2.13</artifactId>
<version>1.6.0</version>
<version>1.6.2</version>
</dependency>
</dependencies>
----
Expand Down
10 changes: 5 additions & 5 deletions modules/project-docs/pages/sdk-full-installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ It can be included in your SBT build like this:

[source,sbt]
----
libraryDependencies += "com.couchbase.client" %% "scala-client" % "1.6.0"
libraryDependencies += "com.couchbase.client" %% "scala-client" % "1.6.2"
----

This will automatically use the Scala 2.12 or 2.13 builds, as appropriate for your SBT project.
Expand All @@ -40,7 +40,7 @@ It can be included in your `build.gradle` like this for 2.12:
[source,groovy]
----
dependencies {
compile group: 'com.couchbase.client', name: 'scala-client_2.12', version: '1.6.0'
compile group: 'com.couchbase.client', name: 'scala-client_2.12', version: '1.6.2'
}
----

Expand All @@ -49,7 +49,7 @@ or 2.13:
[source,groovy]
----
dependencies {
compile group: 'com.couchbase.client', name: 'scala-client_2.13', version: '1.6.0'
compile group: 'com.couchbase.client', name: 'scala-client_2.13', version: '1.6.2'
}
----

Expand All @@ -63,7 +63,7 @@ It can be included in your Maven `pom.xml` like this for 2.12:
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>scala-client_2.12</artifactId>
<version>1.6.0</version>
<version>1.6.2</version>
</dependency>
</dependencies>
----
Expand All @@ -76,7 +76,7 @@ or 2.13:
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>scala-client_2.13</artifactId>
<version>1.6.0</version>
<version>1.6.2</version>
</dependency>
</dependencies>
----
Expand Down
25 changes: 25 additions & 0 deletions modules/project-docs/pages/sdk-release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,31 @@ grep '<reactor.version>' $src/pom.xml
grep ' <reactive-streams.version>' $src/pom.xml
////

=== Version 1.6.2 (29 April 2024)

This is a regular maintenance release.

https://docs.couchbase.com/sdk-api/couchbase-scala-client-1.6.2/com/couchbase/client/scala/index.html[API Reference] |
http://docs.couchbase.com/sdk-api/couchbase-core-io-2.6.2/[Core API Reference]

The supported and tested dependencies for this release are:

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

==== Improvements

* https://issues.couchbase.com/browse/SCBC-450[SCBC-450], https://issues.couchbase.com/browse/JVMCBC-1508[JVMCBC-1508] and https://issues.couchbase.com/browse/JVMCBC-1509[JVMCBC-1509]
Upgraded dependencies.

==== Bugfixes

* https://issues.couchbase.com/browse/JVMCBC-1506[JVMCBC-1506]
Reduced the rate at which messages appear in the server's `http_access.log` when a user provides valid credentials but does not have permission to access the bucket.
* https://issues.couchbase.com/browse/JVMCBC-1512[JVMCBC-1512]
Updated Service in Cluster Configuration if only the port is changed.


=== Version 1.6.1 (5 April 2024)

This is a regular maintenance release.
Expand Down