Update the python bindings for the version 26.4.2 - #4003
Conversation
- Updated tests to create edge types without UNIDIRECTIONAL keyword. - Added tests for OpenCypher index creation, constraints, and DDL operations. - Enhanced vector index tests to include custom ID properties and metadata. - Improved error handling and assertions in document import tests. - Added tests for vector neighbors functionality using both SQL and OpenCypher. Co-authored-by: Copilot <copilot@github.com>
Not up to standards ⛔🔴 Issues
|
| Category | Results |
|---|---|
| Documentation | 38 minor |
| Security | 32 high 1 critical 7 medium |
🟢 Metrics 304 complexity
Metric Results Complexity 304
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
There was a problem hiding this comment.
Code Review
This pull request significantly expands the ArcadeDB Python bindings by adding comprehensive examples for time-series, geospatial, and graph algorithms, alongside Neo4j support for benchmarks. It refactors vector operations to a SQL-first approach and improves core library features like async executor management, JVM configuration, and build script organization. Review feedback highlights an opportunity to reduce code duplication in benchmark scripts by refactoring shared logic into a utility module. Furthermore, the use of f-strings for SQL query construction in vector search examples was identified as a potential security vulnerability, with a recommendation to adopt parameterized queries to improve robustness.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4003 +/- ##
==========================================
+ Coverage 64.19% 64.59% +0.40%
==========================================
Files 1597 1597
Lines 120037 120040 +3
Branches 25554 25548 -6
==========================================
+ Hits 77054 77540 +486
+ Misses 32328 31737 -591
- Partials 10655 10763 +108 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…inputs and add tests for parameterized neighbors Co-authored-by: Copilot <copilot@github.com>
…o [skip ci] Bumps [marked](https://github.com/markedjs/marked) from 18.0.5 to 18.0.6. Release notes *Sourced from [marked's releases](https://github.com/markedjs/marked/releases).* > v18.0.6 > ------- > > [18.0.6](markedjs/marked@v18.0.5...v18.0.6) (2026-07-09) > ----------------------------------------------------------------------------------- > > ### Bug Fixes > > * Avoid O(n^2) backtracking in inline link href regex ([#4013](https://redirect.github.com/markedjs/marked/issues/4013)) ([a009808](markedjs/marked@a009808)) > * Fix ordered lists after blockquotes ([#4003](https://redirect.github.com/markedjs/marked/issues/4003)) ([33928d0](markedjs/marked@33928d0)) > * keep trailing text on HTML block close line for PI, declarations, and CDATA ([#3991](https://redirect.github.com/markedjs/marked/issues/3991)) ([bbb84c8](markedjs/marked@bbb84c8)) Commits * [`39bd884`](markedjs/marked@39bd884) chore(release): 18.0.6 [skip ci] * [`6bce57d`](markedjs/marked@6bce57d) chore(deps-dev): bump `@semantic-release/github` from 12.0.8 to 12.0.9 ([#4009](https://redirect.github.com/markedjs/marked/issues/4009)) * [`63a4bba`](markedjs/marked@63a4bba) chore(deps-dev): bump markdown-it from 14.2.0 to 14.3.0 ([#4010](https://redirect.github.com/markedjs/marked/issues/4010)) * [`a009808`](markedjs/marked@a009808) fix: Avoid O(n^2) backtracking in inline link href regex ([#4013](https://redirect.github.com/markedjs/marked/issues/4013)) * [`33928d0`](markedjs/marked@33928d0) fix: Fix ordered lists after blockquotes ([#4003](https://redirect.github.com/markedjs/marked/issues/4003)) * [`bbb84c8`](markedjs/marked@bbb84c8) fix: keep trailing text on HTML block close line for PI, declarations, and CD... * [`d2af54e`](markedjs/marked@d2af54e) chore(deps-dev): bump eslint from 10.5.0 to 10.6.0 ([#4005](https://redirect.github.com/markedjs/marked/issues/4005)) * [`f403898`](markedjs/marked@f403898) chore(deps-dev): bump `@arethetypeswrong/cli` from 0.18.3 to 0.18.4 ([#4006](https://redirect.github.com/markedjs/marked/issues/4006)) * [`f8f4112`](markedjs/marked@f8f4112) chore(deps): bump actions/checkout from 6 to 7 ([#4000](https://redirect.github.com/markedjs/marked/issues/4000)) * [`5ddfd8a`](markedjs/marked@5ddfd8a) chore: Update repository metadata URLs ([#3998](https://redirect.github.com/markedjs/marked/issues/3998)) * Additional commits viewable in [compare view](markedjs/marked@v18.0.5...v18.0.6) [](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)
Updated python bindings to accommodate the java changes.