Skip to content

Commit 6bd3e84

Browse files
komainu8Copilot
andauthored
Add 4.0.6 entry (#446)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 2836545 commit 6bd3e84

3 files changed

Lines changed: 133 additions & 7 deletions

File tree

_po/ja/news/index.po

Lines changed: 66 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,77 @@ msgstr ""
2222
msgid "# News"
2323
msgstr "# おしらせ"
2424

25-
msgid "## 4.0.5: 2025-12-12 {#version-4-0-5}"
25+
msgid "## 4.0.6: 2026-04-03 {#version-4-0-6}"
2626
msgstr ""
2727

2828
msgid "### Improvements"
2929
msgstr "### 改良"
3030

31+
msgid "#### Dropped support for PostgreSQL 13"
32+
msgstr "#### PostgreSQL 13のサポートをやめました"
33+
34+
msgid "PostgreSQL 13 reached EOL in 2025-11."
35+
msgstr "PostgreSQL 13は2025-11でEOLになったためです。"
36+
37+
msgid "### Fixes"
38+
msgstr "### 修正"
39+
40+
msgid ""
41+
"#### Fixed a bug where `pgroonga_tokenize()` didn't throw an error when "
42+
"using an invalid tokenizer"
43+
msgstr ""
44+
"#### `pgroonga_tokenize()`に無効なトークナイザーを指定してもエラーを出さない"
45+
"問題を修正"
46+
47+
msgid ""
48+
"[GH-930](https://github.com/pgroonga/pgroonga/issues/930)[Reported by plw-pg]"
49+
msgstr ""
50+
"[GH-930](https://github.com/pgroonga/pgroonga/issues/930)[plw-pgさんの報告]"
51+
52+
msgid ""
53+
"PGroonga did not raise an error when an invalid value was set in `tokenizer` "
54+
"as below.\n"
55+
"It now correctly throws an error."
56+
msgstr ""
57+
"PGroongaは、以下のように`tokenizer`に無効な値を設定してもエラーを出していませ"
58+
"んでした。この修正でエラーを出すようになります。"
59+
60+
msgid ""
61+
"```sql\n"
62+
"SELECT pgroonga_tokenize('This is a pen.',\n"
63+
" 'tokenizer', 'invalid');\n"
64+
"```"
65+
msgstr ""
66+
67+
msgid ""
68+
"#### Fixed a bug that `pgroonga.force_match_escalation = on` doesn't work on "
69+
"PostgreSQL 18 with PGroonga for Windows"
70+
msgstr ""
71+
"#### `pgroonga.force_match_escalation = on`がWindows版のPostgreSQL 18で動作し"
72+
"ない問題を修正"
73+
74+
msgid "[GH-814](https://github.com/pgroonga/pgroonga/issues/814)"
75+
msgstr ""
76+
77+
msgid ""
78+
"#### Fixed memory leaks in `pgroonga_normalize()` and "
79+
"`pgroonga_query_extract_keywords()`"
80+
msgstr ""
81+
"#### `pgroonga_normalize()`と`pgroonga_query_extract_keywords()`のメモリー"
82+
"リークを修正"
83+
84+
msgid "Groonga caused memory leaks every time these functions were called."
85+
msgstr "これらの関数が呼ばれるたび、メモリーリークが発生していました。"
86+
87+
msgid "### Thanks"
88+
msgstr "### 感謝"
89+
90+
msgid "* plw-pg"
91+
msgstr "* plw-pgさん"
92+
93+
msgid "## 4.0.5: 2025-12-12 {#version-4-0-5}"
94+
msgstr ""
95+
3196
msgid "#### Added support for semantic search"
3297
msgstr "#### セマンティックサーチをサポート"
3398

@@ -66,9 +131,6 @@ msgstr ""
66131
msgid "This function returns the normalized embedding of the specified text."
67132
msgstr "この関数は指定されたテキストの正規化されたエンべディングを返します。"
68133

69-
msgid "### Fixes"
70-
msgstr "### 修正"
71-
72134
msgid ""
73135
"#### Fixed a bug that PGroonga returns no records when we use `LIKE` or "
74136
"`ILIKE` with `OR`"
@@ -170,9 +232,6 @@ msgid ""
170232
"```"
171233
msgstr ""
172234

173-
msgid "### Thanks"
174-
msgstr "### 感謝"
175-
176235
msgid "* OreoYang"
177236
msgstr "* OreoYangさん"
178237

ja/news/index.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@ upper_level: ../
55

66
# おしらせ
77

8+
## 4.0.6: 2026-04-03 {#version-4-0-6}
9+
10+
### 改良
11+
12+
#### PostgreSQL 13のサポートをやめました
13+
14+
PostgreSQL 13は2025-11でEOLになったためです。
15+
16+
### 修正
17+
18+
#### `pgroonga_tokenize()`に無効なトークナイザーを指定してもエラーを出さない問題を修正
19+
20+
[GH-930](https://github.com/pgroonga/pgroonga/issues/930)[plw-pgさんの報告]
21+
22+
PGroongaは、以下のように`tokenizer`に無効な値を設定してもエラーを出していませんでした。この修正でエラーを出すようになります。
23+
24+
```sql
25+
SELECT pgroonga_tokenize('This is a pen.',
26+
'tokenizer', 'invalid');
27+
```
28+
29+
#### `pgroonga.force_match_escalation = on`がWindows版のPostgreSQL 18で動作しない問題を修正
30+
31+
[GH-814](https://github.com/pgroonga/pgroonga/issues/814)
32+
33+
#### `pgroonga_normalize()``pgroonga_query_extract_keywords()`のメモリーリークを修正
34+
35+
これらの関数が呼ばれるたび、メモリーリークが発生していました。
36+
37+
### 感謝
38+
39+
* plw-pgさん
40+
841
## 4.0.5: 2025-12-12 {#version-4-0-5}
942

1043
### 改良

news/index.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ upper_level: ../
55

66
# News
77

8+
## 4.0.6: 2026-04-03 {#version-4-0-6}
9+
10+
### Improvements
11+
12+
#### Dropped support for PostgreSQL 13
13+
14+
PostgreSQL 13 reached EOL in 2025-11.
15+
16+
### Fixes
17+
18+
#### Fixed a bug where `pgroonga_tokenize()` didn't throw an error when using an invalid tokenizer
19+
20+
[GH-930](https://github.com/pgroonga/pgroonga/issues/930)[Reported by plw-pg]
21+
22+
PGroonga did not raise an error when an invalid value was set in `tokenizer` as below.
23+
It now correctly throws an error.
24+
25+
```sql
26+
SELECT pgroonga_tokenize('This is a pen.',
27+
'tokenizer', 'invalid');
28+
```
29+
30+
#### Fixed a bug that `pgroonga.force_match_escalation = on` doesn't work on PostgreSQL 18 with PGroonga for Windows
31+
32+
[GH-814](https://github.com/pgroonga/pgroonga/issues/814)
33+
34+
#### Fixed memory leaks in `pgroonga_normalize()` and `pgroonga_query_extract_keywords()`
35+
36+
Groonga caused memory leaks every time these functions were called.
37+
38+
### Thanks
39+
40+
* plw-pg
41+
842
## 4.0.5: 2025-12-12 {#version-4-0-5}
943

1044
### Improvements

0 commit comments

Comments
 (0)