This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/docs/gremlint/master/web-vitals-4.0.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard cd44722df4 --- updated-dependencies: - dependency-name: web-vitals
dependency-type: direct:production update-type: version-update:semver-major
...
add a0e6869a83 Refactor mutation events registration by moving reusable
code from relevant steps to EventUti
add bd5836a5bc Minor formatting/javadoc CTR
add 09f821f1ca Merge branch '3.7-dev'
add 1f9ce19ae0 Open NoOpBarrierStep for extensibility
add a12ae55e93 Merge branch '3.7-dev'
add 1ea4cdaed1 Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in
/gremlin-go (#2511)
add ffd6877b5d Bump github.com/cucumber/godog from 0.14.0 to 0.14.1 in
/gremlin-go (#2581)
add 6afa257740 Bump golang.org/x/text from 0.14.0 to 0.15.0 in /gremlin-go
(#2587)
add 20cd01ed59 Merge remote-tracking branch 'origin/3.6-dev' into 3.7-dev
add 2bd81d6145 Merge branch '3.7-dev'
add 68aed2aace Adding Getter for fields of IntersectStep and DisjunctStep.
add cf6669a142 Merge branch '3.7-dev'
add d81b6003b4 Fixing connection cleanup in case of mass connection
breaking.
add e7f184646d Updated CHANGELOG CTR
add e37f9a8de0 Merge branch '3.6-dev' into 3.7-dev
add a4adbde129 Merge branch '3.7-dev'
add 612e431f5f Bump Polly from 8.3.1 to 8.4.0 in /gremlin-dotnet
add 60de0d2891 Merge branch
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.4.0' into 3.6-dev
add ec7b0832ee Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 in
/gremlin-dotnet
add a9b85af343 Merge branch
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.NET.Test.Sdk-17.10.0' into
3.6-dev
add 061fad9bbf Bump xunit from 2.8.0 to 2.8.1 in /gremlin-dotnet
add d5cc03d630 Merge branch
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.8.1' into 3.6-dev
add 4b5dab8530 Bump xunit.runner.visualstudio from 2.8.0 to 2.8.1 in
/gremlin-dotnet
add 9341370c21 Merge branch
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.8.1' into
3.6-dev
add 299bab5544 Merge branch '3.6-dev' into 3.7-dev
add 84d1005fb4 Merge branch '3.7-dev'
add 977d14bb98 --- updated-dependencies: - dependency-name: web-vitals
dependency-type: direct:production update-type: version-update:semver-major
...
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 (cd44722df4)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/docs/gremlint/master/web-vitals-4.0.1
(977d14bb98)
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 | 4 +-
.../process/traversal/step/filter/DropStep.java | 36 +---
.../traversal/step/map/AddEdgeStartStep.java | 8 +-
.../process/traversal/step/map/AddEdgeStep.java | 8 +-
.../traversal/step/map/AddVertexStartStep.java | 8 +-
.../process/traversal/step/map/AddVertexStep.java | 8 +-
.../process/traversal/step/map/DisjunctStep.java | 8 +
.../process/traversal/step/map/IntersectStep.java | 8 +
.../process/traversal/step/map/MergeEdgeStep.java | 21 +-
.../traversal/step/map/MergeVertexStep.java | 18 +-
.../traversal/step/map/NoOpBarrierStep.java | 12 +-
.../traversal/step/sideEffect/AddPropertyStep.java | 83 ++++----
.../traversal/step/util/event/EventUtil.java | 218 +++++++++++++++++++++
gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
.../Gremlin.Net.IntegrationTest.csproj | 6 +-
.../Gremlin.Net.Template.IntegrationTest.csproj | 6 +-
.../Gremlin.Net.UnitTest.csproj | 6 +-
.../tinkerpop/gremlin/driver/ConnectionPool.java | 24 +--
gremlin-go/go.mod | 8 +-
gremlin-go/go.sum | 17 +-
20 files changed, 337 insertions(+), 172 deletions(-)
create mode 100644
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/event/EventUtil.java