diff --git a/antora.yml b/antora.yml index ce6e638d..f2d73324 100644 --- a/antora.yml +++ b/antora.yml @@ -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' diff --git a/modules/hello-world/pages/start-using-sdk.adoc b/modules/hello-world/pages/start-using-sdk.adoc index 52d42ec8..445c1fb6 100644 --- a/modules/hello-world/pages/start-using-sdk.adoc +++ b/modules/hello-world/pages/start-using-sdk.adoc @@ -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. @@ -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' } ---- @@ -85,7 +85,7 @@ It can be included in your Maven `pom.xml` like this for 2.13: com.couchbase.client scala-client_2.13 - 1.6.0 + 1.6.2 ---- diff --git a/modules/project-docs/pages/sdk-full-installation.adoc b/modules/project-docs/pages/sdk-full-installation.adoc index d47e9789..8041801d 100644 --- a/modules/project-docs/pages/sdk-full-installation.adoc +++ b/modules/project-docs/pages/sdk-full-installation.adoc @@ -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. @@ -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' } ---- @@ -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' } ---- @@ -63,7 +63,7 @@ It can be included in your Maven `pom.xml` like this for 2.12: com.couchbase.client scala-client_2.12 - 1.6.0 + 1.6.2 ---- @@ -76,7 +76,7 @@ or 2.13: com.couchbase.client scala-client_2.13 - 1.6.0 + 1.6.2 ---- diff --git a/modules/project-docs/pages/sdk-release-notes.adoc b/modules/project-docs/pages/sdk-release-notes.adoc index 09469bda..3538d59a 100644 --- a/modules/project-docs/pages/sdk-release-notes.adoc +++ b/modules/project-docs/pages/sdk-release-notes.adoc @@ -24,6 +24,31 @@ grep '' $src/pom.xml grep ' ' $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.