1
0
Fork 0

updated CHANGELOG

This commit is contained in:
Jan Steemann 2013-11-07 22:28:51 +01:00
parent 54b445d906
commit dc8dba7710
1 changed files with 31 additions and 22 deletions

View File

@ -12,23 +12,40 @@ v1.5.x (XXXX-XX-XX)
* added arangosh option `--javascript.gc-interval` to control amount of * added arangosh option `--javascript.gc-interval` to control amount of
garbage collection performed by arangosh garbage collection performed by arangosh
* added API method GET `/_api/database/user`
This returns the list of databases a specific user can see without changing the
username/passwd.
* fixed issue #656: Cannot create unique index through web interface
* fixed issue #654: bitarray index makes server down
* fixed issue #651: Allow addEdge() to take vertex ids in the JS library * fixed issue #651: Allow addEdge() to take vertex ids in the JS library
* added more detailed request statistics * added more detailed request statistics
This adds the number of async-executed HTTP requests plus the number of HTTP This adds the number of async-executed HTTP requests plus the number of HTTP
requests per individual HTTP method type. requests per individual HTTP method type.
* removed command-line option `--log.format`
In previous versions, this option did not have an effect for most log messages, so
it got removed.
* removed C++ logger implementation
Logging inside ArangoDB is now done using the LOG_XXX() macros. The LOGGER_XXX()
macros are gone.
* added collection status "loading"
v1.4.1-rc1 (2013-11-07)
-----------------------
* fixed issue #635: Web-Interface should have a "Databases" Menu for Management
* fixed issue #624: Web-Interface is missing a Database selector
* fixed segfault in bitarray query
* fixed issue #656: Cannot create unique index through web interface
* fixed issue #654: bitarray index makes server down
* fixed issue #653: Slow query
* fixed issue #650: Randonmess of any() should be improved * fixed issue #650: Randonmess of any() should be improved
* made AQL `DOCUMENT()` function polymorphic and work with just one parameter. * made AQL `DOCUMENT()` function polymorphic and work with just one parameter.
@ -46,13 +63,6 @@ v1.5.x (XXXX-XX-XX)
DOCUMENT(users, [ 'users/john', 'users/amy' ]) DOCUMENT(users, [ 'users/john', 'users/amy' ])
DOCUMENT(users, [ 'john', 'amy' ]) DOCUMENT(users, [ 'john', 'amy' ])
* issue #424: Documentation about IDs needs to be upgraded
* removed command-line option `--log.format`
In previous versions, this option did not have an effect for most log messages, so
it got removed.
* simplified usage of ArangoDB batch API * simplified usage of ArangoDB batch API
It is not necessary anymore to send the batch boundary in the HTTP `Content-Type` It is not necessary anymore to send the batch boundary in the HTTP `Content-Type`
@ -65,13 +75,12 @@ v1.5.x (XXXX-XX-XX)
This also allows using the batch API with the Swagger "Try it out" feature (which is This also allows using the batch API with the Swagger "Try it out" feature (which is
not too good at sending a different or even dynamic content-type request header). not too good at sending a different or even dynamic content-type request header).
* removed C++ logger implementation * added API method GET `/_api/database/user`
Logging inside ArangoDB is now done using the LOG_XXX() macros. The LOGGER_XXX() This returns the list of databases a specific user can see without changing the
macros are gone. username/passwd.
* added collection status "loading"
* issue #424: Documentation about IDs needs to be upgraded
v1.4.0 (2013-10-29) v1.4.0 (2013-10-29)
------------------- -------------------