Skip to content

Commit 2a1749b

Browse files
author
a-brandt
committed
added docu
1 parent 96fb12c commit 2a1749b

File tree

2 files changed

+82
-69
lines changed

2 files changed

+82
-69
lines changed

ChangeLog

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,82 @@
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
180

281
v1.4.1(2014-02-04)
382
---------------------------

README.md

Lines changed: 3 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
This library is a Java driver for ArangoDB.
99

10-
Supported version: ArangoDB-2.4.x, ArangoDB 2.5.x and ArangoDB 2.6.x
10+
Supported version: ArangoDB 2.6.x and ArangoDB 2.7.x
1111

1212
# Required
1313

14-
* [ArangoDB](https://github.com/arangodb/arangodb) version 2.4.x, 2.5.x or 2.6.x
14+
* [ArangoDB](https://github.com/arangodb/arangodb) version 2.6.x or 2.7.x
1515
* Java 1.6 later
1616

1717
# Basics
@@ -366,70 +366,4 @@ Now an edge can be created to set a relation between vertices
366366
null);
367367
```
368368

369-
# What's new in 2.4 / 2.5
370-
371-
## since 2.4.1
372-
httpclient version 4.3.6
373-
374-
## since 2.4.2
375-
Fixed issue#2
376-
377-
## since 2.4.3
378-
* Fixed a graph bug: when retrieving a graph via the driver, "from" and "to" were emtpy. This is fixed now.
379-
* GraphEntity has been changed, so that edge definitions are stored in an EdgeDefinitionsEntity.
380-
* Some additional methods in GraphEntity:
381-
* public EdgeDefinitionsEntity getEdgeDefinitionsEntity()
382-
* public void setEdgeDefinitionsEntity(EdgeDefinitionsEntity edgeDefinitionsEntity)
383-
* Some additional methods in EdgeDefinitionsEntity:
384-
* public int getSize()
385-
* public EdgeDefinitionEntity getEdgeDefinition(String collectionName)
386-
387-
## since 2.4.4
388-
* fixed issue #5
389-
* added method to driver.createGraph(GraphEntity g);
390-
* fixed issue #6
391-
* fixed issue #7
392-
393-
## since 2.5.0
394-
Added support for sparse indexes
395-
396-
## since 2.5.1
397-
see 2.4.4
398-
399-
## since 2.5.3
400-
* fixed issue #9
401-
* added method to driver.getTraversal(...);
402-
403-
## since 2.5.4
404-
* fixed issue #12
405-
* added auto reconnection when connection breaks
406-
* added fallback server endpoints
407-
* added new cursor implementation for AQL queries
408-
* DocumentCursor<T> executeDocumentQuery(...)
409-
* VertexCursor<T> executeVertexQuery(...)
410-
* EdgeCursor<T> executeEdgeQuery(...)
411-
* added new cursor implementation for simple queries
412-
* DocumentCursor<T> executeSimpleAllDocuments(...)
413-
* DocumentCursor<T> executeSimpleByExampleDocuments(...)
414-
* DocumentCursor<T> executeSimpleRangeWithDocuments(...)
415-
* DocumentCursor<T> executeSimpleFulltextWithDocuments(...)
416-
* added some examples for AQL queries
417-
(see src/test/java/com/arangodb/example)
418-
419-
## since 2.5.5
420-
* updated driver.getTraversal(...);
421-
* removed VisitedEntity (Traversal)
422-
* added TraversalQueryOptions to avoid too many parameters
423-
* added an examples for Transaction API
424-
(see src/test/java/com/arangodb/example/TransactionExample.java)
425-
* fixed issue #17
426-
* Changed TransactionEntity.ReadWriteCollections to a static class
427-
428-
## since 2.5.6
429-
* fixed issue #19
430-
* createEdge takes graphName but needs database name
431-
* ArangoDB 2.6 support
432-
433-
## since 2.6.8
434-
* fixed GRAPH_EDGES() 2.6-incompatibility
435-
369+
[ChangeLog](https://github.com/arangodb/arangodb-java-driver/blob/master/ChangeLog)

0 commit comments

Comments
 (0)