File tree Expand file tree Collapse file tree 6 files changed +11
-7
lines changed Expand file tree Collapse file tree 6 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 3.0.1] - 2025-08-06
10
+
11
+ - fixed deserialization of ` null ` values in AQL results
12
+
9
13
## [ 3.0.0] - 2025-08-06
10
14
11
15
Since version ` 3.0.0 ` , this project has been forked and is officially maintained by ArangoDB.
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ implementation 'com.arangodb:arangodb-tinkerpop-provider:x.y.z'
55
55
To use the provider in the Gremlin Console, first you need to install it:
56
56
57
57
``` text
58
- :install com.arangodb arangodb-tinkerpop-provider 3.0.0
58
+ :install com.arangodb arangodb-tinkerpop-provider 3.0.1
59
59
```
60
60
61
61
Then, after restarting the console, you can use it:
@@ -90,7 +90,7 @@ gremlin> g.V().hasLabel("person").values("name")
90
90
To use the provider as Gremlin Server plugin, first you need to install it:
91
91
92
92
``` text
93
- ./bin/gremlin-server.sh install com.arangodb arangodb-tinkerpop-provider 3.0.0
93
+ ./bin/gremlin-server.sh install com.arangodb arangodb-tinkerpop-provider 3.0.1
94
94
```
95
95
96
96
Then, you need to create the graph configuration, e.g. in the file
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.example</groupId >
8
8
<artifactId >arango-tinkerpop-demo</artifactId >
9
- <version >3.0.0 </version >
9
+ <version >3.0.1 </version >
10
10
11
11
<properties >
12
12
<maven .compiler.source>21</maven .compiler.source>
18
18
<dependency >
19
19
<groupId >com.arangodb</groupId >
20
20
<artifactId >arangodb-tinkerpop-provider</artifactId >
21
- <version >3.0.0 </version >
21
+ <version >3.0.1 </version >
22
22
</dependency >
23
23
<dependency >
24
24
<groupId >ch.qos.logback</groupId >
Original file line number Diff line number Diff line change 12
12
13
13
<groupId >com.arangodb</groupId >
14
14
<artifactId >arangodb-tinkerpop-provider</artifactId >
15
- <version >3.0.0 </version >
15
+ <version >3.0.1 </version >
16
16
<packaging >jar</packaging >
17
17
18
18
<name >arangodb-tinkerpop-provider</name >
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
- /opt/gremlin-server/bin/gremlin-server.sh install com.arangodb arangodb-tinkerpop-provider 3.0.0
5
+ /opt/gremlin-server/bin/gremlin-server.sh install com.arangodb arangodb-tinkerpop-provider 3.0.1
6
6
/opt/gremlin-server/bin/gremlin-server.sh /arangodb/gremlin-server-arangodb.yaml
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.example</groupId >
8
8
<artifactId >java-client</artifactId >
9
- <version >3.0.0 </version >
9
+ <version >3.0.1 </version >
10
10
11
11
<properties >
12
12
<maven .compiler.source>17</maven .compiler.source>
You can’t perform that action at this time.
0 commit comments