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

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


    from 0d3211514d Merge branch '3.5-dev' into 3.6-dev
     add a106fd5e67 AN-1103 configurable websocket compression
     add ad9fa199b9 AN-1102 allow to set buffers size
     add fe7f6703ed Merge pull request #77 from 
lyndonbauto/valentyn/AN-1103-ws-conn-config
     add aa55146157 Minor code clean-up (#78)
     add 67db228f6a improve integration tests (#80)
     add 26d6dee919 fixed comment for Iterate() (#81)
     add 9723c7cce3 DataType should not be exported (#84)
     add 76e51ca38d update doc for development topic (#83)
     add 4f020998cc WIthOptions support and testing (#91)
     add 1eb1db26e0 update connection timeout
     add a0163dbe16 Connection pool improvements (#87)
     add 0f9e368bdf Make one public (One) (#85)
     add 117d301437 Clarify error message (#93)
     add 16cd652ab0 update README (#88)
     add bd44c56cd5 readme troubleshooting (#95)
     add e7c5f4adcf Session spawnable only from driverRemoteConnections and 
Session mirrors Parent DRC settings (#90)
     add 1b0bf4aa4c AN-992-Performance Testing (#86)
     add 306c51bae9 Documentation update (#94)
     add d166a1d15d added examples to intro section (#96)
     add b2b536f747 Update performanceSuite.go (#97)
     add 4be6c0f9f8 Removing outdated TODO from README (#98)
     add 5f5fdc96cc update dependencies (#99)
     add 985d9d6077 Java PerformanceTest code (#89)
     add c8c1cdea5d Fix minor doc errors and missing namespace
     add b3d378b7ad Add Codecov for Tinkerpop/Gremlin-Go (#101)
     add ae0897c96a Update Performance Suite (#102)
     add 16deadc451 Java Performance Testing
     add 0e225c5e79 Addressed Milestone 6 code review comments
     add 2eee3f4398 Merge pull request #1639 from lyndonbauto/gremlin-go-ms6
     new ffab0f434c Merge branch '3.5-dev' into 3.6-dev

The 1 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:
 .../codecov.yml                                    |   4 +-
 .github/workflows/build-test.yml                   |   5 +
 .../dev/developer/development-environment.asciidoc |  17 +
 docs/src/dev/developer/release.asciidoc            |   3 +
 docs/src/reference/gremlin-applications.asciidoc   |  16 +-
 docs/src/reference/gremlin-variants.asciidoc       | 299 ++++++++++++-
 docs/src/reference/intro.asciidoc                  |  22 +-
 docs/static/images/gremlin-go.png                  | Bin 0 -> 35389 bytes
 .../tinkerpop/gremlin/util/PerformanceTest.java    | 252 +++++++++++
 gremlin-go/Dockerfile                              |  21 +-
 gremlin-go/README.md                               | 309 ++++++--------
 gremlin-go/docker-compose.yml                      |   4 +-
 .../docker}/generate-all.groovy                    |  15 +-
 .../docker/gremlin-server-integration-secure.yaml  |   1 +
 gremlin-go/docker/gremlin-server-integration.yaml  |   1 +
 gremlin-go/driver/client.go                        |  62 ++-
 gremlin-go/driver/client_test.go                   |   2 +-
 gremlin-go/driver/connection.go                    |   5 +-
 gremlin-go/driver/connectionPool.go                | 164 ++++---
 gremlin-go/driver/connectionPool_test.go           |  28 --
 gremlin-go/driver/connection_test.go               | 153 ++++---
 gremlin-go/driver/driverRemoteConnection.go        | 128 +++---
 gremlin-go/driver/error_codes.go                   |   5 +
 gremlin-go/driver/gorillaTransporter.go            |  14 +-
 gremlin-go/driver/graphBinary.go                   | 292 ++++++-------
 gremlin-go/driver/graphBinary_test.go              |   8 +-
 gremlin-go/driver/graphTraversalSource.go          |   2 +-
 gremlin-go/driver/logger.go                        |   7 +-
 gremlin-go/driver/performance/performanceSuite.go  | 470 +++++++++++++++++++++
 gremlin-go/driver/protocol.go                      |  24 +-
 gremlin-go/driver/resources/error-messages/en.json |   5 +-
 .../driver/resources/logger-messages/en.json       |  11 +-
 gremlin-go/driver/resultSet.go                     |   7 +-
 gremlin-go/driver/resultSet_test.go                |  10 +-
 gremlin-go/driver/serializer.go                    |   7 +-
 gremlin-go/driver/strategies.go                    |   8 +-
 gremlin-go/driver/traversal.go                     |  37 +-
 gremlin-go/driver/traversal_test.go                | 152 +++++++
 .../transporterFactory.go => example/example.go}   |  43 +-
 gremlin-go/example/go.mod                          |  29 ++
 gremlin-go/{ => example}/go.sum                    |  20 +-
 gremlin-go/go.mod                                  |   4 +-
 gremlin-go/go.sum                                  |  13 +-
 43 files changed, 1991 insertions(+), 688 deletions(-)
 copy 
gremlin-server/src/test/resources/org/apache/tinkerpop/gremlin/server/custom-gremlin-server.yaml
 => .github/codecov.yml (96%)
 create mode 100644 docs/static/images/gremlin-go.png
 create mode 100644 
gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/util/PerformanceTest.java
 copy {gremlin-server/src/test/scripts => 
gremlin-go/docker}/generate-all.groovy (88%)
 create mode 100644 gremlin-go/driver/performance/performanceSuite.go
 copy gremlin-go/{driver/transporterFactory.go => example/example.go} (52%)
 create mode 100644 gremlin-go/example/go.mod
 copy gremlin-go/{ => example}/go.sum (94%)

Reply via email to