[Groonga-commit] groonga/groonga at d23c547 [master] doc: add news topics for 8.0.8

Back to archive index
Yasuhiro Horimoto null+****@clear*****
Fri Oct 26 14:17:38 JST 2018


Yasuhiro Horimoto	2018-10-26 14:17:38 +0900 (Fri, 26 Oct 2018)

  Revision: d23c5476f1ddaaabc9ef6f891f9ca462fa15bd01
  https://github.com/groonga/groonga/commit/d23c5476f1ddaaabc9ef6f891f9ca462fa15bd01

  Merged a0a79ea: Merge pull request #878 from komainu8/add_news_for_8.0.8

  Message:
    doc: add news topics for 8.0.8

  Modified files:
    doc/locale/ja/LC_MESSAGES/news.po
    doc/source/news.rst

  Modified: doc/locale/ja/LC_MESSAGES/news.po (+142 -5)
===================================================================
--- doc/locale/ja/LC_MESSAGES/news.po    2018-10-24 12:16:33 +0900 (42a227bb1)
+++ doc/locale/ja/LC_MESSAGES/news.po    2018-10-26 14:17:38 +0900 (a7fbfc348)
@@ -33,13 +33,144 @@ msgstr ""
 msgid "News"
 msgstr "お知らせ"
 
-msgid "Release 8.0.7 - 2018-09-29"
-msgstr "8.0.7リリース - 2018-09-29"
+msgid "Release 8.0.8 - 2018-10-29"
+msgstr "8.0.8リリース - 2018-10-29"
 
 msgid "Improvements"
 msgstr "改良"
 
 msgid ""
+"[:doc:`/reference/commands/table_list`] Supported output options of default "
+"tokenizer."
+msgstr ""
+"[:doc:`/reference/commands/table_list`] デフォルトトークナイザーのオプション"
+"をサポートしました。"
+
+msgid ""
+"If you specify a tokenizer like ``TokenNgram`` or ``TokenMecab`` etc that "
+"has options, you can output these options with ``table_list`` command."
+msgstr ""
+"``TokenNgram`` や ``TokenMecab`` 等のようなオプションを持つトークナイザーを指"
+"定した場合、それらのオプションも ``table_list`` コマンドで出力できます。"
+
+msgid ""
+"[:doc:`/reference/commands/select`] Supported normalizer options in "
+"sequential match with ``record @ 'query'``."
+msgstr ""
+"[:doc:`/reference/commands/select`] ``record @ 'query'`` を使ったシーケンシャ"
+"ルマッチでノーマライザーのオプションをサポートしました。"
+
+msgid ""
+"[:doc:`/reference/commands/truncate`] Supported a table that it has "
+"tokenizer option."
+msgstr ""
+"[:doc:`/reference/commands/truncate`] トークナイザーのオプションを持ったテー"
+"ブルをサポートしました。"
+
+msgid ""
+"You can ``truncate`` even a tabel that it has tokenizer like ``TokenNgram`` "
+"or ``TokenMecab`` etc that has options."
+msgstr ""
+"``TokenNgram`` や ``TokenMecab`` 等のようなオプションを持つトークナイザーを持"
+"つテーブルでも ``truncate`` できます。"
+
+msgid ""
+"[:doc:`/reference/tokenizers`][TokenMecab] Added new option ``target_class``"
+msgstr ""
+"[:doc:`/reference/tokenizers`][TokenMecab] ``TokenMecab`` に "
+"``target_class`` オプションを追加しました。"
+
+msgid ""
+"This option searches a token of specifying a part-of-speech. For example, "
+"you can search only a noun."
+msgstr ""
+"このオプションは、指定した品詞のトークンを検索します。例えば、名詞のみを検索"
+"することができます。 "
+
+msgid ""
+"This option can also specify subclasses and exclude or add specific part-of-"
+"speech of specific using ``+`` or ``-``. So, you can also search except a "
+"pronoun as below."
+msgstr ""
+"このオプションは、以下のようにサブクラスを指定することや、 ``+`` や ``-`` を"
+"使って、特定の品詞を追加または除外することもできます。したがって、以下のよう"
+"に代名詞を除外して検索することもできます。"
+
+msgid ""
+"``'TokenMecab(\"target_class\", \"-名詞/代名詞\", \"target_class\", \"+\")'``"
+msgstr ""
+
+msgid ""
+"[:doc:`/reference/commands/io_flush`] Supported locking of a database during "
+"a ``io_flush``."
+msgstr ""
+"[:doc:`/reference/commands/io_flush`] ``io_flush`` 中のデータベースのロックを"
+"サポートしました。"
+
+msgid ""
+"Because Groonga had a problem taht is a crash when deleteing a table of a "
+"target of a ``io_flush`` during execution of a ``io_flush``."
+msgstr ""
+"``io_flush`` 実行中に ``io_flush`` 対象のテーブルを削除するとGroongaがクラッ"
+"シュする問題があったためです。"
+
+msgid ""
+"[:doc:`/reference/functions/cast_loose`] Added a new function ``cast_loose``."
+msgstr ""
+"[:doc:`reference/functions/cast_loose`] 新しい関数 ``cast_loose()`` を追加し"
+"ました。"
+
+msgid ""
+"This function cast to a type to specify. If a value to specify can't cast, "
+"it become to a default value to specify."
+msgstr ""
+"この関数は、指定した型へキャストします。もし、指定した値がキャストできない場"
+"合、値は、指定したデフォルト値になります。"
+
+msgid ""
+"Added optimize the order of evaluation of a conditional expression."
+"(experimental)"
+msgstr "条件式の評価順序の最適化を追加しました。(実験的)"
+
+msgid "You can active this feature by setting environment value as below."
+msgstr "以下のように環境変数を設定することでこの機能を有効にできます。"
+
+msgid "``GRN_EXPR_OPTIMIZE=yes``"
+msgstr ""
+
+msgid ""
+"Supported ``(?-mix:XXX)`` form for index searchable regular expression. "
+"[groonga-dev,04683][Reported by Masatoshi SEKI]"
+msgstr ""
+"インデックス検索可能な正規表現に ``(?-mix:XXX)`` 記法をサポートしました。 "
+"[groonga-dev,04683][ Masatoshi SEKIさんの報告]"
+
+msgid "``(?-mix:XXX)`` form treats the same as XXX."
+msgstr "``(?-mix:XXX)`` は XXX と同じ扱いです。"
+
+msgid "[httpd] Updated bundled nginx to 1.15.5."
+msgstr "[httpd] バンドルしているnginxのバージョンを1.15.5に更新しました。"
+
+msgid "Supported Ubuntu 18.10 (Cosmic Cuttlefish)"
+msgstr "Ubuntu 18.10 (Cosmic Cuttlefish)をサポートしました。"
+
+msgid "Fixes"
+msgstr "修正"
+
+msgid ""
+"Fixed a bug that the Groonga GQTP server may fail to accept a new "
+"connection. [groonga-dev,04688][Reported by Yutaro Shimamura]"
+msgstr ""
+"Groonga GQTP サーバーが新しい接続を受け付けなくなることがあるバグを修正しまし"
+"た。[groonga-dev,04688][Yutaro Shimamuraさんの報告]"
+
+msgid "It's caused when interruption client process without using quit."
+msgstr "quitを使わずにクライアントプロセスを中断した時に発生します。"
+
+msgid "Release 8.0.7 - 2018-09-29"
+msgstr "8.0.7リリース - 2018-09-29"
+
+msgid ""
 "[:doc:`/reference/tokenizers`][TokenMecab] support outputting metadata of "
 "Mecab."
 msgstr ""
@@ -146,9 +277,6 @@ msgstr ""
 msgid "[httpd] Updated bundled nginx to 1.15.4."
 msgstr "[httpd] バンドルしているnginxのバージョンを1.15.4に更新しました。"
 
-msgid "Fixes"
-msgstr "修正"
-
 msgid "Fixed wrong score calculations on some cases."
 msgstr "いくつかのケースでの誤ったスコア計算を修正しました。"
 
@@ -12417,3 +12545,12 @@ msgid ""
 "applied ftb patch for mysql binding from <ko****@yappo*****> 'IN BOOLEAN "
 "MODE' supported"
 msgstr ""
+
+#~ msgid "Added new option ``target_class`` for ``TokenMecab``."
+#~ msgstr "``TokenMecab`` に ``target_class`` オプションを追加しました。"
+
+#~ msgid ""
+#~ "You can output a default tokenizer option with a ``table_list`` command."
+#~ msgstr ""
+#~ "``table_list`` コマンドで、デフォルトトークナイザーのオプションを出力でき"
+#~ "ます。"

  Modified: doc/source/news.rst (+55 -0)
===================================================================
--- doc/source/news.rst    2018-10-24 12:16:33 +0900 (991dcd85a)
+++ doc/source/news.rst    2018-10-26 14:17:38 +0900 (b6c38cac4)
@@ -7,6 +7,61 @@
 News
 ====
 
+.. _release-8-0-8:
+
+Release 8.0.8 - 2018-10-29
+--------------------------
+
+Improvements
+^^^^^^^^^^^^
+
+* [:doc:`/reference/commands/table_list`] Supported output options of default tokenizer.
+
+  * If you specify a tokenizer like ``TokenNgram`` or ``TokenMecab`` etc that has options, you can output these options with ``table_list`` command.
+
+* [:doc:`/reference/commands/select`] Supported normalizer options in sequential match with ``record @ 'query'``.
+
+* [:doc:`/reference/commands/truncate`] Supported a table that it has tokenizer option.
+
+  * You can ``truncate`` even a tabel that it has tokenizer like ``TokenNgram`` or ``TokenMecab`` etc that has options.
+
+* [:doc:`/reference/tokenizers`][TokenMecab] Added new option ``target_class``
+
+  * This option searches a token of specifying a part-of-speech. For example, you can search only a noun.
+  * This option can also specify subclasses and exclude or add specific part-of-speech of specific using ``+`` or ``-``. So, you can also search except a pronoun as below.
+
+    ``'TokenMecab("target_class", "-名詞/代名詞", "target_class", "+")'``
+
+* [:doc:`/reference/commands/io_flush`] Supported locking of a database during a ``io_flush``.
+
+  * Because Groonga had a problem taht is a crash when deleteing a table of a target of a ``io_flush`` during execution of a ``io_flush``.
+
+* [:doc:`/reference/functions/cast_loose`] Added a new function ``cast_loose``.
+
+  * This function cast to a type to specify. If a value to specify can't cast, it become to a default value to specify.
+
+* Added optimize the order of evaluation of a conditional expression.(experimental)
+
+  * You can active this feature by setting environment value as below.
+
+    ``GRN_EXPR_OPTIMIZE=yes``
+
+* Supported ``(?-mix:XXX)`` form for index searchable regular expression. [groonga-dev,04683][Reported by Masatoshi SEKI]
+
+  * ``(?-mix:XXX)`` form treats the same as XXX.
+
+* [httpd] Updated bundled nginx to 1.15.5.
+
+* Supported Ubuntu 18.10 (Cosmic Cuttlefish)
+
+Fixes
+^^^^^
+
+* Fixed a bug that the Groonga GQTP server may fail to accept a new connection. [groonga-dev,04688][Reported by Yutaro Shimamura]
+
+  * It's caused when interruption client process without using quit.
+
+
 .. _release-8-0-7:
 
 Release 8.0.7 - 2018-09-29
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20181026/f7e59618/attachment-0001.html>


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