[Groonga-commit] pgroonga/pgroonga.github.io at 2eedd61 [master] ja: update

Back to archive index

Kouhei Sutou null+****@clear*****
Tue Feb 9 17:37:54 JST 2016


Kouhei Sutou	2016-02-09 17:37:54 +0900 (Tue, 09 Feb 2016)

  New Revision: 2eedd6151a43ae82d9212ea8f2098609b5f5e844
  https://github.com/pgroonga/pgroonga.github.io/commit/2eedd6151a43ae82d9212ea8f2098609b5f5e844

  Message:
    ja: update

  Modified files:
    _po/ja/news/index.po
    ja/news/index.md

  Modified: _po/ja/news/index.po (+65 -7)
===================================================================
--- _po/ja/news/index.po    2016-02-09 16:59:58 +0900 (e6e5652)
+++ _po/ja/news/index.po    2016-02-09 17:37:54 +0900 (cb914f2)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2015-12-27 13:25+0900\n"
+"PO-Revision-Date: 2016-02-04 23:22+0900\n"
 "Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,26 +22,68 @@ msgstr ""
 msgid "# News"
 msgstr "# おしらせ"
 
-msgid "## 1.0.1: 2015-12-29 {#version-1-0-1}"
+msgid "## 1.0.2: 2016-02-09 {#version-1-0-2}"
 msgstr ""
 
 msgid "### Improvements"
 msgstr "### 改良"
 
+msgid "  * Required Groonga 5.1.2 or later."
+msgstr ""
+
+msgid "  * [Windows] Upgraded base PostgreSQL to 9.5.0 from 9.4.5."
+msgstr ""
+
+msgid "  * [Windows] Enabled mruby."
+msgstr ""
+
+msgid "  * [RPM] Supported PostgreSQL 9.5."
+msgstr ""
+
+msgid "  * [`jsonb`] Supported sequential scan."
+msgstr ""
+
 msgid ""
-"  * Accepted `none` as none value for tokenizer and normalizer. [groonga-dev,0"
-"3664] [Reported by Naoki Takami]"
+"  * Added `pgroonga.text_full_text_search_ops_v2` operator class. It's an expe"
+"rimental operator class. It may break backward compatibility but includes new "
+"features."
 msgstr ""
 
-msgid "  * Supported `CREATE DATABASE TABLESPACE`. [Suggested by Hiroyuki Sato]"
+msgid "    Here are supported operators:"
+msgstr ""
+
+msgid "    * `LIKE`"
+msgstr ""
+
+msgid "    * `ILIKE`"
+msgstr ""
+
+msgid "    * `&@`: It's equal to `%%` in `pgroonga.text_full_text_search`."
+msgstr ""
+
+msgid "    * `&?`: It's equal to `@@` in `pgroonga.text_full_text_search`."
+msgstr ""
+
+msgid ""
+"    * `&@>`: It returns true when one of the right hand side texts returns tru"
+"e by `&@`."
+msgstr ""
+
+msgid ""
+"    * `&?>`: It returns true when one of the right hand side texts returns tru"
+"e by `&?`."
+msgstr ""
+
+msgid "  * Support composite primary key."
 msgstr ""
 
 msgid "### Fixes"
 msgstr "### 修正"
 
 msgid ""
-"  * Fixed a bug that sequential scan doesn't work for regular expression searc"
-"h.  [Reported by Hiroyuki Sato]"
+"  * Fixed a bug that valid tables and columns are removed by `VACUUM` or `ANAL"
+"YZE`. It's caused after you use `REINDEX`. [groonga-dev,03850] [Reported by Na"
+"oki Takami]"
 msgstr ""
 
 msgid "### Thanks"
@@ -50,6 +92,22 @@ msgstr "### 感謝"
 msgid "  * Naoki Takami"
 msgstr ""
 
+msgid "## 1.0.1: 2015-12-29 {#version-1-0-1}"
+msgstr ""
+
+msgid ""
+"  * Accepted `none` as none value for tokenizer and normalizer. [groonga-dev,0"
+"3664] [Reported by Naoki Takami]"
+msgstr ""
+
+msgid "  * Supported `CREATE DATABASE TABLESPACE`. [Suggested by Hiroyuki Sato]"
+msgstr ""
+
+msgid ""
+"  * Fixed a bug that sequential scan doesn't work for regular expression searc"
+"h.  [Reported by Hiroyuki Sato]"
+msgstr ""
+
 msgid "  * Hiroyuki Sato"
 msgstr ""
 

  Modified: ja/news/index.md (+40 -0)
===================================================================
--- ja/news/index.md    2016-02-09 16:59:58 +0900 (178ed4e)
+++ ja/news/index.md    2016-02-09 17:37:54 +0900 (a09e96c)
@@ -5,6 +5,46 @@ layout: ja
 
 # おしらせ
 
+## 1.0.2: 2016-02-09 {#version-1-0-2}
+
+### 改良
+
+  * Required Groonga 5.1.2 or later.
+
+  * [Windows] Upgraded base PostgreSQL to 9.5.0 from 9.4.5.
+
+  * [Windows] Enabled mruby.
+
+  * [RPM] Supported PostgreSQL 9.5.
+
+  * [`jsonb`] Supported sequential scan.
+
+  * Added `pgroonga.text_full_text_search_ops_v2` operator class. It's an experimental operator class. It may break backward compatibility but includes new features.
+
+    Here are supported operators:
+
+    * `LIKE`
+
+    * `ILIKE`
+
+    * `&@`: It's equal to `%%` in `pgroonga.text_full_text_search`.
+
+    * `&?`: It's equal to `@@` in `pgroonga.text_full_text_search`.
+
+    * `&@>`: It returns true when one of the right hand side texts returns true by `&@`.
+
+    * `&?>`: It returns true when one of the right hand side texts returns true by `&?`.
+
+  * Support composite primary key.
+
+### 修正
+
+  * Fixed a bug that valid tables and columns are removed by `VACUUM` or `ANALYZE`. It's caused after you use `REINDEX`. [groonga-dev,03850] [Reported by Naoki Takami]
+
+### 感謝
+
+  * Naoki Takami
+
 ## 1.0.1: 2015-12-29 {#version-1-0-1}
 
 ### 改良
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index