This is an automated email from the ASF dual-hosted git repository.
Cole-Greer pushed a change to branch remove-mono
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
omit 308adfd2c8 simplify docs
omit 6cb98c0ceb Add nuget.apiKey property to release doc deploy commands
omit 5c6d3d4853 Use -Dnuget.apiKey Maven property with fail-fast check
omit 441ca237c2 Document why NUGET_API_KEY is passed explicitly, not via
config
omit e1e07cd645 Add CHANGELOG entry for Mono removal from dotnet build
omit c84d7cd4b5 Remove Mono from Docker image and update .NET release docs
omit e01fda027a Replace mono nuget.exe pack/push with dotnet CLI
add ef3658c43e TINKERPOP-3273 Align hasId() collection unrolling with
V()/E() (#3546)
add 5cd197263a Fix reference documentation inaccuracies (#3538)
add de229bd5f2 TINKERPOP-3185 Fix PeerPressure.property_name token in
gremlin-python (#3545)
add 75429ec525 Fix gremlin-go PartitionStrategy panic and gremlin-python
ProductiveByStrategy (#3531)
add 5349dbb89d Deprecate ProductiveByStrategy (#3544)
add 0bf18b2ff7 Fix stale fail() Step console output to include message
argument
add 22cd119160 Remove stale/incorrect absent-key null-sort claim from
order()-step docs
add 653545b993 Minor adjustments to dateDiff docs. CTR
add 4b29b5f361 Add server-start prerequisite to Connecting via Console
section
add a7a6158612 TINKERPOP-3275 Fix gremlin-python GraphBinary
BigInteger/BigDecimal serialization (#3539)
add c81f7c343f TINKERPOP-3277: Fix gremlin-go GraphBinary serialization of
zero BigInteger/BigDecimal (#3540)
add 3a216a7fb7 Fix automatic GLV version propagation (#3547)
add 816cfc886d TINKERPOP-3271 `subgraph()` throws a descriptive error for
non-Edge input (#3556)
add 3da541fb46 Replace mono nuget.exe pack/push with dotnet CLI
add a2ed46c0f9 Remove Mono from Docker image and update .NET release docs
add 922378903e Add CHANGELOG entry for Mono removal from dotnet build
add 761718508f Document why NUGET_API_KEY is passed explicitly, not via
config
add f35cb84787 Use -Dnuget.apiKey Maven property with fail-fast check
add 091002fb87 Add nuget.apiKey property to release doc deploy commands
add ad4cb50390 simplify docs
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 (308adfd2c8)
\
N -- N -- N refs/heads/remove-mono (ad4cb50390)
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 | 11 +++-
docs/src/dev/developer/release.asciidoc | 7 +--
docs/src/reference/gremlin-applications.asciidoc | 31 +++++++----
docs/src/reference/gremlin-variants.asciidoc | 40 +++++++--------
docs/src/reference/implementations-neo4j.asciidoc | 2 +-
.../reference/implementations-tinkergraph.asciidoc | 8 +--
docs/src/reference/intro.asciidoc | 2 +-
docs/src/reference/the-graphcomputer.asciidoc | 4 +-
docs/src/reference/the-traversal.asciidoc | 37 ++++++-------
docs/src/upgrade/release-3.7.x.asciidoc | 43 ++++++++++++++++
.../traversal/dsl/graph/GraphTraversal.java | 31 ++++-------
.../traversal/step/sideEffect/SubgraphStep.java | 10 +++-
.../optimization/ProductiveByStrategy.java | 3 ++
.../process/traversal/step/filter/HasStepTest.java | 3 +-
.../Strategy/Optimization/ProductiveByStrategy.cs | 2 +
.../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 2 +
.../apache/tinkerpop/gremlin/driver/Settings.java | 6 +--
gremlin-go/driver/cucumber/gremlin.go | 2 +
gremlin-go/driver/graphBinary.go | 2 +-
gremlin-go/driver/graphBinary_test.go | 28 ++++++++++
gremlin-go/driver/strategies.go | 7 ++-
gremlin-go/driver/strategies_test.go | 31 +++++++++++
gremlin-javascript/pom.xml | 24 ++++++---
.../lib/process/traversal-strategy.js | 4 ++
.../gremlin-javascript/test/cucumber/gremlin.js | 2 +
gremlin-python/pom.xml | 41 +++++++++++++++
.../src/main/python/gremlin_python/__init__.py | 2 +-
.../python/gremlin_python/process/strategies.py | 7 +++
.../python/gremlin_python/process/traversal.py | 2 +-
.../gremlin_python/structure/io/graphbinaryV1.py | 18 +++----
.../src/main/python/tests/feature/gremlin.py | 2 +
.../python/tests/unit/io/test_graphbinaryV1.py | 37 +++++++++++++
.../python/tests/unit/process/test_strategies.py | 12 +++++
.../gremlin/test/features/filter/HasId.feature | 16 +++++-
.../test/features/sideEffect/Inject.feature | 19 ++++++-
gremlint/pom.xml | 37 +++++++------
.../sideEffect/TinkerGraphSubgraphStepTest.java | 60 ++++++++++++++++++++++
.../tinkergraph/structure/TinkerGraphTest.java | 32 ++++++++++++
38 files changed, 495 insertions(+), 132 deletions(-)
create mode 100644
tinkergraph-gremlin/src/test/java/org/apache/tinkerpop/gremlin/tinkergraph/process/traversal/step/sideEffect/TinkerGraphSubgraphStepTest.java