This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/3.7-dev/github/codeql-action-4
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 592cbac111 Bump github/codeql-action from 3 to 4
     add eebb8f8396 Fix Four Flaky Tests in gremlin-core (#3221)
     add 38594b92da Fix WebSocket API inconsistency causing "this._ws.on is not 
a function" error (#3204)
     add de99ce6263 Add root-level GLV examples and fix existing example issues 
(#3218)
     add fb20adf9c0 TINKERPOP-3199 Updated build system to work with 
setuptools>=60
     add a795d38afc Clean up gremlin-python docker-compose after move to newer 
setuptools CTR
     add 7eaecf4264 CTR deprecate has(key, traversal)
     add ff5296ca79 Renamed root level glv-examples to gremlin-examples for 
consistency. (#3261)
     add e754180a2d Add missing anonymous traversal steps in python and 
javascript CTR
     add b1967c4a7d Fixed empty-sample-secure.groovy to work with 
COMPILE_STATIC (#3262)
     add 87a9032442 Minor 3.7.5 docs fix CTR
     add 3f92b1da83 Added runtime documentation
     add f0040853da Update CHANGELOG and upgrade documentation for 3.7.5 CTR
     add 85449b08d7 Deflake tests in GraphSONTypedCompatibilityTest, 
GraphSONUntypedCompatibilityTest and GraphBinaryCompatibilityTest (#3237)
     add a735e4149a fix source release exclusions
     add b05a285009 TinkerPop 3.7.5 release
     add 3f7c775c8e CTR: Update version to 3.7.6-SNAPSHOT
     add 2cd2748aa4 Integrate Python driver examples into automated build 
process (#3231)
     add b305bc9a29 CTR logging docs for javascript
     add 3bdb5bd6cf Remove 
GremlinServerSessionIntegrateWithUnifiedChannelizerTest CTR
     add 4f88964daa TINKERPOP-3213 Add SessionedChildClient (#3258)
     add 53959cc41c TINKERPOP-3217 Add server option to close Session 
automatically. (#3284)
     add 61c37a1e24 Integrate JavaScript examples into CI build (#3240)
     add 0f90b39e03 TINKERPOP-3223 Fixed bug in SubgraphStrategy
     add 825859faa8 Bump github/codeql-action from 3 to 4

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (592cbac111)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/3.7-dev/github/codeql-action-4 (825859faa8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc                                 |  18 +-
 bin/publish-docs.sh                                |   2 +-
 docs/site/home/download.html                       |  40 ++-
 .../dev/developer/development-environment.asciidoc |   8 +
 docs/src/dev/developer/release.asciidoc            |   9 +
 docs/src/reference/gremlin-applications.asciidoc   |   1 +
 docs/src/reference/gremlin-variants.asciidoc       | 326 ++++++++++++++++--
 docs/src/reference/the-traversal.asciidoc          |  20 +-
 docs/src/upgrade/release-3.7.x.asciidoc            |  56 ++-
 gremlin-annotations/pom.xml                        |   2 +-
 gremlin-archetype/gremlin-archetype-dsl/pom.xml    |   2 +-
 gremlin-archetype/gremlin-archetype-server/pom.xml |   2 +-
 .../gremlin-archetype-tinkergraph/pom.xml          |   2 +-
 gremlin-archetype/pom.xml                          |   2 +-
 gremlin-console/bin/gremlin.sh                     |   2 +-
 gremlin-console/pom.xml                            |   2 +-
 gremlin-core/pom.xml                               |   2 +-
 .../traversal/dsl/graph/GraphTraversal.java        |   4 +
 .../gremlin/process/traversal/dsl/graph/__.java    |   4 +
 .../strategy/decoration/SubgraphStrategy.java      |   4 +-
 .../io/graphson/GraphSONSerializersV1.java         |   5 +-
 .../io/graphson/GraphSONSerializersV2.java         |   5 +-
 .../io/graphson/GraphSONSerializersV3.java         |   4 +-
 .../org/apache/tinkerpop/gremlin/util/Gremlin.java |   2 +-
 .../Examples/BasicGremlin/BasicGremlin.csproj      |   2 +-
 .../Examples/Connections/Connections.csproj        |   2 +-
 .../ModernTraversals/ModernTraversals.csproj       |   2 +-
 gremlin-dotnet/pom.xml                             |   2 +-
 .../Gremlin.Net.Template.csproj                    |   2 +-
 .../Gremlin.Net.Template.nuspec                    |   2 +-
 gremlin-dotnet/src/Gremlin.Net/Driver/Tokens.cs    |   2 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |   2 +-
 .../Process/Traversal/GraphTraversal.cs            |   2 +
 .../src/Gremlin.Net/Process/Traversal/__.cs        |   2 +
 gremlin-dotnet/src/pom.xml                         |   2 +-
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |   1 +
 gremlin-dotnet/test/pom.xml                        |   2 +-
 gremlin-driver/pom.xml                             |   2 +-
 .../apache/tinkerpop/gremlin/driver/Client.java    |  74 ++++
 .../apache/tinkerpop/gremlin/driver/Cluster.java   |  18 +
 .../tinkerpop/gremlin/driver/Connection.java       |   2 +-
 .../apache/tinkerpop/gremlin/driver/Settings.java  |  10 +
 .../driver/remote/DriverRemoteConnection.java      |  22 +-
 .../tinkerpop/gremlin/driver/SettingsTest.java     |   2 +
 gremlin-examples/README.md                         |  28 ++
 .../gremlin-dotnet}/BasicGremlin/BasicGremlin.cs   |   0
 .../BasicGremlin/BasicGremlin.csproj               |   2 +-
 .../gremlin-dotnet}/Connections/Connections.cs     |   0
 .../gremlin-dotnet}/Connections/Connections.csproj |   2 +-
 .../gremlin-dotnet}/Examples.sln                   |   0
 .../ModernTraversals/ModernTraversals.cs           |   0
 .../ModernTraversals/ModernTraversals.csproj       |   2 +-
 .../gremlin-go}/basic_gremlin.go                   |   0
 .../gremlin-go}/connections.go                     |   0
 .../gremlin-go}/go.mod                             |   8 +-
 .../gremlin-go}/go.sum                             |   6 +
 .../gremlin-go}/modern_traversals.go               |   0
 .../gremlin-java}/BasicGremlin.java                |   0
 .../gremlin-java}/Connections.java                 |   0
 .../gremlin-java}/ModernTraversals.java            |   0
 .../gremlin-java}/pom.xml                          |  10 +-
 .../gremlin-javascript}/.gitignore                 |   0
 .../gremlin-javascript}/basic-gremlin.js           |  15 +-
 .../gremlin-javascript}/connections.js             |  18 +-
 .../gremlin-javascript}/modern-traversals.js       |   4 +-
 .../gremlin-javascript/package-lock.json           | 220 ++++++++++++
 .../gremlin-javascript}/package.json               |   2 +-
 .../gremlin-python}/basic_gremlin.py               |  14 +-
 .../gremlin-python}/connections.py                 |  32 +-
 .../gremlin-python}/modern_traversals.py           |   0
 .../gremlin-python/requirements.txt                |   4 +-
 gremlin-go/driver/cucumber/gremlin.go              |   1 +
 gremlin-go/driver/gorillaTransporter.go            |   4 +-
 gremlin-go/driver/user_agent.go                    |   2 +-
 gremlin-go/examples/go.mod                         |   6 +-
 gremlin-go/examples/go.sum                         |  10 +-
 gremlin-go/pom.xml                                 |   2 +-
 gremlin-groovy/pom.xml                             |   2 +-
 gremlin-javascript/examples/node/basic-gremlin.js  |  15 +-
 gremlin-javascript/examples/node/connections.js    |  18 +-
 .../examples/node/modern-traversals.js             |   7 +-
 gremlin-javascript/examples/node/package-lock.json |  53 +--
 gremlin-javascript/examples/node/package.json      |   2 +-
 gremlin-javascript/pom.xml                         |   2 +-
 .../gremlin-javascript/docker-compose.yml          |  12 +-
 .../gremlin-javascript/lib/driver/connection.js    |  17 +-
 .../lib/process/graph-traversal.js                 |   6 +
 .../javascript/gremlin-javascript/lib/utils.js     |   2 +-
 .../gremlin-javascript/package-lock.json           |   4 +-
 .../javascript/gremlin-javascript/package.json     |   2 +-
 .../gremlin-javascript/test/cucumber/gremlin.js    |   1 +
 gremlin-language/pom.xml                           |   2 +-
 gremlin-python/docker-compose.yml                  |  19 +-
 gremlin-python/pom.xml                             |   8 +-
 .../src/main/python/examples/basic_gremlin.py      |  16 +-
 .../src/main/python/examples/connections.py        |  53 ++-
 .../src/main/python/examples/modern_traversals.py  |  12 +-
 .../src/main/python/examples/requirements.txt      |  12 +-
 .../src/main/python/gremlin_python/__init__.py     |   1 +
 .../main/python/gremlin_python/driver/useragent.py |   2 +-
 .../gremlin_python/process/graph_traversal.py      |  49 +++
 gremlin-python/src/main/python/pyproject.toml      |  76 +++++
 gremlin-python/src/main/python/radish/gremlin.py   |   1 +
 gremlin-python/src/main/python/setup.cfg           |  22 --
 gremlin-python/src/main/python/setup.py            |  91 -----
 gremlin-server/pom.xml                             |   2 +-
 gremlin-server/scripts/empty-sample-secure.groovy  |   8 +-
 .../apache/tinkerpop/gremlin/server/Settings.java  |   8 +
 .../gremlin/server/handler/AbstractSession.java    |   4 +
 .../gremlin/server/op/AbstractOpProcessor.java     |   8 +-
 .../server/op/session/SessionOpProcessor.java      |  27 +-
 ...st.java => AbstractSessionTxIntegrateTest.java} |  39 +--
 ...SessionIntegrateWithUnifiedChannelizerTest.java |  61 ----
 ...ava => GremlinSessionReuseTxIntegrateTest.java} |  26 +-
 .../server/GremlinSessionTxIntegrateTest.java      | 378 +--------------------
 gremlin-shaded/pom.xml                             |   2 +-
 gremlin-test/pom.xml                               |   2 +-
 .../features/integrated/SubgraphStrategy.feature   |  17 +-
 gremlin-tools/gremlin-benchmark/pom.xml            |   2 +-
 gremlin-tools/gremlin-coverage/pom.xml             |   2 +-
 gremlin-tools/gremlin-socket-server/pom.xml        |   2 +-
 gremlin-tools/pom.xml                              |   2 +-
 gremlin-util/pom.xml                               |   2 +-
 .../tinkerpop/gremlin/structure/io/Model.java      |  29 +-
 gremlint/package-lock.json                         |   4 +-
 gremlint/package.json                              |   2 +-
 gremlint/pom.xml                                   |   2 +-
 hadoop-gremlin/pom.xml                             |   2 +-
 neo4j-gremlin/pom.xml                              |   2 +-
 pom.xml                                            |   2 +-
 source-release.xml                                 |   2 +
 spark-gremlin/pom.xml                              |   2 +-
 sparql-gremlin/pom.xml                             |   2 +-
 tinkergraph-gremlin/pom.xml                        |   2 +-
 134 files changed, 1351 insertions(+), 870 deletions(-)
 create mode 100644 gremlin-examples/README.md
 copy {gremlin-dotnet/Examples => 
gremlin-examples/gremlin-dotnet}/BasicGremlin/BasicGremlin.cs (100%)
 copy {gremlin-dotnet/Examples => 
gremlin-examples/gremlin-dotnet}/BasicGremlin/BasicGremlin.csproj (91%)
 copy {gremlin-dotnet/Examples => 
gremlin-examples/gremlin-dotnet}/Connections/Connections.cs (100%)
 copy {gremlin-dotnet/Examples => 
gremlin-examples/gremlin-dotnet}/Connections/Connections.csproj (91%)
 copy {gremlin-dotnet/Examples => gremlin-examples/gremlin-dotnet}/Examples.sln 
(100%)
 copy {gremlin-dotnet/Examples => 
gremlin-examples/gremlin-dotnet}/ModernTraversals/ModernTraversals.cs (100%)
 copy {gremlin-dotnet/Examples => 
gremlin-examples/gremlin-dotnet}/ModernTraversals/ModernTraversals.csproj (94%)
 copy {gremlin-go/examples => gremlin-examples/gremlin-go}/basic_gremlin.go 
(100%)
 copy {gremlin-go/examples => gremlin-examples/gremlin-go}/connections.go (100%)
 copy {gremlin-go/examples => gremlin-examples/gremlin-go}/go.mod (85%)
 copy {gremlin-go/examples => gremlin-examples/gremlin-go}/go.sum (77%)
 copy {gremlin-go/examples => gremlin-examples/gremlin-go}/modern_traversals.go 
(100%)
 copy {gremlin-driver/src/main/java/examples => 
gremlin-examples/gremlin-java}/BasicGremlin.java (100%)
 copy {gremlin-driver/src/main/java/examples => 
gremlin-examples/gremlin-java}/Connections.java (100%)
 copy {gremlin-driver/src/main/java/examples => 
gremlin-examples/gremlin-java}/ModernTraversals.java (100%)
 copy {gremlin-driver/src/main/java/examples => 
gremlin-examples/gremlin-java}/pom.xml (93%)
 copy {gremlin-javascript/examples/node => 
gremlin-examples/gremlin-javascript}/.gitignore (100%)
 copy {gremlin-javascript/examples/node => 
gremlin-examples/gremlin-javascript}/basic-gremlin.js (75%)
 copy {gremlin-javascript/examples/node => 
gremlin-examples/gremlin-javascript}/connections.js (79%)
 copy {gremlin-javascript/examples/node => 
gremlin-examples/gremlin-javascript}/modern-traversals.js (96%)
 create mode 100644 gremlin-examples/gremlin-javascript/package-lock.json
 copy {gremlin-javascript/examples/node => 
gremlin-examples/gremlin-javascript}/package.json (92%)
 copy {gremlin-python/src/main/python/examples => 
gremlin-examples/gremlin-python}/basic_gremlin.py (78%)
 copy {gremlin-python/src/main/python/examples => 
gremlin-examples/gremlin-python}/connections.py (74%)
 copy {gremlin-python/src/main/python/examples => 
gremlin-examples/gremlin-python}/modern_traversals.py (100%)
 copy gremlin-python/src/main/python/gremlin_python/driver/aiohttp/__init__.py 
=> gremlin-examples/gremlin-python/requirements.txt (97%)
 create mode 100644 gremlin-python/src/main/python/pyproject.toml
 delete mode 100644 gremlin-python/src/main/python/setup.cfg
 delete mode 100644 gremlin-python/src/main/python/setup.py
 copy 
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/{GremlinSessionTxIntegrateTest.java
 => AbstractSessionTxIntegrateTest.java} (94%)
 delete mode 100644 
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateWithUnifiedChannelizerTest.java
 copy 
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/{BaseScriptForTesting.java
 => GremlinSessionReuseTxIntegrateTest.java} (51%)

Reply via email to