Skip to content

Releases: gawati/gawati-data

v 1.19

25 Jun 07:22
Compare
Choose a tag to compare
 Setting version to 1.19

v 1.18

23 May 04:49
Compare
Choose a tag to compare
Setting version to 1.18

v 1.17

14 May 06:48
Compare
Choose a tag to compare

Filter API updates

v 1.16

11 May 11:04
Compare
Choose a tag to compare

Support docTypes in caching API; Adding docExists API for use by external services

v 1.15

09 May 09:57
Compare
Choose a tag to compare

Important Fix to 1.14. Fixes an error which prevented services from being accessed

v 1.14

07 May 18:32
Compare
Choose a tag to compare

This version deprecates the need for a separate gawati-data-xml package.

The data folder has been migrated from /db/apps/gw-data to /db/docs/gawati-data.

For existing installations, The below script will move your data from the old folder structure to the new one (Run this after installing the new gawati-data package)

xquery version "3.1";

xmldb:move(
    "/db/apps/gw-data/akn", 
    "/db/docs/gawati-data"
), xmldb:move(
    "/db/apps/gw-data/akn_ft", 
    "/db/docs/gawati-data"
    )

v 1.13

24 Apr 04:36
Compare
Choose a tag to compare

Full text search improvements ; Filtering enhancements / fixes

v 1.12

19 Mar 14:17
Compare
Choose a tag to compare

Changed path to FT documents

v 1.11

08 Mar 07:55
Compare
Choose a tag to compare

This version introduces the use of Sort Indexes for faster listing queries where data is returned in a particular order.

v 1.9

02 Jan 08:02
Compare
Choose a tag to compare

This version provides a search syntax based search API, which needs the following HTTPD config:

<Location "/gw/service/search/filter/">
  AddType text/cache-manifest .appcache
  ProxyPass  "http://localhost:8080/exist/restxq/gw/search/filter/json"
  ProxyPassReverse "http://localhost:8080/exist/restxq/gw/search/filter/json"
  ProxyPassReverseCookiePath /exist /
  SetEnv force-proxy-request-1.0 1
  SetEnv proxy-nokeepalive 1
</Location>