Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
=== TinkerPop 4.0.0 (Release Date: NOT OFFICIALLY RELEASED YET)

* Added GraphBinary `Tree` (`0x2b`) serialization and deserialization with a native tree-shaped API to `gremlin-python`, `gremlin-dotnet`, `gremlin-go`, and `gremlin-javascript`.
* Added a `gremlin/io` package export in `gremlin-javascript` exposing the GraphBinary type serializers.
* Raised the minimum Java version to 17 for building and running *(breaking)*.
* Enabled building and running with Java 21 and Java 25.
* Bumped Groovy to 4.0.32, Hadoop to 3.4.3, Spark to 4.1.2 (Scala 2.13), and Netty to 4.2.7 to support Java 25.
Expand Down
4 changes: 4 additions & 0 deletions gremlin-js/gremlin-javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
"./language": {
"import": "./build/esm/language/index.js",
"types": "./build/esm/language/index.d.ts"
},
"./io": {
"import": "./build/esm/structure/io/binary/GraphBinary.js",
"types": "./build/esm/structure/io/binary/GraphBinary.d.ts"
}
},
"typesVersions": {
Expand Down
Loading