You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ly...@apache.org on 2022/04/27 02:25:47 UTC

[tinkerpop] branch 3.5-dev updated (6915334101 -> eee41140ec)

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

lyndonb pushed a change to branch 3.5-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


    from 6915334101 Ensured that the GraphTraversalSource was initialized for tx() operations when parsing. CTR
     new 6cb3e9aca8 AN-1064 base TraversalStrategy
     new dc15a17214 AN-1064 base TraversalStrategy
     new f518101a97 AN-1064 licences
     new 254d2412df AN-1064 base TraversalStrategy
     new 896fdabc4e AN-1064 fix error handling in Iterate()
     new 8e709cd96b AN-1066 Optimization strategies definition
     new bac8657861 AN-1066 cleanup and unit test
     new 23d83b3da0 improve comment
     new fe89838842 Update gremlin-go/driver/strategies.go
     new e611f75cee Update gremlin-go/driver/strategies.go
     new 59f86313bd Update gremlin-go/driver/strategies.go
     new 59e386c9a7 Update gremlin-go/driver/strategies.go
     new 16c0c8797a Apply suggestions from code review
     new dfad0dc520 Apply suggestions from code review
     new 3e7208f782 Apply suggestions from code review
     new cc96e99083 AN-1067 Verification related TraversalStrategy's
     new c69208eee9 AN-1068 decoration strategy (#59)
     new 3d642631fc AN-1069 finalization strategy
     new 38e6e618b6 Added Sessions Functionality (#56)
     new 89a8c84c5c AN-1018 Implement Bindings (#60)
     new b9d1b34a39 Updated docker command in README.md (#65)
     new f65023a850 Connection pooling (#61)
     new 84857dfcfe AN-1071 add cucumber suite into go test framework (#64)
     new 7db841389e Fix merge issues from rebasing 3.5-dev back
     new e374fc9e0f Added Localization for Errors in Driver with Documentation (#63)
     new df8de805dc Remote transactions
     new 541ac994fb Fix issue in log levels ignored in some cases (#70)
     new 90f263b7ea Changes to log levels for some lines (#72)
     new 351a6b39c7 Custom Connection Timeout in DriverRemoteConnection (#69)
     new 0296dd79d9 refactor .Iterate()
     new c61da67910 turn off transaction tests
     new 0ceeb8513c Merge pull request #76 from lyndonbauto/valentyn/AN-1088-adjust-iterate
     new 2566b1b193 Export TraversalStrategy and remove TraversalStrategies (#75)
     new 5e328959ec AN-1058 Set Up Docker Server For Integration Tests (#73)
     new f3bc1477dd re-enable all github actions
     new 1a5d61c5ae Fixing conflicts with 3.5-dev and gremlin-go-ms5
     new ab8bd6014b Migrating gremlin-go/Dockerfile to 3.5.4.
     new c5fd128266 Added exclusion for symlink file that causes an issue on Windows
     new f7ece2cce1 Removing license from symlink
     new f2d018d827 Restoring symlink for gremlin-console script
     new 58e6d2710f Restoring symlink for gremlin-console script
     new 12df6fbfaf Intermittent map comparison failure fix
     new eee41140ec Merge pull request #1619 from lyndonbauto/gremlin-go-ms5

The 17762 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:
 .github/workflows/build-test.yml                   |   19 +-
 .../traversal/translator/GolangTranslator.java     |   28 +-
 gremlin-go/Dockerfile                              |   39 +
 gremlin-go/build/generate.groovy                   |    2 +-
 gremlin-go/cucumber/go.mod                         |   41 -
 gremlin-go/cucumber/go.sum                         |  326 ---
 gremlin-go/cucumber/gremlin.go                     |  748 ------
 gremlin-go/design.md                               |   23 +-
 gremlin-go/docker-compose.yml                      |   43 +-
 gremlin-go/docker/docker-entrypoint.sh             |   41 +
 .../docker/gremlin-server-integration-secure.yaml  |   74 +
 gremlin-go/docker/gremlin-server-integration.yaml  |   66 +
 gremlin-go/driver/anonymousTraversal.go            |    2 +-
 gremlin-go/driver/bytecode.go                      |   45 +-
 gremlin-go/driver/bytecode_test.go                 |   20 +-
 gremlin-go/driver/client.go                        |   92 +-
 gremlin-go/driver/client_test.go                   |    5 +-
 gremlin-go/driver/connection.go                    |   77 +-
 gremlin-go/driver/connectionPool.go                |  147 ++
 gremlin-go/driver/connectionPool_test.go           |  162 ++
 gremlin-go/driver/connection_test.go               |  511 +++-
 .../cucumber/cucumberSteps_test.go}                |   68 +-
 .../cucumber/cucumberWorld.go}                     |   44 +-
 gremlin-go/driver/cucumber/gremlin.go              | 2536 ++++++++++++++++++++
 gremlin-go/driver/driverRemoteConnection.go        |  123 +-
 gremlin-go/driver/error_codes.go                   |  124 +
 gremlin-go/driver/gorillaTransporter.go            |   54 +-
 gremlin-go/driver/gorillaTransporter_test.go       |   33 +-
 gremlin-go/driver/graph.go                         |    7 +-
 gremlin-go/driver/graphBinary.go                   |  168 +-
 gremlin-go/driver/graphBinary_test.go              |   20 +-
 gremlin-go/driver/graphTraversal.go                |  109 +-
 gremlin-go/driver/graphTraversalSource.go          |   58 +-
 gremlin-go/driver/graph_test.go                    |    8 +-
 gremlin-go/driver/logger.go                        |   23 +-
 gremlin-go/driver/protocol.go                      |   86 +-
 gremlin-go/driver/protocol_test.go                 |   11 +-
 gremlin-go/driver/request.go                       |   61 +-
 gremlin-go/driver/resources/error-messages/en.json |   51 +
 .../driver/resources/{ => logger-messages}/en.json |   19 +-
 gremlin-go/driver/result.go                        |   17 +-
 gremlin-go/driver/resultSet.go                     |    8 +-
 gremlin-go/driver/resultSet_test.go                |   83 +-
 gremlin-go/driver/serializer.go                    |    8 +-
 gremlin-go/driver/serializer_test.go               |    5 +-
 gremlin-go/driver/strategies.go                    |  337 +++
 gremlin-go/driver/strategies_test.go               |  392 +++
 gremlin-go/driver/transporter.go                   |    3 -
 gremlin-go/driver/transporterFactory.go            |    9 +-
 gremlin-go/driver/traversal.go                     |   54 +-
 gremlin-go/driver/traversal_test.go                |  376 ++-
 gremlin-go/go.mod                                  |    9 +-
 gremlin-go/go.sum                                  |    7 +-
 gremlin-go/pom.xml                                 |   21 -
 pom.xml                                            |    1 +
 55 files changed, 5769 insertions(+), 1675 deletions(-)
 create mode 100644 gremlin-go/Dockerfile
 delete mode 100644 gremlin-go/cucumber/go.mod
 delete mode 100644 gremlin-go/cucumber/go.sum
 delete mode 100644 gremlin-go/cucumber/gremlin.go
 create mode 100644 gremlin-go/docker/docker-entrypoint.sh
 create mode 100644 gremlin-go/docker/gremlin-server-integration-secure.yaml
 create mode 100644 gremlin-go/docker/gremlin-server-integration.yaml
 create mode 100644 gremlin-go/driver/connectionPool.go
 create mode 100644 gremlin-go/driver/connectionPool_test.go
 rename gremlin-go/{cucumber/featureSteps_test.go => driver/cucumber/cucumberSteps_test.go} (91%)
 rename gremlin-go/{cucumber/tinkerPopWorld.go => driver/cucumber/cucumberWorld.go} (86%)
 create mode 100644 gremlin-go/driver/cucumber/gremlin.go
 create mode 100644 gremlin-go/driver/error_codes.go
 create mode 100644 gremlin-go/driver/resources/error-messages/en.json
 rename gremlin-go/driver/resources/{ => logger-messages}/en.json (61%)
 create mode 100644 gremlin-go/driver/strategies.go
 create mode 100644 gremlin-go/driver/strategies_test.go