diff --git a/docs/run-non-transactional-storage-operations-through-library.mdx b/docs/run-non-transactional-storage-operations-through-library.mdx
index 59e2f537..4bee033f 100644
--- a/docs/run-non-transactional-storage-operations-through-library.mdx
+++ b/docs/run-non-transactional-storage-operations-through-library.mdx
@@ -237,7 +237,7 @@ Select your build tool, and follow the instructions to add the build dependency
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb:3.15.1'
+ implementation 'com.scalar-labs:scalardb:3.15.4'
}
```
@@ -248,7 +248,7 @@ Select your build tool, and follow the instructions to add the build dependency
com.scalar-labs
scalardb
- 3.15.1
+ 3.15.4
```
@@ -269,4 +269,4 @@ The following limitations apply to non-transactional storage operations:
### Learn more
-- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.15.1/index.html)
+- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.15.4/index.html)
diff --git a/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx b/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx
index c7059e0b..2f228c90 100644
--- a/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx
+++ b/docs/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx
@@ -18,7 +18,7 @@ To add a dependency on the ScalarDB Cluster Java Client SDK by using Gradle, use
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -28,7 +28,7 @@ To add a dependency by using Maven, use the following:
com.scalar-labs
scalardb-cluster-java-client-sdk
- 3.15.1
+ 3.15.4
```
@@ -121,11 +121,11 @@ scalar.db.contact_points=direct-kubernetes:ns/scalardb-cluster
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
Using the Schema Loader for Cluster is basically the same as using the [ScalarDB Schema Loader](../schema-loader.mdx) except the name of the JAR file is different.
-You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1).
+You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4).
After downloading the JAR file, you can run Schema Loader for Cluster with the following command:
```console
-java -jar scalardb-cluster-schema-loader-3.15.1-all.jar --config -f --coordinator
+java -jar scalardb-cluster-schema-loader-3.15.4-all.jar --config -f --coordinator
```
## ScalarDB Cluster SQL
@@ -165,8 +165,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-sql-jdbc:3.15.1'
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-sql-jdbc:3.15.4'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -177,12 +177,12 @@ To add the dependencies by using Maven, use the following:
com.scalar-labs
scalardb-sql-jdbc
- 3.15.1
+ 3.15.4
com.scalar-labs
scalardb-cluster-java-client-sdk
- 3.15.1
+ 3.15.4
```
@@ -200,8 +200,8 @@ To add the dependencies by using Gradle, use the following:
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-sql-spring-data:3.15.1'
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-sql-spring-data:3.15.4'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -212,12 +212,12 @@ To add the dependencies by using Maven, use the following:
com.scalar-labs
scalardb-sql-spring-data
- 3.15.1
+ 3.15.4
com.scalar-labs
scalardb-cluster-java-client-sdk
- 3.15.1
+ 3.15.4
```
@@ -262,10 +262,10 @@ For details about how to configure Spring Data JDBC for ScalarDB, see [Configura
Like other SQL databases, ScalarDB SQL also provides a CLI tool where you can issue SQL statements interactively in a command-line shell.
-You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1). After downloading the JAR file, you can run the SQL CLI with the following command:
+You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4). After downloading the JAR file, you can run the SQL CLI with the following command:
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar --config
```
#### Usage
@@ -273,7 +273,7 @@ java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config
You can see the CLI usage with the `-h` option as follows:
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar -h
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar -h
Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE]
[-l=LOG_FILE] [-o=] [-p=PASSWORD]
[-u=USERNAME]
@@ -304,6 +304,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following:
JavaDocs are also available:
-* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.15.1/index.html)
-* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.15.1/index.html)
-* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.15.1/index.html)
+* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.15.4/index.html)
+* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.15.4/index.html)
+* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.15.4/index.html)
diff --git a/docs/scalardb-cluster/encrypt-data-at-rest.mdx b/docs/scalardb-cluster/encrypt-data-at-rest.mdx
index ef4dfef1..ea2389fa 100644
--- a/docs/scalardb-cluster/encrypt-data-at-rest.mdx
+++ b/docs/scalardb-cluster/encrypt-data-at-rest.mdx
@@ -183,7 +183,7 @@ services:
scalardb-cluster-standalone:
container_name: "scalardb-cluster-node"
- image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.1"
+ image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.4"
ports:
- 60053:60053
- 9080:9080
@@ -241,7 +241,7 @@ scalar.db.sql.cluster_mode.contact_points=indirect:localhost
Then, start the SQL CLI by running the following command.
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config scalardb-cluster-sql-cli.properties
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar --config scalardb-cluster-sql-cli.properties
```
To begin, create the Coordinator tables required for ScalarDB transaction execution.
diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx
index 3f97c9fe..1234c270 100644
--- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx
+++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx
@@ -108,11 +108,11 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster).
Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different.
-You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1).
+You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4).
After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
```console
-java -jar scalardb-cluster-schema-loader-3.15.1-all.jar --config database.properties -f schema.json --coordinator
+java -jar scalardb-cluster-schema-loader-3.15.4-all.jar --config database.properties -f schema.json --coordinator
```
## Step 4. Run operations from GraphiQL
diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx
index 5d3fa30f..d0910d07 100644
--- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx
+++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx
@@ -86,10 +86,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
## Step 3. Load a schema
-To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
+To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config scalardb-sql.properties --file schema.sql
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar --config scalardb-sql.properties --file schema.sql
```
## Step 4. Load the initial data
diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx
index 23e34318..2fa48c23 100644
--- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx
+++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx
@@ -86,10 +86,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
## Step 3. Load a schema
-To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
+To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command:
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config scalardb-sql.properties --file schema.sql
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar --config scalardb-sql.properties --file schema.sql
```
## Step 4. Modify `application.properties`
diff --git a/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx b/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx
index 126243b3..140afe2b 100644
--- a/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx
+++ b/docs/scalardb-cluster/getting-started-with-scalardb-cluster.mdx
@@ -120,7 +120,7 @@ To use ScalarDB Cluster, open `build.gradle` in your preferred text editor. Then
dependencies {
...
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -166,12 +166,12 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
The database schema (the method in which the data will be organized) for the sample application has already been defined in [`schema.json`](https://github.com/scalar-labs/scalardb-samples/tree/main/scalardb-sample/schema.json).
-To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder.
+To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder.
Then, run the following command:
```console
-java -jar scalardb-cluster-schema-loader-3.15.1-all.jar --config database.properties -f schema.json --coordinator
+java -jar scalardb-cluster-schema-loader-3.15.4-all.jar --config database.properties -f schema.json --coordinator
```
#### Schema details
diff --git a/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx b/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx
index bf089c4b..718b951e 100644
--- a/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx
+++ b/docs/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx
@@ -73,10 +73,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
## Step 3. Load a schema
-To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
+To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
```console
-java -jar scalardb-cluster-schema-loader-3.15.1-all.jar --config database.properties -f schema.json --coordinator
+java -jar scalardb-cluster-schema-loader-3.15.4-all.jar --config database.properties -f schema.json --coordinator
```
## Step 4. Set up a Go environment
diff --git a/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx b/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx
index 14e9b0e5..f51d3ba0 100644
--- a/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx
+++ b/docs/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx
@@ -73,10 +73,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi
## Step 3. Load a schema
-To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.1). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
+To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.15.4). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command:
```console
-java -jar scalardb-cluster-schema-loader-3.15.1-all.jar --config database.properties -f schema.json --coordinator
+java -jar scalardb-cluster-schema-loader-3.15.4-all.jar --config database.properties -f schema.json --coordinator
```
## Step 4. Set up a Python environment
diff --git a/docs/scalardb-cluster/getting-started-with-vector-search.mdx b/docs/scalardb-cluster/getting-started-with-vector-search.mdx
index 21278eed..3432ceb2 100644
--- a/docs/scalardb-cluster/getting-started-with-vector-search.mdx
+++ b/docs/scalardb-cluster/getting-started-with-vector-search.mdx
@@ -331,7 +331,7 @@ Create the following configuration file as `docker-compose.yaml`.
services:
scalardb-cluster-standalone:
container_name: "scalardb-cluster-node"
- image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.2"
+ image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.4"
ports:
- 60053:60053
- 9080:9080
@@ -361,7 +361,7 @@ Select your build tool, and follow the instructions to add the build dependency
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-cluster-embedding-java-client-sdk:3.15.2'
+ implementation 'com.scalar-labs:scalardb-cluster-embedding-java-client-sdk:3.15.4'
}
```
@@ -372,7 +372,7 @@ Select your build tool, and follow the instructions to add the build dependency
com.scalar-labs
scalardb-cluster-embedding-java-client-sdk
- 3.15.2
+ 3.15.4
```
@@ -460,4 +460,4 @@ The `ScalarDbEmbeddingClientFactory` instance should be closed after use to rele
The vector search feature is currently in Private Preview. For more details, please [contact us](https://www.scalar-labs.com/contact) or wait for this feature to become publicly available in a future version.
-- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-embedding-java-client-sdk/3.15.2/index.html)
+- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-embedding-java-client-sdk/3.15.4/index.html)
diff --git a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx
index 302621bb..9261de2a 100644
--- a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx
+++ b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx
@@ -271,7 +271,7 @@ Select your build tool, and follow the instructions to add the build dependency
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -282,7 +282,7 @@ Select your build tool, and follow the instructions to add the build dependency
com.scalar-labs
scalardb-cluster-java-client-sdk
- 3.15.1
+ 3.15.4
```
@@ -307,5 +307,5 @@ The following limitations apply to non-transactional storage operations:
### Learn more
-- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.15.1/index.html)
+- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.15.4/index.html)
- [Developer Guide for ScalarDB Cluster with the Java API](developer-guide-for-scalardb-cluster-with-java-api.mdx)
diff --git a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx
index b415d572..9479c41f 100644
--- a/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx
+++ b/docs/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx
@@ -276,8 +276,8 @@ Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/g
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-sql-jdbc:3.15.1'
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-sql-jdbc:3.15.4'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -289,12 +289,12 @@ Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/g
com.scalar-labs
scalardb-sql-jdbc
- 3.15.1
+ 3.15.4
com.scalar-labs
scalardb-cluster-java-client-sdk
- 3.15.1
+ 3.15.4
```
@@ -341,8 +341,8 @@ The following limitations apply to non-transactional storage operations:
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb-sql:3.15.1'
- implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.1'
+ implementation 'com.scalar-labs:scalardb-sql:3.15.4'
+ implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.15.4'
}
```
@@ -354,12 +354,12 @@ The following limitations apply to non-transactional storage operations:
com.scalar-labs
scalardb-sql
- 3.15.1
+ 3.15.4
com.scalar-labs
scalardb-cluster-java-client-sdk
- 3.15.1
+ 3.15.4
```
@@ -387,7 +387,7 @@ The following limitations apply to non-transactional storage operations:
Learn more
- - [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.15.1/index.html)
+ - [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.15.4/index.html)
diff --git a/docs/scalardb-cluster/scalardb-auth-with-sql.mdx b/docs/scalardb-cluster/scalardb-auth-with-sql.mdx
index 9ce7c442..afeb17f5 100644
--- a/docs/scalardb-cluster/scalardb-auth-with-sql.mdx
+++ b/docs/scalardb-cluster/scalardb-auth-with-sql.mdx
@@ -208,7 +208,7 @@ services:
scalardb-cluster-standalone:
container_name: "scalardb-cluster-node"
- image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.1"
+ image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.4"
ports:
- 60053:60053
- 9080:9080
@@ -246,7 +246,7 @@ scalar.db.cluster.auth.enabled=true
Then, start the SQL CLI by running the following command.
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config scalardb-cluster-sql-cli.properties
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar --config scalardb-cluster-sql-cli.properties
```
Enter the username and password as `admin` and `admin`, respectively.
@@ -335,7 +335,7 @@ You can see that `user1` has been granted the `SELECT`, `INSERT`, and `UPDATE` p
Log in as `user1` and execute SQL statements.
```console
-java -jar scalardb-cluster-sql-cli-3.15.1-all.jar --config scalardb-cluster-sql-cli.properties
+java -jar scalardb-cluster-sql-cli-3.15.4-all.jar --config scalardb-cluster-sql-cli.properties
```
Enter the username and password as `user1` and `user1`, respectively.
diff --git a/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx b/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx
index 53d3e451..a62e6578 100644
--- a/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx
+++ b/docs/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx
@@ -170,7 +170,7 @@ You can deploy PostgreSQL on the Kubernetes cluster as follows.
5. Set the chart version of ScalarDB Cluster.
```console
- SCALAR_DB_CLUSTER_VERSION=3.15.1
+ SCALAR_DB_CLUSTER_VERSION=3.15.4
SCALAR_DB_CLUSTER_CHART_VERSION=$(helm search repo scalar-labs/scalardb-cluster -l | grep -F "${SCALAR_DB_CLUSTER_VERSION}" | awk '{print $2}' | sort --version-sort -r | head -n 1)
```
diff --git a/docs/scalardb-sql/jdbc-guide.mdx b/docs/scalardb-sql/jdbc-guide.mdx
index 8aaa0dd7..ef8180e2 100644
--- a/docs/scalardb-sql/jdbc-guide.mdx
+++ b/docs/scalardb-sql/jdbc-guide.mdx
@@ -220,4 +220,4 @@ Please see also [ScalarDB SQL API Guide](sql-api-guide.mdx) for more details on
- [Java JDBC API](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/)
- [ScalarDB SQL API Guide](sql-api-guide.mdx)
-- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.15.1/index.html)
+- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.15.4/index.html)
diff --git a/docs/scalardb-sql/spring-data-guide.mdx b/docs/scalardb-sql/spring-data-guide.mdx
index 9dabf90c..970251c8 100644
--- a/docs/scalardb-sql/spring-data-guide.mdx
+++ b/docs/scalardb-sql/spring-data-guide.mdx
@@ -820,4 +820,4 @@ In order to use Spring Data JDBC for ScalarDB, the following features are implem
- [Spring Data JDBC - Reference Documentation](https://docs.spring.io/spring-data/jdbc/docs/3.0.x/reference/html/)
- [ScalarDB JDBC Guide](jdbc-guide.mdx)
-- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.15.1/index.html)
+- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.15.4/index.html)
diff --git a/docs/scalardb-sql/sql-api-guide.mdx b/docs/scalardb-sql/sql-api-guide.mdx
index 4114a293..d2203aad 100644
--- a/docs/scalardb-sql/sql-api-guide.mdx
+++ b/docs/scalardb-sql/sql-api-guide.mdx
@@ -374,4 +374,4 @@ For more details, see the