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
25 changes: 25 additions & 0 deletions docs/releases/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,31 @@ displayed_sidebar: docsEnglish

This page includes a list of release notes for ScalarDB 3.15.

## v3.15.4

**Release date:** June 21, 2025

### Summary

This release includes fixes for vulnerabilities and bugs.

### Community edition

#### Bug fixes

- Add exception handling for DateTimeParseException on column value conversion. ([#2662](https://github.com/scalar-labs/scalardb/pull/2662))
- Upgraded the PostgreSQL driver to fix security issues. [CVE-2025-49146](https://github.com/advisories/GHSA-hq9p-pm7w-8p54 "CVE-2025-49146") ([#2772](https://github.com/scalar-labs/scalardb/pull/2772))
- Fixed potential connection leak when using `jdbc` storage and Scan operation fails because the target table doesn't exist. ([#2766](https://github.com/scalar-labs/scalardb/pull/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](https://github.com/advisories/GHSA-73m2-qfq3-56cx "CVE-2025-27820")

## v3.15.3

**Release date:** May 15, 2025
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const config = {
label: '3.15',
path: 'latest', // When a new version is released and this is no longer the current version, change this to the version number and then delete this comment.
banner: 'none',
className: '3.15.3',
className: '3.15.4',
},
"3.14": { // When a new version is released and this is no longer the current version, change this to the version number and then delete this comment.
label: '3.14',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,31 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';

このページには、ScalarDB 3.15 のリリースノートのリストが含まれています。

## v3.15.4

**発売日:** 2025年06月21日

### まとめ

このリリースには脆弱性とバグの修正が含まれています。

### Community edition

#### バグの修正

- カラム値変換におけるDateTimeParseExceptionの例外処理を追加しました。([#2662](https://github.com/scalar-labs/scalardb/pull/2662))
- セキュリティ問題を修正するためにPostgreSQLドライバーをアップグレードしました。[CVE-2025-49146](https://github.com/advisories/GHSA-hq9p-pm7w-8p54 "CVE-2025-49146") ([#2772](https://github.com/scalar-labs/scalardb/pull/2772))
- `jdbc`ストレージを使用し、対象テーブルが存在しないためにスキャン操作が失敗した場合の潜在的な接続リークを修正しました。([#2766](https://github.com/scalar-labs/scalardb/pull/2766))

### Enterprise edition

#### バグの修正

##### ScalarDB Cluster

- コーディネーターのグループコミット機能が有効になっている場合のメモリリーク問題を修正しました。
- セキュリティ問題を修正するためにOpenSearch Javaクライアントをアップグレードしました。[CVE-2025-27820](https://github.com/advisories/GHSA-73m2-qfq3-56cx "CVE-2025-27820")

## v3.15.3

**発売日:** 2025年05月15日
Expand Down
8 changes: 4 additions & 4 deletions src/data/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
const notificationsList = [
{
message: {
en: 'Check out the release notes for ScalarDB 3.15.3',
ja: 'ScalarDB 3.15.3 のリリースノートをご覧ください'
en: 'Check out the release notes for ScalarDB 3.15.4',
ja: 'ScalarDB 3.15.4 のリリースノートをご覧ください'
},
url: {
en: 'releases/release-notes#v3153?utm_source=docs-site&utm_medium=notifications',
ja: 'releases/release-notes#v3153?utm_source=docs-site&utm_medium=notifications'
en: 'releases/release-notes#v3154?utm_source=docs-site&utm_medium=notifications',
ja: 'releases/release-notes#v3154?utm_source=docs-site&utm_medium=notifications'
},
unread: true
},
Expand Down