Skip to content

chore(deps): bump gremlin.version from 3.7.3 to 3.7.4#2405

Merged
mergify[bot] merged 1 commit into
mainfrom
dependabot/maven/gremlin.version-3.7.4
Aug 10, 2025
Merged

chore(deps): bump gremlin.version from 3.7.3 to 3.7.4#2405
mergify[bot] merged 1 commit into
mainfrom
dependabot/maven/gremlin.version-3.7.4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Aug 10, 2025

Bumps gremlin.version from 3.7.3 to 3.7.4.
Updates org.apache.tinkerpop:gremlin-core from 3.7.3 to 3.7.4

Changelog

Sourced from org.apache.tinkerpop:gremlin-core's changelog.

=== TinkerPop 3.7.4 (Release Date: August 1, 2025)

  • Fixed bug in server Settings where it was referencing a property that was back in 3.3.0 and generating a warning log.
  • Improved performance of Traversal.lock() which was being called excessively.
  • Added log entry in WsAndHttpChannelizerHandler to catch general errors that escape the handlers.
  • Improved invalid plugin error message in Gremlin Console.
  • Added a MessageSizeEstimator implementation to cover Frame allowing Gremlin Server to better estimate message sizes for the direct buffer.
  • Fixed bug in Gremlin Console for field accessor issue with JDK17.
  • Improved logging around triggers of the writeBufferHighWaterMark so that they occur more than once but do not excessively fill the logs.
  • Added server metrics to help better detect and diagnose write pauses due to the writeBufferHighWaterMark: channels.paused, channels.total, and channels.write-pauses.
  • Changed IdentityRemovalStrategy to omit IdentityStep if only with RepeatEndStep under RepeatStep.
  • Changed Gremlin grammar to make use of g to spawn child traversals a syntax error.
  • Fixed bug where the Host to ConnectionPool mapping on the Client in gremlin-driver can have no entries and therefore lead to a NullPointerException when borrowing a connection.
  • Added unexpected-response handler to ws for gremlin-javascript
  • Fixed bug in TinkerTransactionGraph where a read-only transaction may leave elements trapped in a "zombie transaction".
  • Fixed bug in gremlin.sh where it couldn't accept a directory name containing spaces.
  • Fixed issue in gremlin-console where it couldn't accept plugin files that included empty lines or invalid plugin names.
  • Modified grammar to make none() usage more consistent as a filter step where it can now be used to chain additional traversal steps and be used anonymously.
  • Added missing anonymous support for disjunct() in Python and Javascript.
  • Fixed bug in 'gremlin-server.sh' to account for spaces in directory names.
  • Deprecated gremlin_python.process.__.has_key_ in favor of gremlin_python.process.__.has_key.
  • Added gremlin.spark.outputRepartition configuration to customize the partitioning of HDFS files from OutputRDD.
  • Added ClientSettings.Session configuration in gremlin-go to configure a sessioned client.
  • Allowed mergeV() and mergeE() to supply null in Map values.
  • Fixed limitation in multi-line detection preventing :remote console scripts from being sent to the server.
  • Changed signature of hasId(P<Object>) and hasValue(P<Object>) to hasId(P<?>) and hasValue(P<?>).
  • Improved error message for when emit() is used without repeat().
  • Fixed incomplete shading of Jackson multi-release.
  • Changed PythonTranslator to generate snake case step naming instead of camel case.
  • Changed gremlin-go Client ReadBufferSize and WriteBufferSize defaults to 1048576 (1MB) to align with DriverRemoteConnection.
  • Fixed bug in IndexStep which prevented Java serialization due to non-serializable lambda usage by creating serializable function classes.
  • Fixed bug in CallStep which prevented Java serialization due to non-serializable ServiceCallContext and Service usage.
  • Fixed bug in Operator which was caused only a single method parameter to be Collection type checked instead of all parameters.
  • Addded support for hot reloading of SSL certificates in Gremlin Server.
  • Fixed default enableCompression setting to be false instead of undefined in gremlin-javascript
  • Increased default max_content_length/max_msg_size in gremlin-python from 4MB to 10MB.
  • Added the PopContaining interface designed to get label and Pop combinations held in a PopInstruction object.
  • Fixed bug preventing a vertex from being dropped and then re-added in the same TinkerTransaction
  • Fixed bug which could cause a 'Conflict: element modified in another transaction' when a transaction is attempting to add/drop/update a vertex or edge while another transaction is reading the same vertex or edge.
  • Upgraded Node version from 18 to 20
  • Upgraded Go to version 1.24
  • Fixed broken image links in published documentation

==== Bugs

  • TINKERPOP-3146 Support SSL Certificates Reloading
  • TINKERPOP-2966 Change PythonTranslator to generate underscore based step naming
  • TINKERPOP-3015 Use wildcard instead of Object for hasId predicates
  • TINKERPOP-3070 Cannot run console if working directory contains spaces
  • TINKERPOP-3111 Update documentation in gremlin-python driver section

... (truncated)

Commits

Updates org.apache.tinkerpop:gremlin-server from 3.7.3 to 3.7.4

Changelog

Sourced from org.apache.tinkerpop:gremlin-server's changelog.

=== TinkerPop 3.7.4 (Release Date: August 1, 2025)

  • Fixed bug in server Settings where it was referencing a property that was back in 3.3.0 and generating a warning log.
  • Improved performance of Traversal.lock() which was being called excessively.
  • Added log entry in WsAndHttpChannelizerHandler to catch general errors that escape the handlers.
  • Improved invalid plugin error message in Gremlin Console.
  • Added a MessageSizeEstimator implementation to cover Frame allowing Gremlin Server to better estimate message sizes for the direct buffer.
  • Fixed bug in Gremlin Console for field accessor issue with JDK17.
  • Improved logging around triggers of the writeBufferHighWaterMark so that they occur more than once but do not excessively fill the logs.
  • Added server metrics to help better detect and diagnose write pauses due to the writeBufferHighWaterMark: channels.paused, channels.total, and channels.write-pauses.
  • Changed IdentityRemovalStrategy to omit IdentityStep if only with RepeatEndStep under RepeatStep.
  • Changed Gremlin grammar to make use of g to spawn child traversals a syntax error.
  • Fixed bug where the Host to ConnectionPool mapping on the Client in gremlin-driver can have no entries and therefore lead to a NullPointerException when borrowing a connection.
  • Added unexpected-response handler to ws for gremlin-javascript
  • Fixed bug in TinkerTransactionGraph where a read-only transaction may leave elements trapped in a "zombie transaction".
  • Fixed bug in gremlin.sh where it couldn't accept a directory name containing spaces.
  • Fixed issue in gremlin-console where it couldn't accept plugin files that included empty lines or invalid plugin names.
  • Modified grammar to make none() usage more consistent as a filter step where it can now be used to chain additional traversal steps and be used anonymously.
  • Added missing anonymous support for disjunct() in Python and Javascript.
  • Fixed bug in 'gremlin-server.sh' to account for spaces in directory names.
  • Deprecated gremlin_python.process.__.has_key_ in favor of gremlin_python.process.__.has_key.
  • Added gremlin.spark.outputRepartition configuration to customize the partitioning of HDFS files from OutputRDD.
  • Added ClientSettings.Session configuration in gremlin-go to configure a sessioned client.
  • Allowed mergeV() and mergeE() to supply null in Map values.
  • Fixed limitation in multi-line detection preventing :remote console scripts from being sent to the server.
  • Changed signature of hasId(P<Object>) and hasValue(P<Object>) to hasId(P<?>) and hasValue(P<?>).
  • Improved error message for when emit() is used without repeat().
  • Fixed incomplete shading of Jackson multi-release.
  • Changed PythonTranslator to generate snake case step naming instead of camel case.
  • Changed gremlin-go Client ReadBufferSize and WriteBufferSize defaults to 1048576 (1MB) to align with DriverRemoteConnection.
  • Fixed bug in IndexStep which prevented Java serialization due to non-serializable lambda usage by creating serializable function classes.
  • Fixed bug in CallStep which prevented Java serialization due to non-serializable ServiceCallContext and Service usage.
  • Fixed bug in Operator which was caused only a single method parameter to be Collection type checked instead of all parameters.
  • Addded support for hot reloading of SSL certificates in Gremlin Server.
  • Fixed default enableCompression setting to be false instead of undefined in gremlin-javascript
  • Increased default max_content_length/max_msg_size in gremlin-python from 4MB to 10MB.
  • Added the PopContaining interface designed to get label and Pop combinations held in a PopInstruction object.
  • Fixed bug preventing a vertex from being dropped and then re-added in the same TinkerTransaction
  • Fixed bug which could cause a 'Conflict: element modified in another transaction' when a transaction is attempting to add/drop/update a vertex or edge while another transaction is reading the same vertex or edge.
  • Upgraded Node version from 18 to 20
  • Upgraded Go to version 1.24
  • Fixed broken image links in published documentation

==== Bugs

  • TINKERPOP-3146 Support SSL Certificates Reloading
  • TINKERPOP-2966 Change PythonTranslator to generate underscore based step naming
  • TINKERPOP-3015 Use wildcard instead of Object for hasId predicates
  • TINKERPOP-3070 Cannot run console if working directory contains spaces
  • TINKERPOP-3111 Update documentation in gremlin-python driver section

... (truncated)

Commits

Updates org.apache.tinkerpop:gremlin-driver from 3.7.3 to 3.7.4

Changelog

Sourced from org.apache.tinkerpop:gremlin-driver's changelog.

=== TinkerPop 3.7.4 (Release Date: August 1, 2025)

  • Fixed bug in server Settings where it was referencing a property that was back in 3.3.0 and generating a warning log.
  • Improved performance of Traversal.lock() which was being called excessively.
  • Added log entry in WsAndHttpChannelizerHandler to catch general errors that escape the handlers.
  • Improved invalid plugin error message in Gremlin Console.
  • Added a MessageSizeEstimator implementation to cover Frame allowing Gremlin Server to better estimate message sizes for the direct buffer.
  • Fixed bug in Gremlin Console for field accessor issue with JDK17.
  • Improved logging around triggers of the writeBufferHighWaterMark so that they occur more than once but do not excessively fill the logs.
  • Added server metrics to help better detect and diagnose write pauses due to the writeBufferHighWaterMark: channels.paused, channels.total, and channels.write-pauses.
  • Changed IdentityRemovalStrategy to omit IdentityStep if only with RepeatEndStep under RepeatStep.
  • Changed Gremlin grammar to make use of g to spawn child traversals a syntax error.
  • Fixed bug where the Host to ConnectionPool mapping on the Client in gremlin-driver can have no entries and therefore lead to a NullPointerException when borrowing a connection.
  • Added unexpected-response handler to ws for gremlin-javascript
  • Fixed bug in TinkerTransactionGraph where a read-only transaction may leave elements trapped in a "zombie transaction".
  • Fixed bug in gremlin.sh where it couldn't accept a directory name containing spaces.
  • Fixed issue in gremlin-console where it couldn't accept plugin files that included empty lines or invalid plugin names.
  • Modified grammar to make none() usage more consistent as a filter step where it can now be used to chain additional traversal steps and be used anonymously.
  • Added missing anonymous support for disjunct() in Python and Javascript.
  • Fixed bug in 'gremlin-server.sh' to account for spaces in directory names.
  • Deprecated gremlin_python.process.__.has_key_ in favor of gremlin_python.process.__.has_key.
  • Added gremlin.spark.outputRepartition configuration to customize the partitioning of HDFS files from OutputRDD.
  • Added ClientSettings.Session configuration in gremlin-go to configure a sessioned client.
  • Allowed mergeV() and mergeE() to supply null in Map values.
  • Fixed limitation in multi-line detection preventing :remote console scripts from being sent to the server.
  • Changed signature of hasId(P<Object>) and hasValue(P<Object>) to hasId(P<?>) and hasValue(P<?>).
  • Improved error message for when emit() is used without repeat().
  • Fixed incomplete shading of Jackson multi-release.
  • Changed PythonTranslator to generate snake case step naming instead of camel case.
  • Changed gremlin-go Client ReadBufferSize and WriteBufferSize defaults to 1048576 (1MB) to align with DriverRemoteConnection.
  • Fixed bug in IndexStep which prevented Java serialization due to non-serializable lambda usage by creating serializable function classes.
  • Fixed bug in CallStep which prevented Java serialization due to non-serializable ServiceCallContext and Service usage.
  • Fixed bug in Operator which was caused only a single method parameter to be Collection type checked instead of all parameters.
  • Addded support for hot reloading of SSL certificates in Gremlin Server.
  • Fixed default enableCompression setting to be false instead of undefined in gremlin-javascript
  • Increased default max_content_length/max_msg_size in gremlin-python from 4MB to 10MB.
  • Added the PopContaining interface designed to get label and Pop combinations held in a PopInstruction object.
  • Fixed bug preventing a vertex from being dropped and then re-added in the same TinkerTransaction
  • Fixed bug which could cause a 'Conflict: element modified in another transaction' when a transaction is attempting to add/drop/update a vertex or edge while another transaction is reading the same vertex or edge.
  • Upgraded Node version from 18 to 20
  • Upgraded Go to version 1.24
  • Fixed broken image links in published documentation

==== Bugs

  • TINKERPOP-3146 Support SSL Certificates Reloading
  • TINKERPOP-2966 Change PythonTranslator to generate underscore based step naming
  • TINKERPOP-3015 Use wildcard instead of Object for hasId predicates
  • TINKERPOP-3070 Cannot run console if working directory contains spaces
  • TINKERPOP-3111 Update documentation in gremlin-python driver section

... (truncated)

Commits

Updates org.apache.tinkerpop:gremlin-util from 3.7.3 to 3.7.4

Changelog

Sourced from org.apache.tinkerpop:gremlin-util's changelog.

=== TinkerPop 3.7.4 (Release Date: August 1, 2025)

  • Fixed bug in server Settings where it was referencing a property that was back in 3.3.0 and generating a warning log.
  • Improved performance of Traversal.lock() which was being called excessively.
  • Added log entry in WsAndHttpChannelizerHandler to catch general errors that escape the handlers.
  • Improved invalid plugin error message in Gremlin Console.
  • Added a MessageSizeEstimator implementation to cover Frame allowing Gremlin Server to better estimate message sizes for the direct buffer.
  • Fixed bug in Gremlin Console for field accessor issue with JDK17.
  • Improved logging around triggers of the writeBufferHighWaterMark so that they occur more than once but do not excessively fill the logs.
  • Added server metrics to help better detect and diagnose write pauses due to the writeBufferHighWaterMark: channels.paused, channels.total, and channels.write-pauses.
  • Changed IdentityRemovalStrategy to omit IdentityStep if only with RepeatEndStep under RepeatStep.
  • Changed Gremlin grammar to make use of g to spawn child traversals a syntax error.
  • Fixed bug where the Host to ConnectionPool mapping on the Client in gremlin-driver can have no entries and therefore lead to a NullPointerException when borrowing a connection.
  • Added unexpected-response handler to ws for gremlin-javascript
  • Fixed bug in TinkerTransactionGraph where a read-only transaction may leave elements trapped in a "zombie transaction".
  • Fixed bug in gremlin.sh where it couldn't accept a directory name containing spaces.
  • Fixed issue in gremlin-console where it couldn't accept plugin files that included empty lines or invalid plugin names.
  • Modified grammar to make none() usage more consistent as a filter step where it can now be used to chain additional traversal steps and be used anonymously.
  • Added missing anonymous support for disjunct() in Python and Javascript.
  • Fixed bug in 'gremlin-server.sh' to account for spaces in directory names.
  • Deprecated gremlin_python.process.__.has_key_ in favor of gremlin_python.process.__.has_key.
  • Added gremlin.spark.outputRepartition configuration to customize the partitioning of HDFS files from OutputRDD.
  • Added ClientSettings.Session configuration in gremlin-go to configure a sessioned client.
  • Allowed mergeV() and mergeE() to supply null in Map values.
  • Fixed limitation in multi-line detection preventing :remote console scripts from being sent to the server.
  • Changed signature of hasId(P<Object>) and hasValue(P<Object>) to hasId(P<?>) and hasValue(P<?>).
  • Improved error message for when emit() is used without repeat().
  • Fixed incomplete shading of Jackson multi-release.
  • Changed PythonTranslator to generate snake case step naming instead of camel case.
  • Changed gremlin-go Client ReadBufferSize and WriteBufferSize defaults to 1048576 (1MB) to align with DriverRemoteConnection.
  • Fixed bug in IndexStep which prevented Java serialization due to non-serializable lambda usage by creating serializable function classes.
  • Fixed bug in CallStep which prevented Java serialization due to non-serializable ServiceCallContext and Service usage.
  • Fixed bug in Operator which was caused only a single method parameter to be Collection type checked instead of all parameters.
  • Addded support for hot reloading of SSL certificates in Gremlin Server.
  • Fixed default enableCompression setting to be false instead of undefined in gremlin-javascript
  • Increased default max_content_length/max_msg_size in gremlin-python from 4MB to 10MB.
  • Added the PopContaining interface designed to get label and Pop combinations held in a PopInstruction object.
  • Fixed bug preventing a vertex from being dropped and then re-added in the same TinkerTransaction
  • Fixed bug which could cause a 'Conflict: element modified in another transaction' when a transaction is attempting to add/drop/update a vertex or edge while another transaction is reading the same vertex or edge.
  • Upgraded Node version from 18 to 20
  • Upgraded Go to version 1.24
  • Fixed broken image links in published documentation

==== Bugs

  • TINKERPOP-3146 Support SSL Certificates Reloading
  • TINKERPOP-2966 Change PythonTranslator to generate underscore based step naming
  • TINKERPOP-3015 Use wildcard instead of Object for hasId predicates
  • TINKERPOP-3070 Cannot run console if working directory contains spaces
  • TINKERPOP-3111 Update documentation in gremlin-python driver section

... (truncated)

Commits

Updates org.apache.tinkerpop:gremlin-groovy from 3.7.3 to 3.7.4

Changelog

Sourced from org.apache.tinkerpop:gremlin-groovy's changelog.

=== TinkerPop 3.7.4 (Release Date: August 1, 2025)

  • Fixed bug in server Settings where it was referencing a property that was back in 3.3.0 and generating a warning log.
  • Improved performance of Traversal.lock() which was being called excessively.
  • Added log entry in WsAndHttpChannelizerHandler to catch general errors that escape the handlers.
  • Improved invalid plugin error message in Gremlin Console.
  • Added a MessageSizeEstimator implementation to cover Frame allowing Gremlin Server to better estimate message sizes for the direct buffer.
  • Fixed bug in Gremlin Console for field accessor issue with JDK17.
  • Improved logging around triggers of the writeBufferHighWaterMark so that they occur more than once but do not excessively fill the logs.
  • Added server metrics to help better detect and diagnose write pauses due to the writeBufferHighWaterMark: channels.paused, channels.total, and channels.write-pauses.
  • Changed IdentityRemovalStrategy to omit IdentityStep if only with RepeatEndStep under RepeatStep.
  • Changed Gremlin grammar to make use of g to spawn child traversals a syntax error.
  • Fixed bug where the Host to ConnectionPool mapping on the Client in gremlin-driver can have no entries and therefore lead to a NullPointerException when borrowing a connection.
  • Added unexpected-response handler to ws for gremlin-javascript
  • Fixed bug in TinkerTransactionGraph where a read-only transaction may leave elements trapped in a "zombie transaction".
  • Fixed bug in gremlin.sh where it couldn't accept a directory name containing spaces.
  • Fixed issue in gremlin-console where it couldn't accept plugin files that included empty lines or invalid plugin names.
  • Modified grammar to make none() usage more consistent as a filter step where it can now be used to chain additional traversal steps and be used anonymously.
  • Added missing anonymous support for disjunct() in Python and Javascript.
  • Fixed bug in 'gremlin-server.sh' to account for spaces in directory names.
  • Deprecated gremlin_python.process.__.has_key_ in favor of gremlin_python.process.__.has_key.
  • Added gremlin.spark.outputRepartition configuration to customize the partitioning of HDFS files from OutputRDD.
  • Added ClientSettings.Session configuration in gremlin-go to configure a sessioned client.
  • Allowed mergeV() and mergeE() to supply null in Map values.
  • Fixed limitation in multi-line detection preventing :remote console scripts from being sent to the server.
  • Changed signature of hasId(P<Object>) and hasValue(P<Object>) to hasId(P<?>) and hasValue(P<?>).
  • Improved error message for when emit() is used without repeat().
  • Fixed incomplete shading of Jackson multi-release.
  • Changed PythonTranslator to generate snake case step naming instead of camel case.
  • Changed gremlin-go Client ReadBufferSize and WriteBufferSize defaults to 1048576 (1MB) to align with DriverRemoteConnection.
  • Fixed bug in IndexStep which prevented Java serialization due to non-serializable lambda usage by creating serializable function classes.
  • Fixed bug in CallStep which prevented Java serialization due to non-serializable ServiceCallContext and Service usage.
  • Fixed bug in Operator which was caused only a single method parameter to be Collection type checked instead of all parameters.
  • Addded support for hot reloading of SSL certificates in Gremlin Server.
  • Fixed default enableCompression setting to be false instead of undefined in gremlin-javascript
  • Increased default max_content_length/max_msg_size in gremlin-python from 4MB to 10MB.
  • Added the PopContaining interface designed to get label and Pop combinations held in a PopInstruction object.
  • Fixed bug preventing a vertex from being dropped and then re-added in the same TinkerTransaction
  • Fixed bug which could cause a 'Conflict: element modified in another transaction' when a transaction is attempting to add/drop/update a vertex or edge while another transaction is reading the same vertex or edge.
  • Upgraded Node version from 18 to 20
  • Upgraded Go to version 1.24
  • Fixed broken image links in published documentation

==== Bugs

  • TINKERPOP-3146 Support SSL Certificates Reloading
  • TINKERPOP-2966 Change PythonTranslator to generate underscore based step naming
  • TINKERPOP-3015 Use wildcard instead of Object for hasId predicates
  • TINKERPOP-3070 Cannot run console if working directory contains spaces
  • TINKERPOP-3111 Update documentation in gremlin-python driver section

... (truncated)

Commits

Updates org.apache.tinkerpop:gremlin-test from 3.7.3 to 3.7.4

Changelog

Sourced from org.apache.tinkerpop:gremlin-test's changelog.

=== TinkerPop 3.7.4 (Release Date: August 1, 2025)

  • Fixed bug in server Settings where it was referencing a property that was back in 3.3.0 and generating a warning log.
  • Improved performance of Traversal.lock() which was being called excessively.
  • Added log entry in WsAndHttpChannelizerHandler to catch general errors that escape the handlers.
  • Improved invalid plugin error message in Gremlin Console.
  • Added a MessageSizeEstimator implementation to cover Frame allowing Gremlin Server to better estimate message sizes for the direct buffer.
  • Fixed bug in Gremlin Console for field accessor issue with JDK17.
  • Improved logging around triggers of the writeBufferHighWaterMark so that they occur more than once but do not excessively fill the logs.
  • Added server metrics to help better detect and diagnose write pauses due to the writeBufferHighWaterMark: channels.paused, channels.total, and channels.write-pauses.
  • Changed IdentityRemovalStrategy to omit IdentityStep if only with RepeatEndStep under RepeatStep.
  • Changed Gremlin grammar to make use of g to spawn child traversals a syntax error.
  • Fixed bug where the Host to ConnectionPool mapping on the Client in gremlin-driver can have no entries and therefore lead to a NullPointerException when borrowing a connection.
  • Added unexpected-response handler to ws for gremlin-javascript
  • Fixed bug in TinkerTransactionGraph where a read-only transaction may leave elements trapped in a "zombie transaction".
  • Fixed bug in gremlin.sh where it couldn't accept a directory name containing spaces.
  • Fixed issue in gremlin-console where it couldn't accept plugin files that included empty lines or invalid plugin names.
  • Modified grammar to make none() usage more consistent as a filter step where it can now be used to chain additional traversal steps and be used anonymously.
  • Added missing anonymous support for disjunct() in Python and Javascript.
  • Fixed bug in 'gremlin-server.sh' to account for spaces in directory names.
  • Deprecated gremlin_python.process.__.has_key_ in favor of gremlin_python.process.__.has_key.
  • Added gremlin.spark.outputRepartition configuration to customize the partitioning of HDFS files from OutputRDD.
  • Added ClientSettings.Session configuration in gremlin-go to configure a sessioned client.
  • Allowed mergeV() and mergeE() to supply null in Map values.
  • Fixed limitation in multi-line detection preventing :remote console scripts from being sent to the server.
  • Changed signature of hasId(P<Object>) and hasValue(P<Object>) to hasId(P<?>) and hasValue(P<?>).
  • Improved error message for when emit() is used without repeat().
  • Fixed incomplete shading of Jackson multi-release.
  • Changed PythonTranslator to generate snake case step naming instead of camel case.
  • Changed gremlin-go Client ReadBufferSize and WriteBufferSize defaults to 1048576 (1MB) to align with DriverRemoteConnection.
  • Fixed bug in IndexStep which prevented Java serialization due to non-serializable lambda usage by creating serializable function classes.
  • Fixed bug in CallStep which prevented Java serialization due to non-serializable ServiceCallContext and Service usage.
  • Fixed bug in Operator which was caused only a single method parameter to be Collection type checked instead of all parameters.
  • Addded support for hot reloading of SSL certificates in Gremlin Server.
  • Fixed default enableCompression setting to be false instead of undefined in gremlin-javascript
  • Increased default max_content_length/max_msg_size in gremlin-python from 4MB to 10MB.
  • Added the PopContaining interface designed to get label and Pop combinations held in a PopInstruction object.
  • Fixed bug preventing a vertex from being dropped and then re-added in the same TinkerTransaction
  • Fixed bug which could cause a 'Conflict: element modified in another transaction' when a transaction is attempting to add/drop/update a vertex or edge while another transaction is reading the same vertex or edge.
  • Upgraded Node version from 18 to 20
  • Upgraded Go to version 1.24
  • Fixed broken image links in published documentation

==== Bugs

  • TINKERPOP-3146 Support SSL Certificates Reloading
  • TINKERPOP-2966 Change PythonTranslator to generate underscore based step naming
  • TINKERPOP-3015 Use wildcard instead of Object for hasId predicates
  • TINKERPOP-3070 Cannot run console if working directory contains spaces
  • TINKERPOP-3111 Update documentation in gremlin-python driver section

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `gremlin.version` from 3.7.3 to 3.7.4.

Updates `org.apache.tinkerpop:gremlin-core` from 3.7.3 to 3.7.4
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.7.3...3.7.4)

Updates `org.apache.tinkerpop:gremlin-server` from 3.7.3 to 3.7.4
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.7.3...3.7.4)

Updates `org.apache.tinkerpop:gremlin-driver` from 3.7.3 to 3.7.4
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.7.3...3.7.4)

Updates `org.apache.tinkerpop:gremlin-util` from 3.7.3 to 3.7.4
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.7.3...3.7.4)

Updates `org.apache.tinkerpop:gremlin-groovy` from 3.7.3 to 3.7.4
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.7.3...3.7.4)

Updates `org.apache.tinkerpop:gremlin-test` from 3.7.3 to 3.7.4
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.7.3...3.7.4)

---
updated-dependencies:
- dependency-name: org.apache.tinkerpop:gremlin-core
  dependency-version: 3.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.tinkerpop:gremlin-server
  dependency-version: 3.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.tinkerpop:gremlin-driver
  dependency-version: 3.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.tinkerpop:gremlin-util
  dependency-version: 3.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.tinkerpop:gremlin-groovy
  dependency-version: 3.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.tinkerpop:gremlin-test
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java labels Aug 10, 2025
@mergify mergify Bot merged commit 9615f84 into main Aug 10, 2025
9 of 13 checks passed
@dependabot dependabot Bot deleted the dependabot/maven/gremlin.version-3.7.4 branch August 10, 2025 12:11
mergify Bot added a commit that referenced this pull request Mar 13, 2026
…[skip ci]

Bumps [https://github.com/pycqa/isort](https://github.com/pycqa/isort) from 7.0.0 to 8.0.1.
Release notes

*Sourced from [https://github.com/pycqa/isort's releases](https://github.com/pycqa/isort/releases).*

> 8.0.0
> -----
>
> Changes
> -------
>
> * Update CHANGELOG for version 8.0.0 ([#2460](https://redirect.github.com/pycqa/isort/issues/2460)) [`@​DanielNoord`](https://github.com/DanielNoord)
> * Fix edge case of `__future__` import. ([#2458](https://redirect.github.com/pycqa/isort/issues/2458)) [`@​skv0zsneg`](https://github.com/skv0zsneg)
> * Fix the Plone profile to be compatible with black ([#2457](https://redirect.github.com/pycqa/isort/issues/2457)) [`@​ale-rt`](https://github.com/ale-rt)
> * typo fix ([#2450](https://redirect.github.com/pycqa/isort/issues/2450)) [`@​jsta`](https://github.com/jsta)
> * Remove the `setuptools` plugin ([#2427](https://redirect.github.com/pycqa/isort/issues/2427)) [`@​DanielNoord`](https://github.com/DanielNoord)
> * Turn some warnings into errors in test suite ([#2449](https://redirect.github.com/pycqa/isort/issues/2449)) [`@​DanielNoord`](https://github.com/DanielNoord)
> * chore: replace black with ruff in clean.sh ([#2448](https://redirect.github.com/pycqa/isort/issues/2448)) [`@​joao-faria-dev`](https://github.com/joao-faria-dev)
> * feat!: remove old finders flag and legacy finder logic ([#2446](https://redirect.github.com/pycqa/isort/issues/2446)) [`@​joao-faria-dev`](https://github.com/joao-faria-dev)
> * Fix whitespace insensitive check triggering on tabs ([#2437](https://redirect.github.com/pycqa/isort/issues/2437)) [`@​robsdedude`](https://github.com/robsdedude)
> * Fix line separator detection not considering form feed as white space ([#2436](https://redirect.github.com/pycqa/isort/issues/2436)) [`@​robsdedude`](https://github.com/robsdedude)
> * Fix [#1964](https://redirect.github.com/pycqa/isort/issues/1964): `lines_before_import` sometimes ignored ([#1965](https://redirect.github.com/pycqa/isort/issues/1965)) [`@​robsdedude`](https://github.com/robsdedude)
> * Remove reference to 3.9 in README ([#2434](https://redirect.github.com/pycqa/isort/issues/2434)) [`@​DanielNoord`](https://github.com/DanielNoord)
>
> 🚀 Features
> -----------------
>
> * Ensure `multiprocessing.Pool` is always closed and joined ([#2442](https://redirect.github.com/pycqa/isort/issues/2442)) [`@​DanielNoord`](https://github.com/DanielNoord)
>
> :construction\_worker: Continuous Integration
> ---------------------------------------------
>
> * Simplify CI by putting similar steps into a single action file ([#2444](https://redirect.github.com/pycqa/isort/issues/2444)) [`@​DanielNoord`](https://github.com/DanielNoord)
>
> 📦 Dependencies
> ----------------------
>
> * Bump actions/checkout from 5 to 6 in the github-actions group ([#2451](https://redirect.github.com/pycqa/isort/issues/2451)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump astral-sh/setup-uv from 6 to 7 in the github-actions group ([#2441](https://redirect.github.com/pycqa/isort/issues/2441)) @[dependabot[bot]](https://github.com/apps/dependabot)


Changelog

*Sourced from [https://github.com/pycqa/isort's changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md).*

> Changelog
> =========
>
> NOTE: isort follows the [semver](https://semver.org/) versioning standard.
> Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy).
>
> Releases
> --------
>
> ### Unreleased
>
> ### 8.0.0 February 19 2026
>
> * Removed `--old-finders` and `--magic-placement` flags and `old_finders` configuration option. The legacy finder logic that relied on environment introspection has been removed ([#2445](https://redirect.github.com/pycqa/isort/issues/2445)) [`@​joao-faria-dev`](https://github.com/joao-faria-dev)
> * Update the `plone` profile to not clash with `black` ([#2456](https://redirect.github.com/pycqa/isort/issues/2456)) [`@​ale-rt`](https://github.com/ale-rt)
>
> ### 6.1.0 October 1 2025
>
> * Add python 3.14 classifier and badge ([#2409](https://redirect.github.com/pycqa/isort/issues/2409)) [`@​staticdev`](https://github.com/staticdev)
> * Drop use of non-standard pkg\_resources API ([#2405](https://redirect.github.com/pycqa/isort/issues/2405)) [`@​dvarrazzo`](https://github.com/dvarrazzo)
>
> ### 6.0.1 Febuary 26 2025
>
> * Add OSError handling in find\_imports\_in\_file ([#2331](https://redirect.github.com/pycqa/isort/issues/2331)) [`@​kobarity`](https://github.com/kobarity)
>
> ### 6.0.0 January 27 2025
>
> * Remove support for Python 3.8 ([#2327](https://redirect.github.com/pycqa/isort/issues/2327)) [`@​DanielNoord`](https://github.com/DanielNoord)
> * Python 3.13 support ([#2306](https://redirect.github.com/pycqa/isort/issues/2306)) [`@​mayty`](https://github.com/mayty)
> * Speed up exists\_case\_sensitive calls ([#2264](https://redirect.github.com/pycqa/isort/issues/2264)) [`@​correctmost`](https://github.com/correctmost)
> * Ensure that split\_on\_trailing\_comma works with as imports ([#2340](https://redirect.github.com/pycqa/isort/issues/2340)) [`@​DanielNoord`](https://github.com/DanielNoord)
> * Black profile: enable magic comma ([#2236](https://redirect.github.com/pycqa/isort/issues/2236)) [`@​MrMino`](https://github.com/MrMino)
> * Update line\_length and single\_line\_exclusions in google profile ([#2149](https://redirect.github.com/pycqa/isort/issues/2149)) [`@​jagapiou`](https://github.com/jagapiou)
> * Allow --diff to be used with --jobs ([#2302](https://redirect.github.com/pycqa/isort/issues/2302)) [`@​mnakama`](https://github.com/mnakama)
> * Fix wemake profile to have correct character limit ([#2241](https://redirect.github.com/pycqa/isort/issues/2241)) [`@​sobolevn`](https://github.com/sobolevn)
> * Fix sort\_reexports code mangling ([#2283](https://redirect.github.com/pycqa/isort/issues/2283)) [`@​Helveg`](https://github.com/Helveg)
> * Fix correct group by package tokenization ([#2136](https://redirect.github.com/pycqa/isort/issues/2136)) [`@​glasnt`](https://github.com/glasnt)
>
> ### 5.13.2 December 13 2023
>
> * Apply the bracket fix from issue [#471](https://redirect.github.com/pycqa/isort/issues/471) only for use\_parentheses=True ([#2184](https://redirect.github.com/pycqa/isort/issues/2184)) [`@​bp72`](https://github.com/bp72)
> * Confine pre-commit to stages ([#2213](https://redirect.github.com/pycqa/isort/issues/2213)) [`@​davidculley`](https://github.com/davidculley)
> * Fixed colors extras ([#2212](https://redirect.github.com/pycqa/isort/issues/2212)) [`@​staticdev`](https://github.com/staticdev)
>
> ### 5.13.1 December 11 2023
>
> * Fixed integration tests ([#2208](https://redirect.github.com/pycqa/isort/issues/2208)) [`@​bp72`](https://github.com/bp72)
> * Fixed normalizing imports from more than one level of parent modules (issue/2152) ([#2191](https://redirect.github.com/pycqa/isort/issues/2191)) [`@​bp72`](https://github.com/bp72)
> * Remove optional dependencies without extras ([#2207](https://redirect.github.com/pycqa/isort/issues/2207)) [`@​staticdev`](https://github.com/staticdev)
>
> ### 5.13.0 December 9 2023

... (truncated)


Commits

* [`a333737`](PyCQA/isort@a333737) Merge pull request [#2463](https://redirect.github.com/pycqa/isort/issues/2463) from FinlayTheBerry/issue/2461
* [`878ba7e`](PyCQA/isort@878ba7e) Added compression to stdlibs for Python 3.14 in isort/stdlibs/py314.py
* [`b5f06a7`](PyCQA/isort@b5f06a7) Merge pull request [#2459](https://redirect.github.com/pycqa/isort/issues/2459) from Fridayai700/fix-unindented-comment-corruption
* [`3459bde`](PyCQA/isort@3459bde) Merge pull request [#2460](https://redirect.github.com/pycqa/isort/issues/2460) from PyCQA/DanielNoord-patch-1
* [`6e70bb6`](PyCQA/isort@6e70bb6) Update CHANGELOG for version 8.0.0
* [`fd2514b`](PyCQA/isort@fd2514b) Fix unindented comments being corrupted in indented blocks
* [`b0f2dab`](PyCQA/isort@b0f2dab) Merge pull request [#2458](https://redirect.github.com/pycqa/isort/issues/2458) from skv0zsneg/issue/1882
* [`313797b`](PyCQA/isort@313797b) Fix lint.
* [`7d3a6f5`](PyCQA/isort@7d3a6f5) Add ignore for cyclomatic complexity check.
* [`6b9f895`](PyCQA/isort@6b9f895) Remove debug prints.
* Additional commits viewable in [compare view](PyCQA/isort@7.0.0...8.0.1)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=https://github.com/pycqa/isort&package-manager=pre\_commit&previous-version=7.0.0&new-version=8.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant