Skip to content

Commit

Permalink
Add 3.2.1 entry (#349)
Browse files Browse the repository at this point in the history
Co-authored-by: Abe Tomoaki <[email protected]>
  • Loading branch information
komainu8 and abetomo authored Jul 4, 2024
1 parent fe441d8 commit c2df73a
Show file tree
Hide file tree
Showing 4 changed files with 424 additions and 10 deletions.
150 changes: 145 additions & 5 deletions _po/ja/news/index.po
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,145 @@ msgstr ""
msgid "# News"
msgstr "# おしらせ"

msgid "## 3.2.0: 2024-04-18 {#version-3-2-0}"
msgid "## 3.2.1: 2024-07-04 {#version-3-2-1}"
msgstr ""

msgid "### Improvements"
msgstr "### 改良"

msgid ""
" * [[`pgroonga_wal_resource_manager` module][pgroonga-wal-resource-"
"manager]] Added a new module `pgroonga_wal_resource_manager`"
msgstr ""

msgid ""
" * PGroonga WAL is automatically applied when this module is enabled."
msgstr ""

msgid " * Added support downgrade by using `ALTER EXTENSION ... UPDATE`."
msgstr ""

msgid ""
" Note that this feature only enable 3.2.1, currently.\n"
" This feature can't use before 3.2.1."
msgstr ""

msgid ""
" * [[`pgroonga_list_broken_indexes()`][list-broken-indexes]] Added a new "
"function `pgroonga_list_broken_indexes()`."
msgstr ""

msgid " This function list the indexes of PGroonga's that may be broken."
msgstr ""

msgid ""
" * [[`pgroonga_crash_safer` module][pgroonga-crash-safer]] Putted index "
"names when the `pgroonga-crash-safer` rebuild index in log."
msgstr ""

msgid " * [WAL] Added support for registering a plugin."
msgstr ""

msgid ""
" `plugin = '...'` in `WITH` phrase is also written into PGroonga's WAL."
msgstr ""

msgid ""
" * [[`pgroonga_list_lagged_indexes()`][list-lagged-indexes]] Added a new "
"function `pgroonga_list_lagged_indexes()`."
msgstr ""

msgid ""
" This function display a index of PGroonga with unapplied PGroonga WAL "
"(not PostgreSQL WAL)."
msgstr ""

msgid ""
" * [[`pgroonga-primary-maintainer.sh`][primary-maintainer]] Added a new "
"execution file `pgroonga-primary-maintainer.sh`."
msgstr ""

msgid ""
" * This command is used to suppress the size of PGroonga WAL on the "
"primary server where WAL is enabled."
msgstr ""

msgid " * Also added execution file to configure systemd timer."
msgstr ""

msgid ""
" * [`pgroonga-generate-primary-maintainer-service.sh`][generate-primary-"
"maintainer-service]"
msgstr ""

msgid ""
" * [`pgroonga-generate-primary-maintainer-timer.sh`][generate-primary-"
"maintainer-timer]"
msgstr ""

msgid " * [[Ubuntu][ubuntu]] Added support for Ubuntu 24.04 (Noble Numbat)."
msgstr ""

msgid " * [`pgroonga_condition()`] Added support `fuzzy_max_distance_ratio`"
msgstr ""

msgid "### Fixes"
msgstr "### 修正"

msgid ""
" * [[`&@~` operator][query-v2]] Fixed a crash bug with multiple conditions "
"including blank only query condition."
msgstr ""

msgid ""
" An error will occur if any of the multiple conditions have a blank space "
"condition as below."
msgstr ""

msgid ""
" ```sql\n"
" CREATE TABLE memos (\n"
" id integer,\n"
" content text\n"
" );\n"
" INSERT INTO memos VALUES (1, 'PostgreSQL is a RDBMS.');\n"
" INSERT INTO memos VALUES (2, 'Groonga is fast full text search "
"engine.');\n"
" INSERT INTO memos VALUES (3, 'PGroonga is a PostgreSQL extension that "
"uses Groonga.');\n"
" CREATE INDEX grnindex ON memos USING pgroonga (content);\n"
" SELECT id, content\n"
" FROM memos\n"
" WHERE content &@~ pgroonga_condition('PGroonga') AND\n"
" content &@~ pgroonga_condition(' ');\n"
" ```"
msgstr ""

msgid " * Fixed a crash bug related to auto vacuum"
msgstr ""

msgid " This is happen when:"
msgstr ""

msgid ""
" * A query has multiple index scans and/or bitmap scans with\n"
" PGroonga indexes\n"
" * Auto vacuum is executed while the query is executing"
msgstr ""

msgid ""
" If you're lucky, this may not cause a crash. But the following errors\n"
" may be happen:"
msgstr ""

msgid ""
" * \"invalid match target: <>\"\n"
" * \"column isn't found\""
msgstr ""

msgid "## 3.2.0: 2024-04-18 {#version-3-2-0}"
msgstr ""

msgid " * Fixed a crash on connection close."
msgstr ""

Expand All @@ -53,9 +186,6 @@ msgstr ""
msgid "## 3.1.9: 2024-03-27 {#version-3-1-9}"
msgstr ""

msgid "### Improvements"
msgstr "### 改良"

msgid ""
" * Added [`pgroonga_crash_safer.max_recovery_threads`][pgroonga-crash-safer-"
"max-recovery-threads] parameter to [`pgroonga-crash-safer`][pgroonga-crash-"
Expand Down Expand Up @@ -3047,6 +3177,15 @@ msgid ""
"[highlight-html]:../reference/functions/pgroonga-highlight-html.html\n"
"[index-column-name]:../reference/functions/pgroonga-index-column-name.html\n"
"[is-writable]:../reference/functions/pgroonga-is-writable.html\n"
"[list-broken-indexes]:../reference/functions/pgroonga-list-broken-indexes."
"html\n"
"[list-lagged-indexes]:../reference/functions/pgroonga-list-lagged-indexes."
"html\n"
"[primary-maintainer]:../reference/commands/pgroonga-primary-maintainer.html\n"
"[generate-primary-maintainer-service]:../reference/commands/pgroonga-"
"generate-primary-maintainer-service.html\n"
"[generate-primary-maintainer-timer]:../reference/commands/pgroonga-generate-"
"primary-maintainer-timer.html\n"
"[match-positions-byte]:../reference/functions/pgroonga-match-positions-byte."
"html\n"
"[match-positions-character]:../reference/functions/pgroonga-match-positions-"
Expand Down Expand Up @@ -3109,7 +3248,8 @@ msgid ""
"[pgroonga-database]:../reference/modules/pgroonga-database.html\n"
"[pgroonga-wal-applier]:../reference/modules/pgroonga-wal-applier.html\n"
"[pgroonga-standby-maintainer]:../reference/modules/pgroonga-standby-"
"maintainer.html"
"maintainer.html\n"
"[pgroonga-wal-resource-manager]:../modules/pgroonga-wal-resource-manager.html"
msgstr ""

msgid "[streaming-replication]:../reference/streaming-replication.html"
Expand Down
120 changes: 115 additions & 5 deletions _po/ja/news/index.pot
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,119 @@ msgstr ""
msgid "# News"
msgstr ""

msgid "## 3.2.0: 2024-04-18 {#version-3-2-0}"
msgid "## 3.2.1: 2024-07-04 {#version-3-2-1}"
msgstr ""

msgid "### Improvements"
msgstr ""

msgid " * [[`pgroonga_wal_resource_manager` module][pgroonga-wal-resource-manager]] Added a new module `pgroonga_wal_resource_manager`"
msgstr ""

msgid " * PGroonga WAL is automatically applied when this module is enabled."
msgstr ""

msgid " * Added support downgrade by using `ALTER EXTENSION ... UPDATE`."
msgstr ""

msgid ""
" Note that this feature only enable 3.2.1, currently.\n"
" This feature can't use before 3.2.1."
msgstr ""

msgid " * [[`pgroonga_list_broken_indexes()`][list-broken-indexes]] Added a new function `pgroonga_list_broken_indexes()`."
msgstr ""

msgid " This function list the indexes of PGroonga's that may be broken."
msgstr ""

msgid " * [[`pgroonga_crash_safer` module][pgroonga-crash-safer]] Putted index names when the `pgroonga-crash-safer` rebuild index in log."
msgstr ""

msgid " * [WAL] Added support for registering a plugin."
msgstr ""

msgid " `plugin = '...'` in `WITH` phrase is also written into PGroonga's WAL."
msgstr ""

msgid " * [[`pgroonga_list_lagged_indexes()`][list-lagged-indexes]] Added a new function `pgroonga_list_lagged_indexes()`."
msgstr ""

msgid " This function display a index of PGroonga with unapplied PGroonga WAL (not PostgreSQL WAL)."
msgstr ""

msgid " * [[`pgroonga-primary-maintainer.sh`][primary-maintainer]] Added a new execution file `pgroonga-primary-maintainer.sh`."
msgstr ""

msgid " * This command is used to suppress the size of PGroonga WAL on the primary server where WAL is enabled."
msgstr ""

msgid " * Also added execution file to configure systemd timer."
msgstr ""

msgid " * [`pgroonga-generate-primary-maintainer-service.sh`][generate-primary-maintainer-service]"
msgstr ""

msgid " * [`pgroonga-generate-primary-maintainer-timer.sh`][generate-primary-maintainer-timer]"
msgstr ""

msgid " * [[Ubuntu][ubuntu]] Added support for Ubuntu 24.04 (Noble Numbat)."
msgstr ""

msgid " * [`pgroonga_condition()`] Added support `fuzzy_max_distance_ratio`"
msgstr ""

msgid "### Fixes"
msgstr ""

msgid " * [[`&@~` operator][query-v2]] Fixed a crash bug with multiple conditions including blank only query condition."
msgstr ""

msgid " An error will occur if any of the multiple conditions have a blank space condition as below."
msgstr ""

msgid ""
" ```sql\n"
" CREATE TABLE memos (\n"
" id integer,\n"
" content text\n"
" );\n"
" INSERT INTO memos VALUES (1, 'PostgreSQL is a RDBMS.');\n"
" INSERT INTO memos VALUES (2, 'Groonga is fast full text search engine.');\n"
" INSERT INTO memos VALUES (3, 'PGroonga is a PostgreSQL extension that uses Groonga.');\n"
" CREATE INDEX grnindex ON memos USING pgroonga (content);\n"
" SELECT id, content\n"
" FROM memos\n"
" WHERE content &@~ pgroonga_condition('PGroonga') AND\n"
" content &@~ pgroonga_condition(' ');\n"
" ```"
msgstr ""

msgid " * Fixed a crash bug related to auto vacuum"
msgstr ""

msgid " This is happen when:"
msgstr ""

msgid ""
" * A query has multiple index scans and/or bitmap scans with\n"
" PGroonga indexes\n"
" * Auto vacuum is executed while the query is executing"
msgstr ""

msgid ""
" If you're lucky, this may not cause a crash. But the following errors\n"
" may be happen:"
msgstr ""

msgid ""
" * \"invalid match target: <>\"\n"
" * \"column isn't found\""
msgstr ""

msgid "## 3.2.0: 2024-04-18 {#version-3-2-0}"
msgstr ""

msgid " * Fixed a crash on connection close."
msgstr ""

Expand All @@ -44,9 +151,6 @@ msgstr ""
msgid "## 3.1.9: 2024-03-27 {#version-3-1-9}"
msgstr ""

msgid "### Improvements"
msgstr ""

msgid " * Added [`pgroonga_crash_safer.max_recovery_threads`][pgroonga-crash-safer-max-recovery-threads] parameter to [`pgroonga-crash-safer`][pgroonga-crash-safer]."
msgstr ""

Expand Down Expand Up @@ -2562,6 +2666,11 @@ msgid ""
"[highlight-html]:../reference/functions/pgroonga-highlight-html.html\n"
"[index-column-name]:../reference/functions/pgroonga-index-column-name.html\n"
"[is-writable]:../reference/functions/pgroonga-is-writable.html\n"
"[list-broken-indexes]:../reference/functions/pgroonga-list-broken-indexes.html\n"
"[list-lagged-indexes]:../reference/functions/pgroonga-list-lagged-indexes.html\n"
"[primary-maintainer]:../reference/commands/pgroonga-primary-maintainer.html\n"
"[generate-primary-maintainer-service]:../reference/commands/pgroonga-generate-primary-maintainer-service.html\n"
"[generate-primary-maintainer-timer]:../reference/commands/pgroonga-generate-primary-maintainer-timer.html\n"
"[match-positions-byte]:../reference/functions/pgroonga-match-positions-byte.html\n"
"[match-positions-character]:../reference/functions/pgroonga-match-positions-character.html\n"
"[normalize]:../reference/functions/pgroonga-normalize.html\n"
Expand Down Expand Up @@ -2607,7 +2716,8 @@ msgid ""
"[pgroonga-crash-safer]:../reference/modules/pgroonga-crash-safer.html\n"
"[pgroonga-database]:../reference/modules/pgroonga-database.html\n"
"[pgroonga-wal-applier]:../reference/modules/pgroonga-wal-applier.html\n"
"[pgroonga-standby-maintainer]:../reference/modules/pgroonga-standby-maintainer.html"
"[pgroonga-standby-maintainer]:../reference/modules/pgroonga-standby-maintainer.html\n"
"[pgroonga-wal-resource-manager]:../modules/pgroonga-wal-resource-manager.html"
msgstr ""

msgid "[streaming-replication]:../reference/streaming-replication.html"
Expand Down
Loading

0 comments on commit c2df73a

Please sign in to comment.