Releases: scalar-labs/scalardb
v3.8.3
Summary
This release has several bug fixes and vulnerability fixes.
Change logs
Bug fixes
- Avoid decrementing outstanding requests counter duplicately (#935)
- Fix CVE-2023-1428 and CVE-2023-32731 (#943)
- Fix CVE-2023-2976 (#954)
v3.7.6
Summary
This release has several bug fixes and vulnerability fixes.
Change logs
Bug fixes
- Avoid decrementing outstanding requests counter duplicately (#935)
- Fix CVE-2023-1428 and CVE-2023-32731 (#943)
- Fix CVE-2023-2976 (#954)
v3.6.7
Summary
This release has several bug fixes and vulnerability fixes.
Change logs
Bug fixes
- Avoid decrementing outstanding requests counter duplicately (#935)
- Fix CVE-2023-1428 and CVE-2023-32731 (#943)
- Fix CVE-2023-2976 (#954)
v3.10.0
Summary
ScalarDB 3.10 includes many enhancements, improvements, bug fixes, and documentation updates. Please see the following for a list of detailed changes.
ScalarDB provides a Community edition and an Enterprise edition. The Community edition is available as open-source software that you can use under the Apache 2.0 License. The Enterprise edition includes not only the features of the Community edition but also many advanced features. Release notes for the Enterprise edition are available under the “Enterprise edition” section. To use the features in the Enterprise edition, you must have a license agreement with Scalar Inc.
Community edition
Enhancements
- Added functionality to treat the transaction metadata columns in a record as committed if the metadata in ScalarDB is empty (i.e.,
null
). This functionality allows ScalarDB to import tables from another existing database. (#841 #931) - Added validation for the consensus commit mutation operation. (#873)
- Added an interface to
Scan
to allow conditions (AND, OR, etc.) to be specified. (#889 #900 #925) - Added support for specifying conditions for
Put
andDelete
in the transaction API. (#899)
Bug fixes
- Upgraded the integrated JRE Docker image to 1.1.13 to fix security issues. CVE-2022-29458 (#881 #882)
- Upgraded the integrated JRE Docker image to 1.1.14 to fix security issues. CVE-2023-0464 CVE-2023-2650 (#902 #903)
- Upgraded sqlite-jdbc to 3.42.0.0 to fix security issues. CVE-2023-32697 (#888)
- Revised the method for checking transaction status before rollback to fix a bug that caused a partial commit during
rollback()
in the two-phase commit (2PC) interface. (#909) - Resolved a race condition in the counter that counts transactions to fix a bug that prevented ScalarDB Server from pausing. (#935)
- Fixed a problem with the metrics for ScalarDB Server not properly displaying the number of aborts and rollbacks. (#919)
- Upgraded gRPC library to 1.53.0 to fix security issues. CVE-2023-1428 CVE-2023-32731 (#943)
Documentation
- Improved documentation for handling errors in ScalarDB transactions. (#897 #932)
- Added detailed descriptions for all ScalarDB configurations to the documentation. (#905)
Enterprise edition
Enhancements
ScalarDB Cluster
- Implemented AWS Marketplace usage reporting so that users can run a ScalarDB Cluster node (Standard or Premium edition) from AWS Marketplace with pay-as-you-go pricing plan.
- Added support for specifying conditions for Put and Delete in the transaction API.
- Added support for the table-importing feature in ScalarDB.
Improvements
ScalarDB Cluster
- Updated GraphQL Server to allow graceful shutdown by waiting to shutdown until there are no more requests for the server.
ScalarDB GraphQL
- Updated GraphQL Server to allow graceful shutdown by waiting to shutdown until there are no more requests for the server.
ScalarDB SQL
- Added a two-phase commit (2PC) high-level API for participants into the
ScalarDbTwoPcRepository
class forSpring Data JDBC for ScalarDB
so that users can implement a 2PC transaction participant safely and easily.
Bug fixes
ScalarDB Cluster
- Upgraded the Guava library to 32.1.1-jre to fix security issues. [CVE-2023-2976]
ScalarDB GraphQL
- Upgraded the Guava library to 32.1.1-jre to fix security issues. [CVE-2023-2976]
- Modified error handling to fix a bug that caused the GraphQL schema update process to stop.
ScalarDB SQL
- Updated ScalarDB SQL Server to always rollback a transaction when an error occurs.
- Added a null check in the
close()
method of theSqlJdbcDriver
class to fix a bug whereNullPointerException
could occur when executing theclose()
method. - Fixed a partial commit issue that occurred in 2PC when using
Spring Data JDBC for ScalarDB
by preventing any rollback after the coordinator successfully processes the commit. - Fixed a problem with the metrics for ScalarDB Server not properly displaying the number of aborts and rollbacks.
- Upgraded the Guava library to 32.1.1-jre to fix security issues. [CVE-2023-2976]
Documentations
ScalarDB Cluster
- Added the ScalarDB Cluster gRPC API guide.
- Reorganized ScalarDB Cluster documents.
- Added a getting started tutorial for ScalarDB Cluster with Python.
ScalarDB SQL
- Revised
Spring Data JDBC for ScalarDB
documentation, such as adding an architectural diagram, adding limitations, and updating some usage guides. - Added detailed descriptions for all ScalarDB configurations to the documentation.
- Improved documentation for handling errors in ScalarDB transactions.
v3.9.1
Summary
This release has several small improvements and vulnerability fixes.
Change logs
Improvements
- Bump com.scalar-labs:scalar-admin from 2.1.0 to 2.1.1 (#910)
- Improve some
toString
expressions of Selection Operators (#920)
Bug fixes
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /server (#881)
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /schema-loader (#882)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /schema-loader (#903)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /server (#902)
- Records should not be rolled back in rollback() when the transaction state is marked as COMMITTED in 2PC (#909)
- Should call abort() when aborting transaction in transaction wrapper classes (#919)
- Bump org.xerial:sqlite-jdbc from 3.41.2.1 to 3.42.0.0 (#888)
Documentation
v3.8.2
Summary
This release has several small improvements and vulnerability fixes.
Change logs
Improvements
- Bump com.scalar-labs:scalar-admin from 2.1.0 to 2.1.1 (#910)
- Improve some
toString
expressions of Selection Operators (#920)
Bug fixes
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /server (#881)
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /schema-loader (#882)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /schema-loader (#903)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /server (#902)
- Should call abort() when aborting transaction in transaction wrapper classes (#919)
Documentation
- Change HTML syntax to Markdown for images (3.8) (#878)
v3.7.5
Summary
This release has several small improvements and vulnerability fixes.
Change logs
Improvements
- Improve some
toString
expressions of Selection Operators (#920)
Bug fixes
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /server (#881)
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /schema-loader (#882)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /schema-loader (#903)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /server (#902)
- Should call abort() when aborting transaction in transaction wrapper classes (#919)
Documentation
- Change HTML syntax to Markdown for images (3.7) (#877)
v3.6.6
Summary
This release has several small improvements and vulnerability fixes.
Change logs
Improvements
- Improve some
toString
expressions of Selection Operators (#920)
Bug fixes
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /server (#881)
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /schema-loader (#882)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /schema-loader (#903)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /server (#902)
Documentation
- Change HTML syntax to Markdown for images (3.6) (#876)
v3.5.9
Summary
This release has several small improvements and vulnerability fixes.
Change logs
Improvements
- Improve some
toString
expressions of Selection Operators (#920)
Bug fixes
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /server (#881)
- Bump scalar-labs/jre8 from 1.1.12 to 1.1.13 in /schema-loader (#882)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /schema-loader (#903)
- Bump scalar-labs/jre8 from 1.1.13 to 1.1.14 in /server (#902)
Documentation
- Change HTML syntax to Markdown for images (3.5) (#875)
v3.9.0
Summary
ScalarDB 3.9 includes many new features, improvements, bug fixes, vulnerability fixes, and documentation updates. Please see the following for a list of detailed changes.
ScalarDB provides a community edition and an enterprise edition. The community edition is available as open-source software that you can use under the Apache 2.0 License. The enterprise edition includes not only the features of the community edition but also many advanced features. Release notes for the enterprise edition are available under the “Enterprise edition” section. To use the features in the enterprise edition, you must have a license agreement with Scalar Inc.
Community edition
New features
- Added SQLite as a database that ScalarDB supports. (#762)
Improvements
- Added
slf4j-simple
to the sample application for getting started with ScalarDB. (#835) - Updated the supported Java version when getting started to Java 8 or higher. (#840)
- Added the
Decommissioning
state to ScalarDB Server to achieve graceful shutdown. (#851) - Unified the error-handling behavior of the admin API (e.g., an exception is thrown when dropping a namespace but the namespace has some tables). (#856)
Bug fixes
- Upgraded the integrated Java Runtime Environment (JRE) Docker image to 1.1.11 to fix security issues. CVE-2023-0286 (#821)
- Fixed issues where ScalarDB could not handle the write operation correctly when using the columns prefixed with
before_
with Consensus Commit. (#844)
Documentation
- Updated the documentation for transaction APIs and exceptions, the Java API guide, and the two-phase commit transaction guide. (#804, #831)
- Updated the Cosmos DB name from
Cosmos DB
toCosmos DB for NoSQL
in the supported databases document. (#813) - Updated the steps to create and configure a Cosmos DB for NoSQL account for ScalarDB in the getting-started guide. (#814)
- Updated the links for ScalarDB Server and Schema Loader in the backup and restore guide. (#810)
- Added how to repair stored procedures when using Cosmos DB for NoSQL in the backup and restore guide. (#825)
Enterprise edition
New features
ScalarDB Cluster
- Integrated the ScalarDB GraphQL and ScalarDB SQL interfaces with ScalarDB Cluster. As of ScalarDB 3.9, you no longer need to deploy dedicated components (i.e., containers) to provide GraphQL and SQL interfaces, respectively. In addition, you can more easily manage a ScalarDB Cluster.
- Added the
direct-kubernetes
client mode into the Client mode. - Added the dedicated Schema Loader for ScalarDB Cluster.
- Added ScalarDB GraphQL integration to ScalarDB Cluster.
ScalarDB Analytics with PostgreSQL
- Added ScalarDB Analytics with PostgreSQL. As of ScalarDB 3.9, you can perform analytical queries on data in heterogeneous databases (i.e., RDBMS and NoSQL) managed by ScalarDB transparently by using a PostgreSQL foreign data wrapper (FDW). This feature eliminates the need for you to implement join or aggregation operations in applications, and enables you to easily perform routine or ad-hoc analysis by simply issuing SQL to PostgreSQL.
ScalarDB GraphQL
- Added two-phase commit (2PC) support for ScalarDB GraphQL. As of ScalarDB 3.9, you can more easily guarantee data consistency between GraphQL-based microservices. Adding support for 2PC not only reduces system development costs but also facilitates maintenance.
- Added two mechanisms to rebuild the GraphQL schema after a schema metadata change while the server is running.
ScalarDB SQL
- Added two-phase commit (2PC) support for Spring Data JDBC for ScalarDB. As of ScalarDB 3.9, you can more easily guarantee data consistency between Spring Framework–based microservices. Adding support for 2PC not only reduces system development costs but also facilitates maintenance.
- Enabled
ScalarDbRepository#findAll()
andScalarDbRepository#count()
in Spring Data JDBC for ScalarDB. - Published JAR files for
ScalarDB SQL CLI
to the Maven repository. - Added the default namespace name configuration
scalar.db.sql.default_namespace_name
. The value of this configuration is used when a namespace name is not specified in a SQL statement.
Improvements
ScalarDB Cluster
- Added logging to cluster nodes for recording detailed information.
- Unified
scalar.db.cluster.node_port
andscalar.db.cluster.node.port
intoscalar.db.cluster.node.port
. - Added an expiration time to the cluster node cache to wait for the current requests to finish before invalidating the cache.
- Added the
Decommissioning
state to gracefully shut down a cluster node. - Revised to get the IP addresses of initial members when Kubernetes membership starts.
- Removed an unnecessary
throws
clause from theMembership#getMembersIpAddresses
method.
ScalarDB GraphQL
- Revised to abort transactions that execute a CRUD or transaction operation (i.e., abort and commit) and throw an exception, except if
transaction.commit()
throws anUnknownTransactionStatusException
error.
ScalarDB SQL
- Improved the ScalarDB SQL error mapping table and
AbstractSqlJdbcStatement#execute
error handling. - Improved the Spring Data fragment repository class for ScalarDB.
- Updated
com.scalar.db.sql.springdata.exception.ScalarDb*Exception
to always have a transactionId field value. - Revised the ScalarDB SQL API entirely.
- Added the
Decommissioning
state to ScalarDB SQL Server. - Added a mechanism to expire the
SqlSessionFactory
cache and close the instance in ScalarDB JDBC. - Updated the exception translator in Spring Data JDBC for ScalarDB.
- Updated the Metadata service interface to make it more intuitive.
Bug fixes
ScalarDB Cluster
- Upgraded gRPC Health Probe to 0.4.15 to fix security issues. CVE-2022-41721
- Upgraded the integrated JRE Docker image to 1.1.11 to fix security issues. CVE-2023-0286
ScalarDB GraphQL
- Upgraded the integrated JRE Docker image to 1.1.11 to fix security issues. CVE-2023-0286
- Upgraded the integrated JRE Docker image to 1.1.12 to fix security issues. CVE-2023-0361
- Upgraded the
graphql-java
version to 20.2 to fix security issues. CVE-2023-28867
ScalarDB SQL
- Upgraded gRPC Health Probe to 0.4.15 to fix security issues. CVE-2022-41721
- Upgraded the integrated JRE Docker image to 1.1.11 to fix security issues. CVE-2023-0286
- Fixed an incorrect error message when an error occurred while executing the SELECT operation.
- Upgraded the integrated JRE Docker image to 1.1.12 and gRPC Health Probe to 0.4.17 to fix security issues. CVE-2023-0361 CVE-2022-41723
- Revised to set the finished status of the failed transaction to avoid timeout error in the bidirectional streams flow in Server mode.
Documentation
ScalarDB GraphQL
- Added documentation for how to run ScalarDB GraphQL Server.
- Fixed some minor issues, such as typos and unnecessary statements.
ScalarDB SQL
- Updated the Spring Data JDBC for ScalarDB guide to mention users can use other retry libraries.
- Added a link to the Spring Data JDBC for ScalarDB guide to the README.
- Revised a heading for clarification when users are getting started with ScalarDB SQL.
- Revised the name of the "Spring Data integration with ScalarDB" feature to "Spring Data JDBC for ScalarDB".
- Updated the Javadoc files to match the changes in the release.