This is an automated email from the ASF dual-hosted git repository.
kenhuuu pushed a change to branch runtime-docs
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 74332ad246 Added runtime documentation
add c0962da323 Added missing test annotations
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
new 0dcfc50c5f Added runtime documentation
new 57cd547100 Update recommended versions to be more accurate
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 (74332ad246)
\
N -- N -- N refs/heads/runtime-docs (57cd547100)
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.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGELOG.asciidoc | 4 +
docs/site/home/download.html | 6 +-
.../dev/developer/development-environment.asciidoc | 8 +
docs/src/dev/developer/release.asciidoc | 9 +
docs/src/reference/gremlin-variants.asciidoc | 250 ++++++++++++++++-----
docs/src/reference/the-traversal.asciidoc | 17 +-
docs/src/upgrade/release-3.7.x.asciidoc | 40 +++-
.../traversal/dsl/graph/GraphTraversal.java | 4 +
.../gremlin/process/traversal/dsl/graph/__.java | 4 +
.../io/graphson/GraphSONSerializersV1.java | 5 +-
.../io/graphson/GraphSONSerializersV2.java | 5 +-
.../io/graphson/GraphSONSerializersV3.java | 4 +-
.../Examples/BasicGremlin/BasicGremlin.csproj | 2 +-
.../Examples/Connections/Connections.csproj | 2 +-
.../ModernTraversals/ModernTraversals.csproj | 2 +-
.../Process/Traversal/GraphTraversal.cs | 2 +
.../src/Gremlin.Net/Process/Traversal/__.cs | 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 | 0
.../gremlin-javascript}/connections.js | 0
.../gremlin-javascript}/modern-traversals.js | 0
.../gremlin-javascript/package-lock.json | 220 ++++++++++++++++++
.../gremlin-javascript}/package.json | 2 +-
.../gremlin-python}/basic_gremlin.py | 0
.../gremlin-python}/connections.py | 0
.../gremlin-python}/modern_traversals.py | 0
.../gremlin-python/requirements.txt | 4 +-
gremlin-go/driver/gorillaTransporter.go | 4 +-
gremlin-go/examples/go.mod | 6 +-
gremlin-go/examples/go.sum | 10 +-
gremlin-javascript/examples/node/package-lock.json | 53 ++---
gremlin-javascript/examples/node/package.json | 2 +-
.../gremlin-javascript/lib/driver/connection.js | 17 +-
.../lib/process/graph-traversal.js | 6 +
gremlin-python/docker-compose.yml | 11 +-
gremlin-python/pom.xml | 6 +-
.../src/main/python/examples/requirements.txt | 12 +-
.../src/main/python/gremlin_python/__init__.py | 1 +
.../gremlin_python/process/graph_traversal.py | 49 ++++
gremlin-python/src/main/python/pyproject.toml | 76 +++++++
gremlin-python/src/main/python/setup.cfg | 22 --
gremlin-python/src/main/python/setup.py | 91 --------
gremlin-server/scripts/empty-sample-secure.groovy | 8 +-
.../traversal/step/map/ConnectedComponentTest.java | 3 +
.../process/traversal/step/map/ProgramTest.java | 3 +
62 files changed, 755 insertions(+), 275 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 (100%)
copy {gremlin-javascript/examples/node =>
gremlin-examples/gremlin-javascript}/connections.js (100%)
copy {gremlin-javascript/examples/node =>
gremlin-examples/gremlin-javascript}/modern-traversals.js (100%)
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 (100%)
copy {gremlin-python/src/main/python/examples =>
gremlin-examples/gremlin-python}/connections.py (100%)
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