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 2021/12/16 13:55:58 UTC

[tinkerpop] branch 3.5-dev updated (459067c -> fee9056)

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

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


    from 459067c  Merge branch '3.4-dev' into 3.5-dev
     add 18bdf7d  change aiohttp requirements due to vulnerability issue at 3.7.4
     add 11f2b6e  Merge branch 'pr-1519' into 3.5-dev
     add 6f45069  Source: [1] Added transaction profile to pom.xml [2] Made DriverRemoteConnection latch parameters so they can be reused to create a subsequent session [3] Added logging throughout the driver [4] Added commit and rollback to DriverRemoteConnection [5] Added some logging to receive message [6] Added transaction support to RemoteConnection [7] Added bytecode support to Session processor [8] Fixed bug in aiohttp transport layer that popped up when it was not shutdown properl [...]
     add dd796be  [1] Fixed TEST_TRANSACTION environment variable [2] Enabling transaction tests in GitHub actions
     add 2594cf5  [1] Added session support to string messages. This was unintentionally removed.
     add d1e3abd  Added submitAsync in Client and DriverRemoteConnection with deprecated message Fixed missing session close in Client Switched info to debug log for heavy spam messages Added gremlin-variant remote transaction documentation for gremlin-python Added release documentation for remote transactions in gremlin-python
     add 5a0a835  Changed logic for disabling transactions within tests.
     add fee9056  Merge branch 'pr-1515' into 3.5-dev

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-test.yml                   |   2 +-
 CHANGELOG.asciidoc                                 |   3 +
 docs/src/reference/gremlin-variants.asciidoc       |  31 +++
 docs/src/upgrade/release-3.5.x.asciidoc            |  17 +-
 gremlin-python/pom.xml                             | 122 +++++++++++
 .../gremlin_python/driver/aiohttp/transport.py     |  15 +-
 .../main/python/gremlin_python/driver/client.py    |  58 +++--
 .../driver/driver_remote_connection.py             |  72 ++++++-
 .../main/python/gremlin_python/driver/protocol.py  |  18 +-
 .../gremlin_python/driver/remote_connection.py     |  23 +-
 .../python/gremlin_python/driver/serializer.py     |  13 +-
 .../gremlin_python/process/graph_traversal.py      | 100 ++++++++-
 .../python/gremlin_python/process/traversal.py     |  18 +-
 gremlin-python/src/main/python/setup.py            |   2 +-
 gremlin-python/src/main/python/tests/conftest.py   |  35 ++-
 .../src/main/python/tests/driver/test_client.py    |  10 +-
 .../main/python/tests/process/test_traversal.py    | 237 ++++++++++++++++++++-
 17 files changed, 707 insertions(+), 69 deletions(-)