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

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


 discard 0a3f31f358 Bump codecov/codecov-action from 2 to 3
     add 43e480c95a Bumped to 1.12.1 of frontend-maven-plugin CTR
     add 8c218af48a TINKERPOP-2741 Fix GraphMLWriter error message
     add b170271060 Updated some dpendencies: chai, grunt-cli, prettier CTR
     add 3436b3f80a Serialization refactoring (#1648)
     add 60dd5f966a Fix for boolean writes
     add cf653e303d Bump Microsoft.NET.Test.Sdk from 17.1.0 to 17.2.0 in 
/gremlin-dotnet
     add 1a6618f5db Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.NET.Test.Sdk-17.2.0' into 
3.5-dev
     add ede36bb254 Bump System.Text.Json from 6.0.3 to 6.0.4 in /gremlin-dotnet
     add d90a2e0e04 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-6.0.4' into 3.5-dev
     add b2c050fd33 Adjust export of enum traversal operations (#1650)
     add f59c47cab9 refactor ResultSet.One() to handle nil result (#1653)
     add ad6b3b7d4d Add named parameters for strategies in Gremlin-Go and 
updated translator (#1664)
     add c8db98c5f9 Gremlin-Go: Added support for additional types (#1663)
     add aa2820bc4c Adding strategy support to cucumber world for gremlin-go
     add e2bba8f3a5 Bump Moq from 4.17.2 to 4.18.1 in /gremlin-dotnet
     add ce9499467a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/Moq-4.18.1' into 3.5-dev
     add 104510a12e Fix deadlock on non response-specific read errors (#1669)
     add e991b66064 Invoking CTR as this is simple documentation and Bytecode 
exporting
     add c0fe76ba53 adding v3 back to go.mod
     add 4927388e0c updating pathing for cucumber versions
     add 6b0169e37b Gremlin-Go: Updated Docker Testing Set Up (#1665)
     add 5fb7888f4e Added getters to high and low properties in RangeLocalStep 
(#1667)
     add e930834a9f Bump codecov/codecov-action from 2 to 3

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   (0a3f31f358)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/3.5-dev/codecov/codecov-action-3 
(e930834a9f)

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:
 .github/codecov.yml                                |   12 +-
 .github/workflows/build-test.yml                   |    5 +-
 .gitignore                                         |    1 +
 CHANGELOG.asciidoc                                 |    1 +
 docs/src/reference/gremlin-variants.asciidoc       |  132 +-
 .../process/traversal/step/map/RangeLocalStep.java |    9 +
 .../traversal/translator/GolangTranslator.java     |   32 +-
 .../structure/io/graphml/GraphMLWriter.java        |    3 +-
 .../traversal/translator/GolangTranslatorTest.java |    6 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |    2 +-
 .../Gremlin.Net.IntegrationTest.csproj             |    2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj    |    2 +-
 .../Gremlin.Net.UnitTest.csproj                    |    4 +-
 gremlin-go/Dockerfile                              |   18 +-
 gremlin-go/README.md                               |   35 +-
 gremlin-go/build/generate.groovy                   |    2 +-
 gremlin-go/docker-compose.yml                      |   14 +-
 gremlin-go/docker/docker-entrypoint.sh             |    2 +
 .../docker/gremlin-server-integration-secure.yaml  |   15 +-
 gremlin-go/docker/gremlin-server-integration.yaml  |   17 +-
 gremlin-go/driver/anonymousTraversal.go            |    2 +-
 gremlin-go/driver/bytecode.go                      |   22 +-
 gremlin-go/driver/bytecode_test.go                 |   40 +-
 gremlin-go/driver/client.go                        |    4 +-
 gremlin-go/driver/client_test.go                   |    3 +-
 gremlin-go/driver/connection.go                    |    7 +-
 gremlin-go/driver/connection_test.go               |  102 +-
 gremlin-go/driver/cucumber/cucumberSteps_test.go   |    6 +-
 gremlin-go/driver/cucumber/cucumberWorld.go        |   44 +-
 gremlin-go/driver/cucumber/gremlin.go              |  376 +++---
 gremlin-go/driver/driverRemoteConnection.go        |   18 +-
 gremlin-go/driver/error_codes.go                   |    2 +-
 gremlin-go/driver/graphBinary.go                   | 1288 +++++++++++---------
 gremlin-go/driver/graphBinary_test.go              |  472 +++----
 gremlin-go/driver/graphTraversal.go                |  213 ++--
 gremlin-go/driver/graphTraversalSource.go          |   44 +-
 gremlin-go/driver/performance/performanceSuite.go  |    2 +-
 gremlin-go/driver/protocol.go                      |    4 +-
 gremlin-go/driver/request.go                       |    4 +-
 gremlin-go/driver/resultSet.go                     |   28 +-
 gremlin-go/driver/resultSet_test.go                |   12 +-
 gremlin-go/driver/serializer.go                    |  245 ++--
 gremlin-go/driver/serializer_test.go               |   21 -
 gremlin-go/driver/strategies.go                    |  209 ++--
 gremlin-go/driver/strategies_test.go               |   39 +-
 gremlin-go/driver/traversal.go                     |  273 +++--
 gremlin-go/driver/traversal_test.go                |   20 +-
 gremlin-go/example/example.go                      |    5 +-
 gremlin-go/go.mod                                  |    2 +-
 gremlin-go/run.sh                                  |   50 +
 gremlin-go/wait-for-server.sh                      |   60 +
 gremlin-javascript/pom.xml                         |    2 +-
 .../gremlin-javascript/package-lock.json           | 1086 +----------------
 .../javascript/gremlin-javascript/package.json     |    6 +-
 .../tinkerpop/gremlin/structure/io/IoTest.java     |    2 +-
 55 files changed, 2284 insertions(+), 2743 deletions(-)
 create mode 100755 gremlin-go/run.sh
 create mode 100755 gremlin-go/wait-for-server.sh

Reply via email to