Skip to content

Commit 3ef6294

Browse files
authored
Add patch version release notes for 3.14.1, 3.13.2, 3.12.5, 3.11.5, and 3.10.7 (#875)
* Remove spaces and fix preferred wording * Add patch release notes * Update `className` to latest patch versions
1 parent 28ef4ed commit 3ef6294

File tree

8 files changed

+211
-11
lines changed

8 files changed

+211
-11
lines changed

docs/releases/release-notes.mdx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,35 @@ displayed_sidebar: docsEnglish
1010

1111
This page includes a list of release notes for ScalarDB 3.14.
1212

13+
## v3.14.1
14+
15+
**Release date:** January 23, 2025
16+
17+
### Summary
18+
19+
This release has several improvements and bug fixes.
20+
21+
### Community edition
22+
23+
#### Improvements
24+
25+
- ScalarDB now supports MySQL 8.4 and 8.0; PostgreSQL 17, 16, 15, 14, and 13; Amazon Aurora PostgreSQL 16, 15, 14, and 13; and Amazon Aurora MySQL 3 and 2. (#2302)
26+
27+
#### Bug fixes
28+
29+
- Added validation for primary key columns in the Cosmos DB adapter. The validation ensures that the text values of the primary key columns do not contain illegal characters (`:`, `/`, `\`, `#`, and `?`). (#2292)
30+
- Fixed the behavior of multiple mutations for the same record in a transaction in Consensus Commit. (#2340)
31+
- Fixed the behavior when deleting a non-existing record in the Cosmos adapter. (#2341)
32+
- Fixed bugs in GetBuilder and ScanBuilder. (#2352)
33+
34+
### Enterprise edition
35+
36+
#### Bug fixes
37+
38+
##### ScalarDB SQL
39+
40+
- [Spring Data JDBC For ScalarDB] Fixed a bug regarding the `existsById()` API not working.
41+
1342
## v3.14.0
1443

1544
**Release date:** November 22, 2024

docusaurus.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,25 +76,25 @@ const config = {
7676
label: '3.14',
7777
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.
7878
banner: 'none',
79-
className: '3.14.0',
79+
className: '3.14.1',
8080
},
8181
"3.13": {
8282
label: '3.13',
8383
path: '3.13',
8484
banner: 'none',
85-
className: '3.13.1',
85+
className: '3.13.2',
8686
},
8787
"3.12": {
8888
label: '3.12',
8989
path: '3.12',
9090
banner: 'none',
91-
className: '3.12.4',
91+
className: '3.12.5',
9292
},
9393
"3.11": {
9494
label: '3.11',
9595
path: '3.11',
9696
banner: 'none',
97-
className: '3.11.4',
97+
className: '3.11.5',
9898
},
9999
"3.10": {
100100
label: '3.10',

i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/releases/release-notes.mdx

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,38 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
1414

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

17+
## v3.14.1
18+
19+
**発売日:** 2025年01月23日
20+
21+
### まとめ
22+
23+
このリリースには、いくつかの改善とバグ修正が含まれています。
24+
25+
### Community edition
26+
27+
#### 改善点
28+
29+
- ScalarDB は、MySQL 8.4 および 8.0、PostgreSQL 17、16、15、14、13、Amazon Aurora PostgreSQL 16、15、14、13、Amazon Aurora MySQL 3 および 2 をサポートするようになりました。(#2302)
30+
31+
#### バグの修正
32+
33+
- Cosmos DB アダプターの主鍵列の検証を追加しました。検証により、主鍵列のテキスト値に不正な文字 (`:``/``\``#``?`) が含まれていないことが保証されます。(#2292)
34+
- Consensus Commit のトランザクションで同じレコードに対して複数のミューテーションが発生する動作を修正しました。 (#2340)
35+
- Cosmos アダプターで存在しないレコードを削除するときの動作を修正しました。(#2341)
36+
- GetBuilder と ScanBuilder のバグを修正しました。(#2352)
37+
38+
### Enterprise edition
39+
40+
#### バグの修正
41+
42+
##### ScalarDB SQL
43+
44+
- [Spring Data JDBC For ScalarDB] `existsById()` API が動作しないというバグを修正しました。
45+
1746
## v3.14.0
1847

19-
**発売日:** 2024 年 11 月 22 日
48+
**発売日:** 2024年11月22日
2049

2150
### まとめ
2251

@@ -31,7 +60,7 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
3160

3261
#### 改善点
3362

34-
- MySQL および Oracle のキー列サイズを変更するオプションを追加し、デフォルトとして 128 バイトを使用しました。([#2245](https://github.com/scalar-labs/scalardb/pull/2245))
63+
- MySQL および Oracle の鍵列サイズを変更するオプションを追加し、デフォルトとして 128 バイトを使用しました。([#2245](https://github.com/scalar-labs/scalardb/pull/2245))
3564
- メタデータキャッシュの有効期限 (`scalar.db.metadata.cache_expiration_time_secs`) のデフォルト値を 60 秒に変更しました。([#2274](https://github.com/scalar-labs/scalardb/pull/2274))
3665

3766
#### バグの修正

i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/version-3.13/releases/release-notes.mdx

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,38 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
1414

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

17+
## v3.13.2
18+
19+
**発売日:** 2025年01月23日
20+
21+
### まとめ
22+
23+
このリリースには、いくつかの改善とバグ修正が含まれています。
24+
25+
### Community edition
26+
27+
#### 改善点
28+
29+
- ScalarDB は、MySQL 8.4 および 8.0、PostgreSQL 17、16、15、14、13、Amazon Aurora PostgreSQL 16、15、14、13、Amazon Aurora MySQL 3 および 2 をサポートするようになりました。(#2302)
30+
31+
#### バグの修正
32+
33+
- Cosmos DB アダプターの主鍵列の検証を追加しました。検証により、主鍵列のテキスト値に不正な文字 (`:``/``\``#``?`) が含まれていないことが保証されます。(#2292)
34+
- Consensus Commit のトランザクションで同じレコードに対して複数のミューテーションが発生する動作を修正しました。 (#2340)
35+
- Cosmos アダプターで存在しないレコードを削除するときの動作を修正しました。(#2341)
36+
- GetBuilder と ScanBuilder のバグを修正しました。(#2352)
37+
38+
### Enterprise edition
39+
40+
#### バグの修正
41+
42+
##### ScalarDB SQL
43+
44+
- [Spring Data JDBC For ScalarDB] `existsById()` API が動作しないというバグを修正しました。
45+
1746
## v3.13.1
1847

19-
**発売日:** 2024 年 10 月 13 日
48+
**発売日:** 2024年10月13日
2049

2150
### まとめ
2251

@@ -60,7 +89,7 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
6089

6190
## v3.13.0
6291

63-
**発売日:** 2024 年 7 月 8 日
92+
**発売日:** 2024年7月8日
6493

6594
### まとめ
6695

@@ -72,7 +101,7 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
72101

73102
- 非 JDBC データベースの動的な任意フィルタリングを追加しました。([#1682](https://github.com/scalar-labs/scalardb/pull/1682))
74103
- トランザクション API に挿入、アップサート、更新の各操作を追加しました。([#1697](https://github.com/scalar-labs/scalardb/pull/1697))
75-
- JDBC ストレージの 1 つとして YugabyteDB アダプターを追加しました。([#1710](https://github.com/scalar-labs/scalardb/pull/1710))
104+
- JDBC ストレージの1つとして YugabyteDB アダプターを追加しました。([#1710](https://github.com/scalar-labs/scalardb/pull/1710))
76105
- Coordinator テーブルにグループコミット機能を追加しました。([#1728](https://github.com/scalar-labs/scalardb/pull/1728))
77106
- トランザクションマネージャーを使用して CRUD 操作を直接実行できるようになりました。([#1755](https://github.com/scalar-labs/scalardb/pull/1755))
78107
- パーティションスキャンとインデックススキャンの任意のフィルタリングのサポートを追加しました。([#1763](https://github.com/scalar-labs/scalardb/pull/1763))
@@ -83,7 +112,7 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
83112

84113
#### 改善点
85114

86-
- JDBC アダプターで MySQL および SQL Server のハードコードされた照合順序を削除しました。その結果、テーブルの作成時に、基礎となるデータベースで構成された照合順序が使用されます。([#1518](https://github.com/scalar-labs/scalardb/pull/1518))
115+
- JDBC アダプターで MySQL および SQL Server のハードコードされた照合順序を削除しました。その結果、テーブルの作成時に、基礎となるデータベースで設定された照合順序が使用されます。([#1518](https://github.com/scalar-labs/scalardb/pull/1518))
87116
- Schema Loader のエラーメッセージにエラーコードを追加しました。([#1564](https://github.com/scalar-labs/scalardb/pull/1564))
88117
- バックグラウンドワーカーで優先キューを使用することで、グループコミットのパフォーマンスが向上しました。([#1641](https://github.com/scalar-labs/scalardb/pull/1641))
89118
- フィルタリングによるスキャンをリファクタリングしました。([#1715](https://github.com/scalar-labs/scalardb/pull/1715))
@@ -98,7 +127,7 @@ import TranslationBanner from '/src/components/_translation-ja-jp.mdx';
98127
- セキュリティ問題を修正するために PostgresSQL ライブラリをアップグレードしました。[CVE-2024-1597](https://github.com/advisories/GHSA-24rp-q3w6-vc56 "CVE-2024-1597") ([#1547](https://github.com/scalar-labs/scalardb/pull/1547))
99128
- トランザクション内のレコードをスキャンしているときに `EXTRA_READ` 検証中に `NullPointerException` が発生するが、その一部が他のトランザクションによって削除されるというバグを修正しました。([#1624](https://github.com/scalar-labs/scalardb/pull/1624))
100129
- put および delete 操作の暗黙的な事前読み取りに対して遅延リカバリが実行されないというバグを修正しました。([#1681](https://github.com/scalar-labs/scalardb/pull/1681))
101-
- 関連するレコードをコンセンサスコミットトランザクションに入れた後、インデックスキーでレコードをスキャンすると、一貫性のない結果が表示されるバグを修正しました。([#1727](https://github.com/scalar-labs/scalardb/pull/1727))
130+
- 関連するレコードをコンセンサスコミットトランザクションに入れた後、インデックス鍵でレコードをスキャンすると、一貫性のない結果が表示されるバグを修正しました。([#1727](https://github.com/scalar-labs/scalardb/pull/1727))
102131
- セキュリティ問題を修正するために `grpc_health_probe` をアップグレードしました。[CVE-2024-24790](https://github.com/advisories/GHSA-49gw-vxvf-fc2g "CVE-2024-24790")[CVE-2023-45283](https://github.com/advisories/GHSA-vvjp-q62m-2vph "CVE-2023-45283")[CVE-2023-45288](https://github.com/advisories/GHSA-4v7x-pqxf-cx7m "CVE-2023-45288") ([#1980](https://github.com/scalar-labs/scalardb/pull/1980))
103132
- スナップショット管理の問題を修正しました。([#1976](https://github.com/scalar-labs/scalardb/pull/1976))
104133
- MySQL ストレージを使用しているときに、同じテーブル名を持つ別の名前空間のテーブルにアクセスできる可能性があるという、import-table 機能のバグを修正しました。([#2001](https://github.com/scalar-labs/scalardb/pull/2001))

versioned_docs/version-3.10/releases/release-notes.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,34 @@ tags:
99

1010
This page includes a list of release notes for ScalarDB 3.10.
1111

12+
## v3.10.7
13+
14+
**Release date:** January 23, 2025
15+
16+
### Summary
17+
18+
This release has several improvements and bug fixes.
19+
20+
### Community edition
21+
22+
#### Improvements
23+
24+
- ScalarDB now supports MySQL 8.4 and 8.0; PostgreSQL 17, 16, 15, 14, and 13; Amazon Aurora PostgreSQL 16, 15, 14, and 13; and Amazon Aurora MySQL 3 and 2. (#2302)
25+
26+
#### Bug fixes
27+
28+
- Added validation for primary key columns in the Cosmos DB adapter. The validation ensures that the text values of the primary key columns do not contain illegal characters (`:`, `/`, `\`, `#`, and `?`). (#2292)
29+
- Fixed the behavior when deleting a non-existing record in the Cosmos adapter. (#2341)
30+
- Fixed bugs in GetBuilder and ScanBuilder. (#2352)
31+
32+
### Enterprise edition
33+
34+
#### Bug fixes
35+
36+
##### ScalarDB SQL
37+
38+
- [Spring Data JDBC For ScalarDB] Fixed a bug regarding the `existsById()` API not working.
39+
1240
## v3.10.6
1341

1442
**Release date:** October 13, 2024

versioned_docs/version-3.11/releases/release-notes.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,34 @@ tags:
99

1010
This page includes a list of release notes for ScalarDB 3.11.
1111

12+
## v3.11.5
13+
14+
**Release date:** January 23, 2025
15+
16+
### Summary
17+
18+
This release has several improvements and bug fixes.
19+
20+
### Community edition
21+
22+
#### Improvements
23+
24+
- ScalarDB now supports MySQL 8.4 and 8.0; PostgreSQL 17, 16, 15, 14, and 13; Amazon Aurora PostgreSQL 16, 15, 14, and 13; and Amazon Aurora MySQL 3 and 2. (#2302)
25+
26+
#### Bug fixes
27+
28+
- Added validation for primary key columns in the Cosmos DB adapter. The validation ensures that the text values of the primary key columns do not contain illegal characters (`:`, `/`, `\`, `#`, and `?`). (#2292)
29+
- Fixed the behavior when deleting a non-existing record in the Cosmos adapter. (#2341)
30+
- Fixed bugs in GetBuilder and ScanBuilder. (#2352)
31+
32+
### Enterprise edition
33+
34+
#### Bug fixes
35+
36+
##### ScalarDB SQL
37+
38+
- [Spring Data JDBC For ScalarDB] Fixed a bug regarding the `existsById()` API not working.
39+
1240
## v3.11.4
1341

1442
**Release date:** October 13, 2024

versioned_docs/version-3.12/releases/release-notes.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,34 @@ tags:
99

1010
This page includes a list of release notes for ScalarDB 3.12.
1111

12+
## v3.12.5
13+
14+
**Release date:** January 23, 2025
15+
16+
### Summary
17+
18+
This release has several improvements and bug fixes.
19+
20+
### Community edition
21+
22+
#### Improvements
23+
24+
- ScalarDB now supports MySQL 8.4 and 8.0; PostgreSQL 17, 16, 15, 14, and 13; Amazon Aurora PostgreSQL 16, 15, 14, and 13; and Amazon Aurora MySQL 3 and 2. (#2302)
25+
26+
#### Bug fixes
27+
28+
- Added validation for primary key columns in the Cosmos DB adapter. The validation ensures that the text values of the primary key columns do not contain illegal characters (`:`, `/`, `\`, `#`, and `?`). (#2292)
29+
- Fixed the behavior when deleting a non-existing record in the Cosmos adapter. (#2341)
30+
- Fixed bugs in GetBuilder and ScanBuilder. (#2352)
31+
32+
### Enterprise edition
33+
34+
#### Bug fixes
35+
36+
##### ScalarDB SQL
37+
38+
- [Spring Data JDBC For ScalarDB] Fixed a bug regarding the `existsById()` API not working.
39+
1240
## v3.12.4
1341

1442
**Release date:** October 13, 2024

versioned_docs/version-3.13/releases/release-notes.mdx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,35 @@ displayed_sidebar: docsEnglish
1010

1111
This page includes a list of release notes for ScalarDB 3.13.
1212

13+
## v3.13.2
14+
15+
**Release date:** January 23, 2025
16+
17+
### Summary
18+
19+
This release has several improvements and bug fixes.
20+
21+
### Community edition
22+
23+
#### Improvements
24+
25+
- ScalarDB now supports MySQL 8.4 and 8.0; PostgreSQL 17, 16, 15, 14, and 13; Amazon Aurora PostgreSQL 16, 15, 14, and 13; and Amazon Aurora MySQL 3 and 2. (#2302)
26+
27+
#### Bug fixes
28+
29+
- Added validation for primary key columns in the Cosmos DB adapter. The validation ensures that the text values of the primary key columns do not contain illegal characters (`:`, `/`, `\`, `#`, and `?`). (#2292)
30+
- Fixed the behavior of multiple mutations for the same record in a transaction in Consensus Commit. (#2340)
31+
- Fixed the behavior when deleting a non-existing record in the Cosmos adapter. (#2341)
32+
- Fixed bugs in GetBuilder and ScanBuilder. (#2352)
33+
34+
### Enterprise edition
35+
36+
#### Bug fixes
37+
38+
##### ScalarDB SQL
39+
40+
- [Spring Data JDBC For ScalarDB] Fixed a bug regarding the `existsById()` API not working.
41+
1342
## v3.13.1
1443

1544
**Release date:** October 13, 2024

0 commit comments

Comments
 (0)