This is an automated email from the ASF dual-hosted git repository.
spmallette pushed a change to branch driver-35
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.
discard 3597d5f Limited some listener creation for handshakes
discard 1a5d0b0 Used netty's WebSocketClientProtocolHandler
discard 78124ba Add epoll support for the driver
discard 7ec27e5 Removed some dead code.
discard a704441 Refactored WebSocketIdleEventHandler into the
WebSocketClientHandler
discard eeb8233 Renamed ConnectionPoolImpl to DefaultConnectionPool
discard 8c30224 Minor modifications while profiling.
discard f82fd4c Control the number of request in flight
discard c5308a9 Removed some code deprecation
discard 0fae11d Removed obsolete driver settings.
discard 1643c3d Fixed up driver test utility based on TINKERPOP-2205 which
creates one connection per request
discard 8cd2230 Fix indentation
discard 5e9aa7b Upgrade Netty containing fix for proper close of
FixedChannelPool
discard bf3125d Added test to show fix for TINKERPOP-2132 which related to
problems with authentication over multiple threads.
discard 4bdc834 Added upgrade docs/changelog for java driver
discard 020c057 Fixed failing tests after rebase on master.
discard 7c585a1 Change connection management to single request per channel
add bfc7592 TINKERPOP-2322 Deprecate Jython support
add c660d1c Merge branch 'tp33' into tp34
add 84e3a46 Merge branch 'tp34'
add 2ca82c8 CTR: Replaced `ifconfig` with `ip`.
add c8f8039 Merge branch 'tp33' into tp34
add ea17408 Merge branch 'tp34'
add 736a7e1 TINKERPOP-2318 fix: Property comparison with element
add ad4e591 TINKERPOP-2313 Support g.E().properties().hasKey('xx') &
hasValue('xx')
add 73a8e23 merge has(k,v) filter code for edges and vertices in
HasContainer.test()
add ae25f97 Update CHANGELOG and upgrade documentation
add a44cb86 Merge branch 'pr-1224' into tp34
add 61e4585 Minor wording changes to changelog/upgrade docs and
formatting CTR
add 06180aa Merge branch 'tp34'
new 8a9a72d Change connection management to single request per channel
new 68bd0dd Fixed failing tests after rebase on master.
new 63df64a Added upgrade docs/changelog for java driver
new 089d3db Added test to show fix for TINKERPOP-2132 which related to
problems with authentication over multiple threads.
new d4f7c74 Upgrade Netty containing fix for proper close of
FixedChannelPool
new 0b78020 Fix indentation
new 9984d1c Fixed up driver test utility based on TINKERPOP-2205 which
creates one connection per request
new b9575b5 Removed obsolete driver settings.
new 548dd24 Removed some code deprecation
new 5c08499 Control the number of request in flight
new 6984ac7 Minor modifications while profiling.
new 17c89d5 Renamed ConnectionPoolImpl to DefaultConnectionPool
new 804d4c9 Refactored WebSocketIdleEventHandler into the
WebSocketClientHandler
new 8d2dea2 Removed some dead code.
new 86af8cf Add epoll support for the driver
new b4c98ad Used netty's WebSocketClientProtocolHandler
new 390f9d5 Limited some listener creation for handshakes
new 0460966 Fix driver close race condition
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 (3597d5f)
\
N -- N -- N refs/heads/driver-35 (0460966)
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.
The 18 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:
CHANGELOG.asciidoc | 5 +-
docker/scripts/build.sh | 4 +-
docs/src/reference/gremlin-variants.asciidoc | 3 +
docs/src/upgrade/release-3.3.x.asciidoc | 17 +++
docs/src/upgrade/release-3.4.x.asciidoc | 162 +++++++++++++++++++++
.../process/traversal/step/util/HasContainer.java | 50 ++++---
.../gremlin/structure/util/ElementHelper.java | 12 +-
.../gremlin/structure/util/ElementHelperTest.java | 12 +-
.../apache/tinkerpop/gremlin/driver/Client.java | 21 ++-
.../python/jsr223/GremlinJythonScriptEngine.java | 3 +
.../jsr223/GremlinJythonScriptEngineFactory.java | 3 +
.../gremlin/python/jsr223/JythonTranslator.java | 3 +
.../gremlin/python/jsr223/PythonTranslator.java | 3 +
.../gremlin/python/jsr223/SymbolHelper.java | 3 +
gremlin-test/features/filter/Has.feature | 54 +++++--
.../process/traversal/step/filter/HasTest.java | 30 ++++
.../util/detached/DetachedPropertyTest.java | 14 +-
17 files changed, 340 insertions(+), 59 deletions(-)