You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added `closeSessionPostGraphOp` to the Gremlin Server settings to indicate that the `Session` should be closed on either a successful commit or rollback.
34
34
* Added `SessionedChildClient` that borrows connections from a different `Client` for use with `Sessions`.
35
35
* Added `reuseConnectionsForSessions` to Java GLV settings to decide whether to use `SessionedChildClient` for remote transactions.
36
+
* Added support for Node 22 and 24 alongside Node 20.
36
37
37
38
[[release-3-7-5]]
38
39
=== TinkerPop 3.7.5 (Release Date: November 12, 2025)
Copy file name to clipboardExpand all lines: gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/client-behavior-tests.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ describe('Client', function () {
59
59
letresult=awaitnoUserAgentClient.submit('1',null,
60
60
{requestId: settings.USER_AGENT_REQUEST_ID});
61
61
62
-
assert.strictEqual(result.first(),"");
62
+
assert.ok(result.first()===""||result.first()==="node");// The default node websocket library may use a default user-agent of "node" if none is specified
0 commit comments