mirror of https://gitee.com/bigwinds/arangodb
Mention that deprecated methods will warn.
This commit is contained in:
parent
7ec9a31895
commit
39ed779159
|
@ -41,10 +41,10 @@ migrations will also be detailed here.
|
|||
|
||||
* Foxx: method `controller.collection()` is deprecated, it will raise a warning if you use it. Please use `appContext.collection` instead.
|
||||
* Foxx: property `FoxxRepository.modelPrototype` is deprecated, it will raise a warning if you use it. Please use `FoxxRepository.model` instead.
|
||||
* Foxx: `requestContext.bodyParam(paramName, description, Model)` is deprecated. Please use `requestContext.bodyParam(paramName, options)` instead.
|
||||
* Foxx: `requestContext.queryParam({type: string})` is deprecated. Please use `requestContext.queryParam({type: joi})` instead.
|
||||
* Foxx: `requestContext.pathParam({type: string})` is deprecated Please use `requestContext.pathParam({type: joi})` instead.
|
||||
* Foxx: `Model.extend({}, {attributes: {}})` is deprecated. Please use `Model.extend({schema: {}})` instead.
|
||||
* Foxx: `requestContext.bodyParam(paramName, description, Model)` is deprecated, it will raise a warning if you use it. Please use `requestContext.bodyParam(paramName, options)` instead.
|
||||
* Foxx: `requestContext.queryParam({type: string})` is deprecated, it will raise a warning if you use it. Please use `requestContext.queryParam({type: joi})` instead.
|
||||
* Foxx: `requestContext.pathParam({type: string})` is deprecated, it will raise a warning if you use it. Please use `requestContext.pathParam({type: joi})` instead.
|
||||
* Foxx: `Model.extend({}, {attributes: {}})` is deprecated, it will raise a warning if you use it. Please use `Model.extend({schema: {}})` instead.
|
||||
* General-Graph: In the module `org/arangodb/general-graph` the functions `_undirectedRelation` and `_directedRelation` are deprecated. Both functions have been unified to `_relation`.
|
||||
* Graph: The modules `org/arangodb/graph` and `org/arangodb/graph-blueprint` are deprecated. Please use module `org/arangodb/general-graph` instead.
|
||||
* The HTTP REST API `_api/graph` and all its methods are deprecated. Please use the general graph API `_api/gharial` instead.
|
||||
|
|
Loading…
Reference in New Issue