File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 6
6
- Switch to Go 1.22.6
7
7
- Support for missing dirty read options (query, transaction apis)
8
8
- Get inbound and outbound edges
9
+ - Deprecate VPACK support
9
10
10
11
## [ 2.1.0] ( https://github.com/arangodb/go-driver/tree/v2.1.0 ) (2024-04-02)
11
12
- Switch to Go 1.21.5
Original file line number Diff line number Diff line change 1
1
# ArangoDB Go Driver V2
2
2
3
- Implementation of Driver V2 makes use of runtime JSON/VPACK serialization, reducing memory and CPU Driver usage.
3
+ Implementation of Driver V2 makes use of runtime JSON serialization, reducing memory and CPU Driver usage.
4
+ The Combination of JSON serialization and HTTP2 support makes the driver more efficient and faster.
5
+
6
+ ## Deprecation Notice
7
+
8
+ Since ArangoDB 3.12 VST support has been dropped and VPack is not anymore developed and maintained.
9
+ The driver will not support VST from version V2 and VPack support will be removed in the future.
10
+
11
+ V1 driver is deprecated and will not receive any new features. Please use V2 instead.
12
+ In V2 we have introduced a new way of handling requests and responses, which is more efficient and easier to use.
Original file line number Diff line number Diff line change @@ -27,5 +27,7 @@ const (
27
27
28
28
ApplicationJSON = "application/json"
29
29
30
+ // ApplicationVPack is the content type for VelocyPack
31
+ // Deprecated: Use JSON instead
30
32
ApplicationVPack = "application/x-velocypack"
31
33
)
You can’t perform that action at this time.
0 commit comments