All Versions
116
Latest Version
Avg Release Cycle
31 days
Latest Release
1018 days ago
Changelog History
Page 10
Changelog History
Page 10
-
v3.0.4 Changes
October 17, 2016๐ Fixed
- ๐ fixed edges deserializer (issue #50)
-
v3.0.3 Changes
September 12, 2016โ Added
- โ added error handling in getBatchResponseByRequestId()
- โ added function createPersistentIndex() (issue #48)
- โ added deserializer for BaseDocument (issue #50)
-
v3.0.2 Changes
August 05, 2016โ Added
- โ added profile flag to AqlQueryOptions (issue #47)
- โ added getExtra() to DocumentCursor<> (issue #47)
- โ added IndexType.PERSISTENT (issue #48)
-
v3.0.1 Changes
July 08, 2016โ Added
- โ added flag complete and details in ImportOptions
๐ Fixed
- ๐ fixed issue #43 (ArangoDriver.getAqlFunctions(String) does not uses the defaultDatabase setting)
-
v3.0.0 Changes
June 17, 2016โ Added
- โ added User-Method grantDatabaseAccess(username, database)
- โ added Transaction attribute allowImplicit
๐ Changed
- ๐จ refactored QueryCachePropertiesEntity, TransactionResultEntity
Replaced
- replaced Graph-Functions (graph_edge, graph_vertices, graph_shortes_path) with AQL
โ Removed
- โ removed ArangoDriver.EdgeEntity() (/_api/edge withdrawn in Server)
- โ removed CAP-Index (Cap-constraints are withdrawn in Server)
- ๐ removed Param database in User-Methods (in 3.0 users are managed in _users Collection in _system Database only)
- โ removed deprecated Methods
-
v2.7.4 Changes
April 15, 2016๐ Fixed
- ๐ fixed issue #35 (There is no replaceDocumentRaw similar to createDocumentRaw)
-
v2.7.3 Changes
March 25, 2016๐ Fixed
- ๐ batch driver performance fix
- ๐ fixed issue #33 (typo in ArangoDriver.executeAqlQueryWithDocumentCursorResutl method)
-
v2.7.2 Changes
January 22, 2016โ Added
- โ added executeAqlQueryRaw(...). Example src/test/java/com/arangodb/example/document/RawDocumentExample.java
-
v2.7.1 Changes
January 21, 2016โ Added
- โ added examples for new AQL traversal functions (since ArangoDB 2.8)
- โ added AQL warnings to CursorResult<?> (hasWarning() and getWarnings())
- โ added createDocumentRaw(...) and getDocumentRaw(...). Examples src/test/java/com/arangodb/example/document/RawDocumentExample.java
๐ Changed
- โก๏ธ Updated dependencies gson (2.5), httpclient (4.5.1) and slf4j-api (1.7.13)
-
v2.7.0 Changes
November 20, 2015โ Added
- โ added document examples in src/test/java/com/arangodb/example/document/
- โ added graph examples in src/test/java/com/arangodb/example/document/
- โ added new function executeAqlQueryJSON(): Executes an AQL query and returns the raw JSON response as a String
- ๐ initial support of HTTPS connections. Examples src/test/java/com/arangodb/example/ssl/