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 @@ -87,6 +87,7 @@ This release also includes changes from <<release-3-7-XXX, 3.7.XXX>>.
* Simplified comparability semantics from ternary boolean logic to binary logic.
* Introduced `NotP` class for negation of `P`
* Increase minimum Java version from 1.8 to 11 for building and running.
* Upgrade to Go 1.24 and Node 22
* Moved all lambda oriented Gremlin tests to `LambdaStepTest` in the Java test suite.
* Removed the `@RemoteOnly` testing tag in Gherkin as lambda tests have all been moved to the Java test suite.
* Updated gremlin-javascript to use GraphBinary as default instead of GraphSONv3
Expand Down
4 changes: 4 additions & 0 deletions docs/src/upgrade/release-3.8.x.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,10 @@ This change affects all three local collection manipulation steps when operating

See: link:https://issues.apache.org/jira/browse/TINKERPOP-2491[TINKERPOP-2491]

==== Runtime Upgrades

Gremlin Go has been Go 1.24, Gremlin Javascript has been upgraded to Node 22.

==== group() Value Traversal Semantics

The `group()` step takes two `by()` modulators. The first defines the key for the grouping, and the second acts upon the
Expand Down
189 changes: 181 additions & 8 deletions gremlin-javascript/examples/node/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gremlin-javascript/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ limitations under the License.
<properties>
<maven.test.skip>false</maven.test.skip>
<skipTests>${maven.test.skip}</skipTests>
<npm.version>10.8.2</npm.version>
<node.version>v20.19.4</node.version>
<npm.version>10.9.2</npm.version>
<node.version>v22.15.0</node.version>
</properties>
<build>
<directory>${basedir}/target</directory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ services:

gremlin-js-integration-tests:
container_name: gremlin-js-integration-tests
image: node:20
image: node:22
volumes:
- .:/js_app
- ../../../../../gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features:/gremlin-test
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
"lint": "eslint --ext .js ."
},
"engines": {
"node": ">=20"
"node": ">=22"
}
}
2 changes: 1 addition & 1 deletion gremlint/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gremlint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
"lib/**/*"
],
"engines": {
"node": ">=20"
"node": ">=22"
}
}
4 changes: 2 additions & 2 deletions gremlint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ limitations under the License.
<properties>
<maven.test.skip>false</maven.test.skip>
<skipTests>${maven.test.skip}</skipTests>
<npm.version>10.8.2</npm.version>
<node.version>v20.19.4</node.version>
<npm.version>10.9.2</npm.version>
<node.version>v22.15.0</node.version>
</properties>
<build>
<directory>${basedir}/target</directory>
Expand Down
Loading