Skip to content

fix: improve chart rendering tests and response handling#3164

Merged
robfrank merged 1 commit into
mainfrom
fix/e2e-studio
Jan 17, 2026
Merged

fix: improve chart rendering tests and response handling#3164
robfrank merged 1 commit into
mainfrom
fix/e2e-studio

Conversation

@robfrank

Copy link
Copy Markdown
Collaborator

No description provided.

@robfrank robfrank added this to the 26.1.1 milestone Jan 17, 2026
@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @robfrank, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request refines existing end-to-end tests to enhance their stability and accuracy. The changes primarily focus on improving synchronization mechanisms within tests, ensuring that UI elements like charts and data tables are fully rendered and populated with data before assertions are made. This addresses potential flakiness due to asynchronous operations and improves the overall reliability of the test suite.

Highlights

  • Improved Chart Rendering Tests: The apexcharts-upgrade.spec.ts test now explicitly waits for the relevant API response (api/v1/server) before asserting chart visibility and data points, making the test more robust against timing issues and ensuring data is loaded.
  • Enhanced Chart Visibility Checks: A new explicit wait has been added to ensure at least one chart SVG is visible before proceeding to count all charts, preventing premature assertions and improving test reliability.
  • More Reliable DataTables Test: The datatables-compatibility.spec.ts test now includes a longer waitForTimeout before switching to the Table tab and an explicit expect().toBeVisible() with a timeout for the data table after switching, addressing potential rendering delays for complex data.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@mergify

mergify Bot commented Jan 17, 2026

Copy link
Copy Markdown
Contributor

🧪 CI Insights

Here's what we observed from your CI run for b1bb7b9.

🟢 All jobs passed!

But CI Insights is watching 👀

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request improves the E2E tests by enhancing response handling and fixing potential flakiness in chart rendering tests. The changes in apexcharts-upgrade.spec.ts correctly wait for API responses before making assertions, which is a solid improvement. However, in datatables-compatibility.spec.ts, a fixed timeout (waitForTimeout) has been introduced, which is an anti-pattern that can lead to flaky tests. My review includes suggestions to replace this with more robust, condition-based waits to improve test reliability.

Comment on lines +562 to +566
// Wait a moment for graph rendering to stabilize before switching tabs
await page.waitForTimeout(1000);

// Switch to Table tab
await page.locator('a[href="#tab-table"]').click({ force: true });

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Using page.waitForTimeout() is an anti-pattern in Playwright tests as it can lead to flakiness. The test might pass locally but fail in a different environment (like CI) where rendering takes more or less time. It's better to wait for a specific condition or element state.

Since the comment mentions waiting for graph rendering to stabilize, you should wait for a specific element from the graph to be ready. For example, you can wait for the graph canvas to become visible. This provides a more reliable signal that it's safe to proceed.

Additionally, the use of { force: true } is often a sign that the previous wait is insufficient. After switching to a more reliable wait, you should be able to remove force: true.

Suggested change
// Wait a moment for graph rendering to stabilize before switching tabs
await page.waitForTimeout(1000);
// Switch to Table tab
await page.locator('a[href="#tab-table"]').click({ force: true });
// Wait for graph rendering to complete before switching tabs
await expect(page.locator('canvas').last()).toBeVisible();
// Switch to Table tab
await page.locator('a[href="#tab-table"]').click();

Comment on lines +119 to +121
const responsePromise = page.waitForResponse(response =>
response.url().includes('api/v1/server')
);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While waiting for the response is a great improvement for test stability, the URL matcher response.url().includes('api/v1/server') is a bit broad and could potentially match other API calls (e.g., /api/v1/server/status). It also doesn't guarantee the request was successful.

To make this more robust, I'd recommend also checking for a successful response status using response.ok(). This ensures you're waiting for a valid response before proceeding with assertions.

Suggested change
const responsePromise = page.waitForResponse(response =>
response.url().includes('api/v1/server')
);
const responsePromise = page.waitForResponse(response =>
response.url().includes('api/v1/server') && response.ok()
);

@robfrank robfrank merged commit fa7ddc5 into main Jan 17, 2026
16 of 19 checks passed
@robfrank robfrank deleted the fix/e2e-studio branch January 17, 2026 15:46
@codacy-production

Copy link
Copy Markdown

Coverage summary from Codacy

See diff coverage on Codacy

Coverage variation Diff coverage
-0.01%
Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (0ffdf13) 99570 55493 55.73%
Head commit (b1bb7b9) 99570 (+0) 55483 (-10) 55.72% (-0.01%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#3164) 0 0 ∅ (not applicable)

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

See your quality gate settings    Change summary preferences

robfrank added a commit that referenced this pull request Feb 11, 2026
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
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](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc).*

> === 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

* [`fa698ba`](apache/tinkerpop@fa698ba) TinkerPop 3.7.4 release
* [`5df609d`](apache/tinkerpop@5df609d) CTR fix docker platform for arm image building
* [`c904af8`](apache/tinkerpop@c904af8) <https://issues.apache.org/jira/browse/TINKERPOP-3174> ([ArcadeData#3169](https://redirect.github.com/apache/tinkerpop/issues/3169))
* [`3f41356`](apache/tinkerpop@3f41356) Upgrade go to version 1.24. ([ArcadeData#3166](https://redirect.github.com/apache/tinkerpop/issues/3166))
* [`01c97ef`](apache/tinkerpop@01c97ef) Upgraded node from version 18 to 20. ([ArcadeData#3165](https://redirect.github.com/apache/tinkerpop/issues/3165))
* [`9809784`](apache/tinkerpop@9809784) CTR: TINKERPOP-3138 Fixed default `enableCompression` setting to be `false` i...
* [`1ef460a`](apache/tinkerpop@1ef460a) TINKERPOP-3177: Fix configuration of sessions in Go Client ([ArcadeData#3164](https://redirect.github.com/apache/tinkerpop/issues/3164))
* [`db36986`](apache/tinkerpop@db36986) Transaction reads should not interfere with add/update/delete ([ArcadeData#3163](https://redirect.github.com/apache/tinkerpop/issues/3163))
* [`16255f5`](apache/tinkerpop@16255f5) TINKERPOP-3040 Fixed limitation in multi-line parsing. ([ArcadeData#3162](https://redirect.github.com/apache/tinkerpop/issues/3162))
* [`cede190`](apache/tinkerpop@cede190) TINKERPOP-3154 Added docs/tests for subgraph() CTR
* Additional commits viewable in [compare view](apache/tinkerpop@3.7.3...3.7.4)
  
Updates `org.apache.tinkerpop:gremlin-server` from 3.7.3 to 3.7.4
Changelog

*Sourced from [org.apache.tinkerpop:gremlin-server's changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc).*

> === 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

* [`fa698ba`](apache/tinkerpop@fa698ba) TinkerPop 3.7.4 release
* [`5df609d`](apache/tinkerpop@5df609d) CTR fix docker platform for arm image building
* [`c904af8`](apache/tinkerpop@c904af8) <https://issues.apache.org/jira/browse/TINKERPOP-3174> ([ArcadeData#3169](https://redirect.github.com/apache/tinkerpop/issues/3169))
* [`3f41356`](apache/tinkerpop@3f41356) Upgrade go to version 1.24. ([ArcadeData#3166](https://redirect.github.com/apache/tinkerpop/issues/3166))
* [`01c97ef`](apache/tinkerpop@01c97ef) Upgraded node from version 18 to 20. ([ArcadeData#3165](https://redirect.github.com/apache/tinkerpop/issues/3165))
* [`9809784`](apache/tinkerpop@9809784) CTR: TINKERPOP-3138 Fixed default `enableCompression` setting to be `false` i...
* [`1ef460a`](apache/tinkerpop@1ef460a) TINKERPOP-3177: Fix configuration of sessions in Go Client ([ArcadeData#3164](https://redirect.github.com/apache/tinkerpop/issues/3164))
* [`db36986`](apache/tinkerpop@db36986) Transaction reads should not interfere with add/update/delete ([ArcadeData#3163](https://redirect.github.com/apache/tinkerpop/issues/3163))
* [`16255f5`](apache/tinkerpop@16255f5) TINKERPOP-3040 Fixed limitation in multi-line parsing. ([ArcadeData#3162](https://redirect.github.com/apache/tinkerpop/issues/3162))
* [`cede190`](apache/tinkerpop@cede190) TINKERPOP-3154 Added docs/tests for subgraph() CTR
* Additional commits viewable in [compare view](apache/tinkerpop@3.7.3...3.7.4)
  
Updates `org.apache.tinkerpop:gremlin-driver` from 3.7.3 to 3.7.4
Changelog

*Sourced from [org.apache.tinkerpop:gremlin-driver's changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc).*

> === 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

* [`fa698ba`](apache/tinkerpop@fa698ba) TinkerPop 3.7.4 release
* [`5df609d`](apache/tinkerpop@5df609d) CTR fix docker platform for arm image building
* [`c904af8`](apache/tinkerpop@c904af8) <https://issues.apache.org/jira/browse/TINKERPOP-3174> ([ArcadeData#3169](https://redirect.github.com/apache/tinkerpop/issues/3169))
* [`3f41356`](apache/tinkerpop@3f41356) Upgrade go to version 1.24. ([ArcadeData#3166](https://redirect.github.com/apache/tinkerpop/issues/3166))
* [`01c97ef`](apache/tinkerpop@01c97ef) Upgraded node from version 18 to 20. ([ArcadeData#3165](https://redirect.github.com/apache/tinkerpop/issues/3165))
* [`9809784`](apache/tinkerpop@9809784) CTR: TINKERPOP-3138 Fixed default `enableCompression` setting to be `false` i...
* [`1ef460a`](apache/tinkerpop@1ef460a) TINKERPOP-3177: Fix configuration of sessions in Go Client ([ArcadeData#3164](https://redirect.github.com/apache/tinkerpop/issues/3164))
* [`db36986`](apache/tinkerpop@db36986) Transaction reads should not interfere with add/update/delete ([ArcadeData#3163](https://redirect.github.com/apache/tinkerpop/issues/3163))
* [`16255f5`](apache/tinkerpop@16255f5) TINKERPOP-3040 Fixed limitation in multi-line parsing. ([ArcadeData#3162](https://redirect.github.com/apache/tinkerpop/issues/3162))
* [`cede190`](apache/tinkerpop@cede190) TINKERPOP-3154 Added docs/tests for subgraph() CTR
* Additional commits viewable in [compare view](apache/tinkerpop@3.7.3...3.7.4)
  
Updates `org.apache.tinkerpop:gremlin-util` from 3.7.3 to 3.7.4
Changelog

*Sourced from [org.apache.tinkerpop:gremlin-util's changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc).*

> === 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

* [`fa698ba`](apache/tinkerpop@fa698ba) TinkerPop 3.7.4 release
* [`5df609d`](apache/tinkerpop@5df609d) CTR fix docker platform for arm image building
* [`c904af8`](apache/tinkerpop@c904af8) <https://issues.apache.org/jira/browse/TINKERPOP-3174> ([ArcadeData#3169](https://redirect.github.com/apache/tinkerpop/issues/3169))
* [`3f41356`](apache/tinkerpop@3f41356) Upgrade go to version 1.24. ([ArcadeData#3166](https://redirect.github.com/apache/tinkerpop/issues/3166))
* [`01c97ef`](apache/tinkerpop@01c97ef) Upgraded node from version 18 to 20. ([ArcadeData#3165](https://redirect.github.com/apache/tinkerpop/issues/3165))
* [`9809784`](apache/tinkerpop@9809784) CTR: TINKERPOP-3138 Fixed default `enableCompression` setting to be `false` i...
* [`1ef460a`](apache/tinkerpop@1ef460a) TINKERPOP-3177: Fix configuration of sessions in Go Client ([ArcadeData#3164](https://redirect.github.com/apache/tinkerpop/issues/3164))
* [`db36986`](apache/tinkerpop@db36986) Transaction reads should not interfere with add/update/delete ([ArcadeData#3163](https://redirect.github.com/apache/tinkerpop/issues/3163))
* [`16255f5`](apache/tinkerpop@16255f5) TINKERPOP-3040 Fixed limitation in multi-line parsing. ([ArcadeData#3162](https://redirect.github.com/apache/tinkerpop/issues/3162))
* [`cede190`](apache/tinkerpop@cede190) TINKERPOP-3154 Added docs/tests for subgraph() CTR
* Additional commits viewable in [compare view](apache/tinkerpop@3.7.3...3.7.4)
  
Updates `org.apache.tinkerpop:gremlin-groovy` from 3.7.3 to 3.7.4
Changelog

*Sourced from [org.apache.tinkerpop:gremlin-groovy's changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc).*

> === 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

* [`fa698ba`](apache/tinkerpop@fa698ba) TinkerPop 3.7.4 release
* [`5df609d`](apache/tinkerpop@5df609d) CTR fix docker platform for arm image building
* [`c904af8`](apache/tinkerpop@c904af8) <https://issues.apache.org/jira/browse/TINKERPOP-3174> ([ArcadeData#3169](https://redirect.github.com/apache/tinkerpop/issues/3169))
* [`3f41356`](apache/tinkerpop@3f41356) Upgrade go to version 1.24. ([ArcadeData#3166](https://redirect.github.com/apache/tinkerpop/issues/3166))
* [`01c97ef`](apache/tinkerpop@01c97ef) Upgraded node from version 18 to 20. ([ArcadeData#3165](https://redirect.github.com/apache/tinkerpop/issues/3165))
* [`9809784`](apache/tinkerpop@9809784) CTR: TINKERPOP-3138 Fixed default `enableCompression` setting to be `false` i...
* [`1ef460a`](apache/tinkerpop@1ef460a) TINKERPOP-3177: Fix configuration of sessions in Go Client ([ArcadeData#3164](https://redirect.github.com/apache/tinkerpop/issues/3164))
* [`db36986`](apache/tinkerpop@db36986) Transaction reads should not interfere with add/update/delete ([ArcadeData#3163](https://redirect.github.com/apache/tinkerpop/issues/3163))
* [`16255f5`](apache/tinkerpop@16255f5) TINKERPOP-3040 Fixed limitation in multi-line parsing. ([ArcadeData#3162](https://redirect.github.com/apache/tinkerpop/issues/3162))
* [`cede190`](apache/tinkerpop@cede190) TINKERPOP-3154 Added docs/tests for subgraph() CTR
* Additional commits viewable in [compare view](apache/tinkerpop@3.7.3...3.7.4)
  
Updates `org.apache.tinkerpop:gremlin-test` from 3.7.3 to 3.7.4
Changelog

*Sourced from [org.apache.tinkerpop:gremlin-test's changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc).*

> === 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

* [`fa698ba`](apache/tinkerpop@fa698ba) TinkerPop 3.7.4 release
* [`5df609d`](apache/tinkerpop@5df609d) CTR fix docker platform for arm image building
* [`c904af8`](apache/tinkerpop@c904af8) <https://issues.apache.org/jira/browse/TINKERPOP-3174> ([ArcadeData#3169](https://redirect.github.com/apache/tinkerpop/issues/3169))
* [`3f41356`](apache/tinkerpop@3f41356) Upgrade go to version 1.24. ([ArcadeData#3166](https://redirect.github.com/apache/tinkerpop/issues/3166))
* [`01c97ef`](apache/tinkerpop@01c97ef) Upgraded node from version 18 to 20. ([ArcadeData#3165](https://redirect.github.com/apache/tinkerpop/issues/3165))
* [`9809784`](apache/tinkerpop@9809784) CTR: TINKERPOP-3138 Fixed default `enableCompression` setting to be `false` i...
* [`1ef460a`](apache/tinkerpop@1ef460a) TINKERPOP-3177: Fix configuration of sessions in Go Client ([ArcadeData#3164](https://redirect.github.com/apache/tinkerpop/issues/3164))
* [`db36986`](apache/tinkerpop@db36986) Transaction reads should not interfere with add/update/delete ([ArcadeData#3163](https://redirect.github.com/apache/tinkerpop/issues/3163))
* [`16255f5`](apache/tinkerpop@16255f5) TINKERPOP-3040 Fixed limitation in multi-line parsing. ([ArcadeData#3162](https://redirect.github.com/apache/tinkerpop/issues/3162))
* [`cede190`](apache/tinkerpop@cede190) TINKERPOP-3154 Added docs/tests for subgraph() CTR
* Additional commits viewable in [compare view](apache/tinkerpop@3.7.3...3.7.4)
  
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 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  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)
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant