|
| 1 | +v2.6.9 (2015-??-??) |
| 2 | +--------------------------- |
| 3 | +* add support API: /_api/query-cache/properties (AQL query tracking properties: setQueryTrackingProperties(), getQueryTrackingProperties()) |
| 4 | +* add support API: /_api/query-cache (delete AQL query cache: deleteQueryCache()) |
| 5 | +* add support API: /_api/query/current (currently running AQL queries: getCurrentlyRunningQueries()) |
| 6 | +* add support API: /_api/query/slow (slow AQL queries: getSlowQueries(), deleteSlowQueries()) |
| 7 | +* add support API: /_api/query (kill AQL queries: killQuery()) |
| 8 | + |
| 9 | +v2.6.8 (2015-09-25) |
| 10 | +--------------------------- |
| 11 | +* fixed GRAPH_EDGES() 2.6-incompatibility |
| 12 | + |
| 13 | +v2.5.6 (2015-07-04) |
| 14 | +--------------------------- |
| 15 | +* fixed issue #19 |
| 16 | + * createEdge takes graphName but needs database name |
| 17 | +* ArangoDB 2.6 support |
| 18 | + |
| 19 | +v2.5.5 (2015-05-23) |
| 20 | +--------------------------- |
| 21 | +* updated driver.getTraversal(...); |
| 22 | + * removed VisitedEntity (Traversal) |
| 23 | + * added TraversalQueryOptions to avoid too many parameters |
| 24 | +* added an examples for Transaction API |
| 25 | + (see src/test/java/com/arangodb/example/TransactionExample.java) |
| 26 | +* fixed issue #17 |
| 27 | + * Changed TransactionEntity.ReadWriteCollections to a static class |
| 28 | + |
| 29 | +v2.5.4 (2015-05-03) |
| 30 | +--------------------------- |
| 31 | +* fixed issue #12 |
| 32 | + * added auto reconnection when connection breaks |
| 33 | + * added fallback server endpoints |
| 34 | +* added new cursor implementation for AQL queries |
| 35 | + * DocumentCursor<T> executeDocumentQuery(...) |
| 36 | + * VertexCursor<T> executeVertexQuery(...) |
| 37 | + * EdgeCursor<T> executeEdgeQuery(...) |
| 38 | +* added new cursor implementation for simple queries |
| 39 | + * DocumentCursor<T> executeSimpleAllDocuments(...) |
| 40 | + * DocumentCursor<T> executeSimpleByExampleDocuments(...) |
| 41 | + * DocumentCursor<T> executeSimpleRangeWithDocuments(...) |
| 42 | + * DocumentCursor<T> executeSimpleFulltextWithDocuments(...) |
| 43 | +* added some examples for AQL queries |
| 44 | + (see src/test/java/com/arangodb/example) |
| 45 | + |
| 46 | +v2.5.3 (2015-03-29) |
| 47 | +--------------------------- |
| 48 | +* fixed issue #9 |
| 49 | + * added method to driver.getTraversal(...); |
| 50 | + |
| 51 | +v2.5.0 |
| 52 | +--------------------------- |
| 53 | +Added support for sparse indexes |
| 54 | + |
| 55 | +v2.4.4 |
| 56 | +--------------------------- |
| 57 | +* fixed issue #5 |
| 58 | + * added method to driver.createGraph(GraphEntity g); |
| 59 | +* fixed issue #6 |
| 60 | +* fixed issue #7 |
| 61 | + |
| 62 | +v2.4.3 |
| 63 | +--------------------------- |
| 64 | +* Fixed a graph bug: when retrieving a graph via the driver, "from" and "to" were emtpy. This is fixed now. |
| 65 | +* GraphEntity has been changed, so that edge definitions are stored in an EdgeDefinitionsEntity. |
| 66 | +* Some additional methods in GraphEntity: |
| 67 | + * public EdgeDefinitionsEntity getEdgeDefinitionsEntity() |
| 68 | + * public void setEdgeDefinitionsEntity(EdgeDefinitionsEntity edgeDefinitionsEntity) |
| 69 | +* Some additional methods in EdgeDefinitionsEntity: |
| 70 | + * public int getSize() |
| 71 | + * public EdgeDefinitionEntity getEdgeDefinition(String collectionName) |
| 72 | + |
| 73 | +v2.4.2 |
| 74 | +--------------------------- |
| 75 | +Fixed issue#2 |
| 76 | + |
| 77 | +v2.4.1 |
| 78 | +--------------------------- |
| 79 | +httpclient version 4.3.6 |
1 | 80 |
|
2 | 81 | v1.4.1(2014-02-04)
|
3 | 82 | ---------------------------
|
|
0 commit comments