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 66- Switch to Go 1.22.6
77- Support for missing dirty read options (query, transaction apis)
88- Get inbound and outbound edges
9+ - Deprecate VPACK support
910
1011## [ 2.1.0] ( https://github.com/arangodb/go-driver/tree/v2.1.0 ) (2024-04-02)
1112- Switch to Go 1.21.5
Original file line number Diff line number Diff line change 11# ArangoDB Go Driver V2
22
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 (
2727
2828 ApplicationJSON = "application/json"
2929
30+ // ApplicationVPack is the content type for VelocyPack
31+ // Deprecated: Use JSON instead
3032 ApplicationVPack = "application/x-velocypack"
3133)
You can’t perform that action at this time.
0 commit comments