You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/09/01 20:47:55 UTC

[tinkerpop] branch TINKERPOP-1641 updated (cefb188 -> d56228e)

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

spmallette pushed a change to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


 discard cefb188  fixed some build issues after rebase on master related to removal of templating for GLVs
 discard 665df08  Fixed docker/gremlin-server.sh path issues
 discard 99298bd  TINKERPOP-1641 Updated dev docs to include libkrb5-dev and krb5-user
 discard c5efc3a  TINKERPOP-1641 added exclusion for asm
 discard 2835264  Revert "Revert "Adds more travis deps needed for installing PYPI:kerberos""
 discard bfc61d5  Revert "Adds more travis deps needed for installing PYPI:kerberos"
 discard b115cf4  Adds more travis deps needed for installing PYPI:kerberos
 discard 1d499c3  Removes tornado again from python venv because it requires additional apt packages in travis and there are no tests for the tornado functionality
 discard 9a045a1  Adds libkrb5-dev dependency to travis
 discard 4e7d0b2  Minor revert code formatting
 discard abd3e6a  Small textual changes
 discard aea6b7c  Moves KdcFixture to gremlin-test to allow for access by GLV's
     add dd012bb  pinned pyparsing - 3.0.x alpha releases seem to cause breaks in the build CTR
     add b992179  Merge branch '3.4-dev'
     add f6208b1  Set Logger to INFO for shouldBlockAdditionalRequestsDuringClose test
     add d48ef36  Merge branch '3.4-dev'
     add ae95dbe  Update README.md
     add da54af0  Merge branch '3.4-dev'
     add 565e573  Added neo4j/tx tests to travis Gremlin Server build
     add 9ccac59  Merge branch '3.4-dev'
     add b922f89  Skip unit tests since they get run on standard builds in Travis
     add 11001d7  Merge branch '3.4-dev'
     add 4eead78  Minor fixes to transaction/session integration tests.
     add 99a9bee  Added support for dict as keys, as required by the following example statement: g.V().as_('a').out().as_('b').out().as_('c').dedup('a','b','c').groupCount().by(select('a', 'b').by(valueMap(True))).toList()
     add a387dd0  TINKERPOP-2407 Added deserialization support for dict as keys
     add c4754ed  Merge pull request #1314 from apache/TINKERPOP-2407
     add 9d2811a  Added more project() examples to docs CTR
     add b25f7ac  Merge branch '3.4-dev'
     add 86c79ea  Added math() to GLV tests
     add 64c95ba  Merge branch '3.4-dev'
     add 7da6df9  Moves KdcFixture to gremlin-test to allow for access by GLV's
     add 36c22d4  Small textual changes
     add 558681f  Minor revert code formatting
     add f73e570  Adds libkrb5-dev dependency to travis
     add 6f000b5  Removes tornado again from python venv because it requires additional apt packages in travis and there are no tests for the tornado functionality
     add 3cec752  Adds more travis deps needed for installing PYPI:kerberos
     add d9f67f7  Revert "Adds more travis deps needed for installing PYPI:kerberos"
     add 6c9d0bd  Revert "Revert "Adds more travis deps needed for installing PYPI:kerberos""
     add b48ca1d  TINKERPOP-1641 added exclusion for asm
     add 35f3623  TINKERPOP-1641 Updated dev docs to include libkrb5-dev and krb5-user
     add 455803a  Fixed docker/gremlin-server.sh path issues
     add d56228e  fixed some build issues after rebase on master related to removal of templating for GLVs

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   (cefb188)
            \
             N -- N -- N   refs/heads/TINKERPOP-1641 (d56228e)

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:
 .travis.yml                                        |   6 +-
 CHANGELOG.asciidoc                                 |   1 +
 docs/src/reference/gremlin-variants.asciidoc       |   4 +-
 docs/src/reference/the-traversal.asciidoc          |  14 ++-
 docs/src/upgrade/release-3.5.x.asciidoc            |  14 +++
 .../Gherkin/CommonSteps.cs                         |   2 +-
 .../main/javascript/gremlin-javascript/README.md   |  66 +++++++++++
 .../test/cucumber/feature-steps.js                 |   2 +-
 .../gremlin_python/structure/io/graphbinaryV1.py   |   3 +-
 .../gremlin_python/structure/io/graphsonV3d0.py    |   4 +-
 .../{driver/transport.py => structure/io/util.py}  |  45 +++----
 gremlin-python/src/main/python/setup.py            |   1 +
 .../tests/driver/test_driver_remote_connection.py  |  12 +-
 .../server/GremlinServerSessionIntegrateTest.java  |   2 +-
 gremlin-test/features/map/Math.feature             | 130 +++++++++++++++++++++
 .../process/traversal/step/map/MathTest.java       |   2 +-
 .../gremlin/process/FeatureCoverageTest.java       |   2 +
 17 files changed, 267 insertions(+), 43 deletions(-)
 copy gremlin-python/src/main/python/gremlin_python/{driver/transport.py => structure/io/util.py} (60%)
 create mode 100644 gremlin-test/features/map/Math.feature