File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 1
1
v2.6.0 (XXXX-XX-XX)
2
2
-------------------
3
+ * Breaking Changes:
4
+
5
+ * AQL command: `GRAPH_SHORTEST_PATH` now only returns IDs and does not extract data any more.
6
+ It yields an additional option `includeData` which is an object, taking exactly two keys:
7
+ * `edges` set to true will extract all data stored alongside the edges of each path.
8
+ * `vertices` set to true will extract all data stored alongside the vertices of each path.
9
+ The default value of these parameters has been set to `false`
10
+
11
+ * JS Module: general-graph:
12
+ All graph measurements returning exactly one value returned an array containing exactly this one value.
13
+ Now they will return the value directly.
14
+ Modified functions are:
15
+ * `graph._absoluteEccentricity`
16
+ * `graph._eccentricity`
17
+ * `graph._absoluteCloseness`
18
+ * `graph._closeness`
19
+ * `graph._absoluteBetweenness`
20
+ * `graph._betweenness`
21
+ * `graph._radius`
22
+ * `graph._diameter`
3
23
4
24
* Improved GRAPH_SHORTEST_PATH computation
5
25
You can’t perform that action at this time.
0 commit comments