[Groonga-commit] pgroonga/pgroonga at 98f6ec9 [master] Add release note for 0.4.0

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Mar 27 21:53:37 JST 2015


Kouhei Sutou	2015-03-27 21:53:37 +0900 (Fri, 27 Mar 2015)

  New Revision: 98f6ec9af83caed666b2d675ef9e55383017d50a
  https://github.com/pgroonga/pgroonga/commit/98f6ec9af83caed666b2d675ef9e55383017d50a

  Message:
    Add release note for 0.4.0

  Modified files:
    news.md

  Modified: news.md (+34 -0)
===================================================================
--- news.md    2015-03-27 21:40:51 +0900 (a41dd69)
+++ news.md    2015-03-27 21:53:37 +0900 (06e8600)
@@ -1,5 +1,39 @@
 # News
 
+## 0.4.0: 2015-03-29
+
+You can't upgrade to 0.4.0 from 0.3.0 without re-creating `pgroonga`
+index. You need to re-install PGroonga:
+
+    DROP EXTENSION pgroonga CASCADE;
+    CREATE EXTENSION pgroonga;
+    -- Create your pgroonga indexes again.
+
+### Improvements
+
+  * Supported `column LIKE '%keyword'` as a short cut of `column @@
+    'keyword'`.
+  * Supported range search with multi-column index.
+  * Added PGroonga setup script on Travis CI. Add the following line
+    to `install` section in your `.travis.yml`:
+
+        curl --silent --location https://github.com/pgroonga/pgroonga/raw/master/data/travis/setup.sh | sh
+
+  * Added `pgroonga.table_name()` that returns table name in Groonga.
+  * Added `pgroonga.command()` that executes Groonga command line.
+  * Added `pgroonga.score()` that returns search score in Groonga.
+  * Supported `timestamp` type.
+  * Supported `timestamp with time zone` type.
+  * Supported `varchar[]` type.
+  * Supported full-text search for `text[]` type.
+  * Supported full-text search by index and other search by index in
+    one `SELECT`.
+
+### Changes
+
+  * Dropped `text == text` search by index. Use 4096 bytes or smaller
+    `varchar` instead.
+
 ## 0.3.0: 2015-02-09
 
 You can't upgrade to 0.3.0 from 0.2.0 without re-creating `pgroonga`
-------------- next part --------------
HTML����������������������������...
Download 



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