Releases: scalar-labs/scalardb
Releases · scalar-labs/scalardb
v3.16.1
Summary
This release includes several bug fixes and vulnerability fixes.
Community edition
Bug fixes
- Fixed a bug where a CommitException was thrown when committing a transaction, even though the transaction was actually committed. (#2826)
 - Fixed error handling for mutations in Cassandra. (#2827)
 - Fixed a bug where group commit did not work correctly with one-phase commit. (#2832)
 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Fixed a bug where the data tag was updated even when it was not specified in update or upsert operations.
 - Added missing metrics for the remote replication features.
 - Released missing Jar file of 
replication-cli - Fixed a bug where an 
UnsupportedOperationExceptionwas thrown when executing put operations on tables without ABAC policies, when ABAC was enabled. - Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22874 - Added validation to prevent the replication feature from starting if the one-phase commit optimization is enabled.
 
v3.15.5
Summary
This release includes several bug fixes and vulnerability fixes.
Community edition
Bug fixes
- Fixed error handling for mutations in Cassandra. (#2827)
 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Fixed a bug where the data tag was updated even when it was not specified in update or upsert operations.
 - Fixed a bug where an 
UnsupportedOperationExceptionwas thrown when executing put operations on tables without ABAC policies, when ABAC was enabled. - Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22874 
v3.14.4
Summary
This release includes several bug fixes and vulnerability fixes.
Community edition
Bug fixes
- Add exception handling for DateTimeParseException on column value conversion (#2662)
 - Fixed potential connection leak when using 
jdbcstorage and Scan operation fails because the target table doesn't exist (#2766) - Upgraded the PostgreSQL driver to fix security issues. CVE-2025-49146 (#2772)
 - Fixed error handling for mutations in Cassandra. (#2827)
 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Fixed a memory leak issue when the coordinator group commit feature is enabled.
 - Upgraded the 
jettylibrary to fix a security issue. CVE-2024-13009 - Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22874 
v3.13.5
Summary
This release includes several bug fixes and vulnerability fixes.
Community edition
Bug fixes
- Add exception handling for DateTimeParseException on column value conversion (#2662)
 - Fixed potential connection leak when using 
jdbcstorage and Scan operation fails because the target table doesn't exist (#2766) - Fixed error handling for mutations in Cassandra. (#2827)
 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Fixed a memory leak issue when the coordinator group commit feature is enabled.
 - Upgraded the 
jettylibrary to fix a security issue. CVE-2024-13009 - Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22874 
v3.12.8
Summary
This release includes several bug fixes and vulnerability fixes.
Community edition
Bug fixes
- Add exception handling for DateTimeParseException on column value conversion (#2662)
 - Fixed potential connection leak when using 
jdbcstorage and Scan operation fails because the target table doesn't exist (#2766) - Fixed error handling for mutations in Cassandra. (#2827)
 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Upgraded the 
jettylibrary to fix a security issue. CVE-2024-13009 - Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22874 
v3.16.0
Summary
This release includes many enhancements, improvements, bug fixes, and performance optimizations.
Community edition
Enhancements
- Added support for IBM Db2 LUV 11 and 12. (#2598)
 - Added a scanner API to the transaction abstraction for iteratively retrieving results. (#2729)
 - Added support for scan fetch size in the storage adapters. You can control the number of records fetched by the scan API in the storage layer by configuring the 
scalar.db.scan_fetch_sizeproperty. (#2731) - Added 
replication-tablesoption to the Schema Loader. (#2747) - Added support for beginning transactions in read-only mode. (#2749)
 - Fixed warnings for Javadoc and errorprone. (#2614)
 - Introduced 
StorageInfo, which provides metadata about the storage. You can obtain aStorageInfoinstance via theDistributedStorageAdmin.getStorageInfo()method. (#2756) - Added Docker support for the ScalarDB Data Loader CLI, enabling containerized deployment of the data loading functionality. (#2758)
 - Added a CI workflow for the Data Loader CLI build. (#2761)
 - Added the 
READ_COMMITTEDisolation level, which offers better performance, especially for low-contention workloads. (#2803) - Added support for one-phase commit optimization in Consensus Commit, significantly improving performance by skipping prepare-records and commit-state when all mutations can be committed atomically. Enable this optimization with the 
scalar.db.consensus_commit.one_phase_commit.enabledproperty. (#2811) 
Improvements
- Made changes so that the ScalarDB BIGINT data type will now be mapped to Oracle's 
NUMBER(16). (#2566) - Removed the 
EXTRA_WRITEstrategy from Consensus Commit. After this change, if theEXTRA_WRITEstrategy is specified when using Consensus Commit, theEXTRA_READstrategy will be used instead. (#2597) - Changed to disallow scan operations after a delete on the same record in Consensus Commit to prevent inconsistent behavior and align with the existing restriction on scans after writes. (#2610)
 - Changed to omit commit-state for read-only transactions in Consensus Commit to improve performance. This behavior is enabled by default but can be disabled by setting the property 
scalar.db.consensus_commit.coordinator.write_omission_on_read_only.enabledtofalse. (#2765) - Updated the code to remove before images after committing or rolling back records in Consensus Commit to reduce disk usage. (#2787)
 - Improved the read algorithm in Consensus Commit to reduce unnecessary retries. (#2798)
 
Bug fixes
- Upgraded the Netty library to fix a security issue. CVE-2025-24970 (#2552)
 - Fixed a bug in Consensus Commit with 
SERIALIZABLEisolation level where a transaction consistently aborts if a record was inserted into the scan range after executing a scan with a limit. (#2621) - Fixed an issue with 
DistributedStorageAdmin.getNamespaceNames()API when using the DynamoDB storage with the namespace prefix settingscalar.db.dynamo.namespace.prefix. The namespace names returned by this method wrongly contained the prefix. (#2641) - Added exception handling for 
DateTimeParseExceptionon column value conversion (#2662) - Fixed an issue where 
Getoperations using secondary indexes could throwIllegalArgumentExceptioninSERIALIZABLEtransactions by converting them toScanoperations during validation. (#2683) - Fixed a bug that caused unnecessary implicit pre-reads when updating records retrieved by a secondary-index 
Getoperation within a transaction. (#2700) - Fixed minor bugs and issues in Data Loader core. (#2752)
 - Fixed a bug where records could be missed when executing 
GetorScanwith conjunctions in Consensus Commit. (#2786) - Fixed an issue in Consensus Commit where reading the same record multiple times from storage could cause anomalies like lost updates. The read set is no longer updated on repeated reads to resolve this issue. (#2797)
 - Fixed potential connection leak when using 
jdbcstorage andScanoperation fails because the target table doesn't exist (#2766) 
Enterprise edition
Enhancements
ScalarDB Cluster
- Added a configuration option (
scalar.db.transaction.enabled) to enable or disable the transaction feature in ScalarDB Cluster. The default value istrue. - Added support for the scanner API in the transaction abstraction to iteratively retrieve results in ScalarDB Cluster.
 - Added support for beginning transactions in read-only mode in ScalarDB Cluster.
 - Added support for beginning transactions in read-only mode using SQL in ScalarDB Cluster.
 - Added the remote replication feature in ScalarDB Cluster.
 
ScalarDB SQL
- Added support for beginning transactions in read-only mode in ScalarDB SQL.
 
Improvements
ScalarDB Cluster
- Added support for the Omnistrate service. Now, you can run ScalarDB Cluster in the Omnistrate service.
 - Made changes to prevent pausing of read-only transactions when a pause command is issued to ScalarDB Cluster.
 
Bug fixes
ScalarDB Cluster
- Fixed a bug related to the metadata cache behavior when using auth in the SQL interface.
 - Fixed configurations for the embedding feature.
 - Fixed a bug that allowed superusers to execute ABAC administrative operations for non-existing users.
 - Fixed a bug a table-not-found error occurs when dropping empty ABAC system tables.
 - Fixed a memory leak issue when the coordinator group commit feature is enabled.
 
v3.15.4
Summary
This release includes fixes for vulnerabilities and bugs.
Community edition
Bug fixes
- Add exception handling for DateTimeParseException on column value conversion. (#2662)
 - Upgraded the PostgreSQL driver to fix security issues. CVE-2025-49146 (#2772)
 - Fixed potential connection leak when using 
jdbcstorage and Scan operation fails because the target table doesn't exist. (#2766) 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Fixed a memory leak issue when the coordinator group commit feature is enabled.
 - Upgraded the OpenSearch Java client to fix a security issue. CVE-2025-27820
 
v3.15.3
Summary
This release includes fixes for vulnerabilities and bugs, and adds support for running ScalarDB Cluster on the Omnistrate service.
Community edition
Bug fixes
- Fixed an issue with 
DistributedStorageAdmin.getNamespaceNames()API when using the DynamoDB storage with the namespace prefix settingscalar.db.dynamo.namespace.prefix. The namespace names returned by this method wrongly contained the prefix. (#2641) 
Enterprise edition
Improvements
ScalarDB Cluster
- Added support for the Omnistrate service. Now, you can run ScalarDB Cluster in the Omnistrate service.
 
Bug fixes
ScalarDB Cluster
- Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22869 
v3.14.3
Summary
This release includes vulnerability and bug fixes.
Community edition
Bug fixes
- Fixed an issue with 
DistributedStorageAdmin.getNamespaceNames()API when using the DynamoDB storage with the namespace prefix settingscalar.db.dynamo.namespace.prefix. The namespace names returned by this method wrongly contained the prefix. (#2641) 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22869 
v3.13.4
Summary
This release includes vulnerability and bug fixes.
Community edition
Bug fixes
- Fixed an issue with 
DistributedStorageAdmin.getNamespaceNames()API when using the DynamoDB storage with the namespace prefix settingscalar.db.dynamo.namespace.prefix. The namespace names returned by this method wrongly contained the prefix. (#2641) 
Enterprise edition
Bug fixes
ScalarDB Cluster
- Upgraded 
grpc_health_probeto fix a security issue. CVE-2025-22869