1
0
Fork 0

Merge branch 'devel' of github.com:arangodb/arangodb into devel

This commit is contained in:
Willi Goesgens 2015-06-18 15:57:04 +02:00
commit 7489bdec07
6 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,9 @@
v2.6.0-beta4 (2015-06-16) v2.6.0-beta4 (2015-06-16)
------------------------- -------------------------
* using negative values for `SimpleQuery.skip()` is deprecated.
This functionality will be removed in future versions of ArangoDB.
* The following simple query functions are now deprecated: * The following simple query functions are now deprecated:
* collection.near * collection.near

View File

@ -29,6 +29,7 @@ ArangoDB and shouldn't be used if possible.
* Foxx: the Foxx sessions option `sessionStorageApp` is deprecated, it will raise a warning if you use it. Please use the option `sessionStorage` instead. * Foxx: the Foxx sessions option `sessionStorageApp` is deprecated, it will raise a warning if you use it. Please use the option `sessionStorage` instead.
* AQL: the AQL function `SKIPLIST` is deprecated. It will be removed in a future version of ArangoDB. Please use regular AQL constructs instead (e.g. `FOR doc IN collection FILTER doc.value >= @value SORT doc.value DESC LIMIT 1 RETURN doc`). * AQL: the AQL function `SKIPLIST` is deprecated. It will be removed in a future version of ArangoDB. Please use regular AQL constructs instead (e.g. `FOR doc IN collection FILTER doc.value >= @value SORT doc.value DESC LIMIT 1 RETURN doc`).
* Simple queries: the following simple query functions are now deprecated: collection.near(), collection.within(), collection.geo(), collection.fulltext(), collection.range(), collection.closedRange(). It is recommended to replace calls to these functions with equivalent AQL queries, which are more flexible. * Simple queries: the following simple query functions are now deprecated: collection.near(), collection.within(), collection.geo(), collection.fulltext(), collection.range(), collection.closedRange(). It is recommended to replace calls to these functions with equivalent AQL queries, which are more flexible.
* Simple queries: using negative values for SimpleQuery.skip() is deprecated. This functionality will be removed in future versions of ArangoDB.
## 2.7 ## 2.7
@ -41,6 +42,7 @@ ArangoDB and shouldn't be used if possible.
* The module `org/arangodb/extend` is deprecated. Please use the module `extendible` instead. * The module `org/arangodb/extend` is deprecated. Please use the module `extendible` instead.
* AQL: the AQL function `SKIPLIST` has been removed. * AQL: the AQL function `SKIPLIST` has been removed.
* Simple queries: the following simple query functions are now deprecated: collection.near(), collection.within(), collection.geo(), collection.fulltext(), collection.range(), collection.closedRange(). It is recommended to replace calls to these functions with equivalent AQL queries, which are more flexible. * Simple queries: the following simple query functions are now deprecated: collection.near(), collection.within(), collection.geo(), collection.fulltext(), collection.range(), collection.closedRange(). It is recommended to replace calls to these functions with equivalent AQL queries, which are more flexible.
* Simple queries: using negative values for SimpleQuery.skip() is not supported any longer.
## 2.8 ## 2.8

View File

@ -277,6 +277,9 @@ which are more flexible because they can be combined with other operations:
The above simple query functions and REST API methods may be removed in future versions The above simple query functions and REST API methods may be removed in future versions
of ArangoDB. of ArangoDB.
Using negative values for `SimpleQuery.skip()` is also deprecated.
This functionality will be removed in future versions of ArangoDB.
!SUBSECTION AQL functions !SUBSECTION AQL functions
The AQL `SKIPLIST` function has been deprecated because it is obsolete. The AQL `SKIPLIST` function has been deprecated because it is obsolete.

View File

@ -5,7 +5,9 @@ import inspect
import cgi import cgi
validExtensions = (".cpp", ".h", ".js") validExtensions = (".cpp", ".h", ".js")
searchPaths = ["arangod/", "lib/", "js/"] # specify the paths in which docublocks are searched. note that js/apps/* must not be included because it contains js/apps/system/
# and that path also contains copies of some files present in js/ anyway.
searchPaths = ["arangod/", "lib/", "js/actions", "js/client", "js/apps/system/cerberus", "js/apps/system/gharial", "js/common", "js/server"]
fullSuccess = True fullSuccess = True
def file_content(filepath): def file_content(filepath):

View File

@ -6,6 +6,7 @@ module.define("org/arangodb/mimetypes", function(exports, module) {
vars: true, vars: true,
white: true, white: true,
plusplus: true */ plusplus: true */
/*global exports */
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief auto-generated file generated from mimetypes.dat /// @brief auto-generated file generated from mimetypes.dat

View File

@ -5,6 +5,7 @@
vars: true, vars: true,
white: true, white: true,
plusplus: true */ plusplus: true */
/*global exports */
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief auto-generated file generated from mimetypes.dat /// @brief auto-generated file generated from mimetypes.dat