From dc8dba7710c855a5228d7937d2950ee0dbf8f01f Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Thu, 7 Nov 2013 22:28:51 +0100 Subject: [PATCH] updated CHANGELOG --- CHANGELOG | 53 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 31 insertions(+), 22 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0f1ba0e788..5b0ee47d1f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -12,23 +12,40 @@ v1.5.x (XXXX-XX-XX) * added arangosh option `--javascript.gc-interval` to control amount of 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 - * added more detailed request statistics This adds the number of async-executed HTTP requests plus the number of HTTP 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 * 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, [ '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 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 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() - macros are gone. - -* added collection status "loading" + This returns the list of databases a specific user can see without changing the + username/passwd. +* issue #424: Documentation about IDs needs to be upgraded v1.4.0 (2013-10-29) -------------------