Skip to content

Add test for two empty strings in binary comparator#1298

Merged
mergify[bot] merged 2 commits into
ArcadeData:mainfrom
gramian:main
Nov 5, 2023
Merged

Add test for two empty strings in binary comparator#1298
mergify[bot] merged 2 commits into
ArcadeData:mainfrom
gramian:main

Conversation

@gramian

@gramian gramian commented Nov 2, 2023

Copy link
Copy Markdown
Collaborator

What does this PR do?

This change adds a check for two empty strings to be compared to the equalsString method of the BinaryComparator class. As far as I understand it, strings are compared as byte arrays which can cause the observed error when comparing the last byte. However for a length of zero, as an empty string has, this causes an error.

Now I cannot say why this error does not happen with the current repo head, but I think it should or still might, thus I added this check for both argument strings being empty and preventing this error.

Related issues

#1297

Additional Notes

This specifically does not add the check to the equalsBytes as I do not know if a zero length array can actually be created.

Checklist

  • I have run the build using mvn clean package command
  • My unit tests cover both failure and success scenarios

if (buffer1 == null || buffer2 == null)
return false;

if (buffer1.equals("") && buffer2.equals(""))

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I could be more efficient doing if( buffer1.isEmpty() && buffer2.isEmpty() )

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Done.

@lvca lvca self-requested a review November 5, 2023 18:00
@lvca lvca added the bug label Nov 5, 2023
@lvca lvca added this to the 23.11.1 milestone Nov 5, 2023
@mergify mergify Bot merged commit b1166c1 into ArcadeData:main Nov 5, 2023
mergify Bot added a commit that referenced this pull request Dec 1, 2025
… to 2.20.1 [skip ci]

Bumps [org.codehaus.mojo:versions-maven-plugin](https://github.com/mojohaus/versions) from 2.19.1 to 2.20.1.
Release notes

*Sourced from [org.codehaus.mojo:versions-maven-plugin's releases](https://github.com/mojohaus/versions/releases).*

> 2.20.1
> ------
>
> 🐛 Bug Fixes
> -----------
>
> * Fixed [#1313](https://redirect.github.com/mojohaus/versions/issues/1313): Do not show existing version as update ([#1315](https://redirect.github.com/mojohaus/versions/pull/1315)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 2.20.0
> ------
>
> 🚀 New features and improvements
> -------------------------------
>
> * Allow filtering out pre releases in use-latest-versions ([#1283](https://redirect.github.com/mojohaus/versions/pull/1283)) [`@​Artur`](https://github.com/Artur)-
> * [#979](https://redirect.github.com/mojohaus/versions/issues/979): Output file is not overwritten by default ([#1279](https://redirect.github.com/mojohaus/versions/pull/1279)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 🐛 Bug Fixes
> -----------
>
> * Fixed a problem with dependency management filtering in the logged results ([#1298](https://redirect.github.com/mojohaus/versions/pull/1298)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixes [#1295](https://redirect.github.com/mojohaus/versions/issues/1295): getAllUpdates(boolean) should respect currentVersionRange ([#1297](https://redirect.github.com/mojohaus/versions/pull/1297)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixed [#1287](https://redirect.github.com/mojohaus/versions/issues/1287) - Versionless dependencies in dependencyManagement accepted by maven, but not bij resolve-ranges ([#1288](https://redirect.github.com/mojohaus/versions/pull/1288)) [`@​maroschutte`](https://github.com/maroschutte)
> * Artifact comparison should use semantic version comparison. ([#1281](https://redirect.github.com/mojohaus/versions/pull/1281)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Resolves [#1150](https://redirect.github.com/mojohaus/versions/issues/1150): Resolve multiple level properties (properties resolving to properties) ([#1276](https://redirect.github.com/mojohaus/versions/pull/1276)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 📝 Documentation updates
> -----------------------
>
> * Add more examples of ignoredVersions config parameter ([#1296](https://redirect.github.com/mojohaus/versions/pull/1296)) [`@​mikkoi`](https://github.com/mikkoi)
> * Fix broken href link in site ([#1294](https://redirect.github.com/mojohaus/versions/pull/1294)) [`@​mikkoi`](https://github.com/mikkoi)
> * Added remaining javadoc comments. ([#1293](https://redirect.github.com/mojohaus/versions/pull/1293)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Getting rid of javadoc warnings ([#1292](https://redirect.github.com/mojohaus/versions/pull/1292)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 👻 Maintenance
> -------------
>
> * ResolverAdapter: a thin adapter over Resolver ([#1301](https://redirect.github.com/mojohaus/versions/pull/1301)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixed a problem with dependency management filtering in the logged results ([#1298](https://redirect.github.com/mojohaus/versions/pull/1298)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fix broken href link in site ([#1294](https://redirect.github.com/mojohaus/versions/pull/1294)) [`@​mikkoi`](https://github.com/mikkoi)
> * Added remaining javadoc comments. ([#1293](https://redirect.github.com/mojohaus/versions/pull/1293)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Getting rid of javadoc warnings ([#1292](https://redirect.github.com/mojohaus/versions/pull/1292)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Removed a redundant integration test ([#1280](https://redirect.github.com/mojohaus/versions/pull/1280)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 📦 Dependency updates
> --------------------
>
> * Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0 ([#1312](https://redirect.github.com/mojohaus/versions/pull/1312)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump byteBuddyVersion from 1.18.0 to 1.18.1 ([#1311](https://redirect.github.com/mojohaus/versions/pull/1311)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-archiver from 4.10.3 to 4.10.4 ([#1307](https://redirect.github.com/mojohaus/versions/pull/1307)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump byteBuddyVersion from 1.17.7 to 1.18.0 ([#1309](https://redirect.github.com/mojohaus/versions/pull/1309)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump commons-codec:commons-codec from 1.19.0 to 1.20.0 ([#1303](https://redirect.github.com/mojohaus/versions/pull/1303)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump commons-io:commons-io from 2.20.0 to 2.21.0 ([#1305](https://redirect.github.com/mojohaus/versions/pull/1305)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-i18n from 1.0.0 to 1.1.0 ([#1306](https://redirect.github.com/mojohaus/versions/pull/1306)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-interactivity-api from 1.4 to 1.5.1 ([#1308](https://redirect.github.com/mojohaus/versions/pull/1308)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.3.0 to 3.4.0 ([#1302](https://redirect.github.com/mojohaus/versions/pull/1302)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-archiver from 4.10.2 to 4.10.3 ([#1290](https://redirect.github.com/mojohaus/versions/pull/1290)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.mojo:mojo-parent from 93 to 94 ([#1285](https://redirect.github.com/mojohaus/versions/pull/1285)) @[dependabot[bot]](https://github.com/apps/dependabot)

... (truncated)


Commits

* [`b296a4f`](mojohaus/versions@b296a4f) [maven-release-plugin] prepare release 2.20.1
* [`b243939`](mojohaus/versions@b243939) Fixed [#1313](https://redirect.github.com/mojohaus/versions/issues/1313): Do not show existing version as update ([#1315](https://redirect.github.com/mojohaus/versions/issues/1315))
* [`773d0f3`](mojohaus/versions@773d0f3) [maven-release-plugin] prepare for next development iteration
* [`2467d99`](mojohaus/versions@2467d99) [maven-release-plugin] prepare release 2.20.0
* [`4c240e7`](mojohaus/versions@4c240e7) Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0
* [`6d64537`](mojohaus/versions@6d64537) Bump byteBuddyVersion from 1.18.0 to 1.18.1
* [`7736ca6`](mojohaus/versions@7736ca6) Bump org.codehaus.plexus:plexus-archiver from 4.10.3 to 4.10.4
* [`37a5330`](mojohaus/versions@37a5330) Bump byteBuddyVersion from 1.17.7 to 1.18.0
* [`edeb5e7`](mojohaus/versions@edeb5e7) Bump commons-codec:commons-codec from 1.19.0 to 1.20.0
* [`88874e0`](mojohaus/versions@88874e0) Bump commons-io:commons-io from 2.20.0 to 2.21.0
* Additional commits viewable in [compare view](mojohaus/versions@2.19.1...2.20.1)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.codehaus.mojo:versions-maven-plugin&package-manager=maven&previous-version=2.19.1&new-version=2.20.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 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)
mergify Bot added a commit that referenced this pull request Jun 14, 2026
…48 in the github-actions group [skip ci]

Bumps the github-actions group with 1 update: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).
Updates `anthropics/claude-code-action` from 1.0.140 to 1.0.148
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.148
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.148>
>
> v1.0.147
> --------
>
> What's Changed
> --------------
>
> * Add pr-stamp-sweep review workflow by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1409](https://redirect.github.com/anthropics/claude-code-action/pull/1409)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.147>
>
> v1.0.146
> --------
>
> What's Changed
> --------------
>
> * test: add unit tests for parseGitHubContext and context type guards by [`@​mateuscmtropical`](https://github.com/mateuscmtropical) in [anthropics/claude-code-action#1404](https://redirect.github.com/anthropics/claude-code-action/pull/1404)
> * docs(faq): correct rebase FAQ to match actual behavior by [`@​bymle`](https://github.com/bymle) in [anthropics/claude-code-action#1370](https://redirect.github.com/anthropics/claude-code-action/pull/1370)
> * fix: fall back to inherited env for auth when inputs are empty by [`@​kirsanium`](https://github.com/kirsanium) in [anthropics/claude-code-action#1342](https://redirect.github.com/anthropics/claude-code-action/pull/1342)
> * fix: break SDK iterator after result message to prevent hang in pull\_request runs by [`@​scobbe`](https://github.com/scobbe) in [anthropics/claude-code-action#1339](https://redirect.github.com/anthropics/claude-code-action/pull/1339)
> * Pin setup-bun binary for post-steps by [`@​kiwigitops`](https://github.com/kiwigitops) in [anthropics/claude-code-action#1365](https://redirect.github.com/anthropics/claude-code-action/pull/1365)
> * fix: clear stale claude-prompts dir before each write by [`@​kyungilpark`](https://github.com/kyungilpark) in [anthropics/claude-code-action#1288](https://redirect.github.com/anthropics/claude-code-action/pull/1288)
> * Include labels in formatContext() output for issues and PRs by [`@​joshpayne-joby`](https://github.com/joshpayne-joby) in [anthropics/claude-code-action#1298](https://redirect.github.com/anthropics/claude-code-action/pull/1298)
> * fix(sanitizer): match attribute quotes by type to avoid mangling content by [`@​bymle`](https://github.com/bymle) in [anthropics/claude-code-action#1371](https://redirect.github.com/anthropics/claude-code-action/pull/1371)
> * docs: fix execution file parsing example by [`@​looooown2006`](https://github.com/looooown2006) in [anthropics/claude-code-action#1297](https://redirect.github.com/anthropics/claude-code-action/pull/1297)
> * fix(image-downloader): detect image type from magic bytes, not URL extension by [`@​pmespresso`](https://github.com/pmespresso) in [anthropics/claude-code-action#1396](https://redirect.github.com/anthropics/claude-code-action/pull/1396)
>
> New Contributors
> ----------------
>
> * [`@​mateuscmtropical`](https://github.com/mateuscmtropical) made their first contribution in [anthropics/claude-code-action#1404](https://redirect.github.com/anthropics/claude-code-action/pull/1404)
> * [`@​bymle`](https://github.com/bymle) made their first contribution in [anthropics/claude-code-action#1370](https://redirect.github.com/anthropics/claude-code-action/pull/1370)
> * [`@​kirsanium`](https://github.com/kirsanium) made their first contribution in [anthropics/claude-code-action#1342](https://redirect.github.com/anthropics/claude-code-action/pull/1342)
> * [`@​scobbe`](https://github.com/scobbe) made their first contribution in [anthropics/claude-code-action#1339](https://redirect.github.com/anthropics/claude-code-action/pull/1339)
> * [`@​kiwigitops`](https://github.com/kiwigitops) made their first contribution in [anthropics/claude-code-action#1365](https://redirect.github.com/anthropics/claude-code-action/pull/1365)
> * [`@​kyungilpark`](https://github.com/kyungilpark) made their first contribution in [anthropics/claude-code-action#1288](https://redirect.github.com/anthropics/claude-code-action/pull/1288)
> * [`@​joshpayne-joby`](https://github.com/joshpayne-joby) made their first contribution in [anthropics/claude-code-action#1298](https://redirect.github.com/anthropics/claude-code-action/pull/1298)
> * [`@​looooown2006`](https://github.com/looooown2006) made their first contribution in [anthropics/claude-code-action#1297](https://redirect.github.com/anthropics/claude-code-action/pull/1297)
> * [`@​pmespresso`](https://github.com/pmespresso) made their first contribution in [anthropics/claude-code-action#1396](https://redirect.github.com/anthropics/claude-code-action/pull/1396)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.146>
>
> v1.0.145
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.145>
>
> v1.0.144
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.144>
>
> v1.0.143
> --------
>
> What's Changed
> --------------
>
> * Drop --tsconfig-override from Bun invocations to avoid runtime crash by [`@​chsmc-ant`](https://github.com/chsmc-ant) in [anthropics/claude-code-action#1315](https://redirect.github.com/anthropics/claude-code-action/pull/1315)
>
> New Contributors
> ----------------
>
> * [`@​chsmc-ant`](https://github.com/chsmc-ant) made their first contribution in [anthropics/claude-code-action#1315](https://redirect.github.com/anthropics/claude-code-action/pull/1315)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.143>

... (truncated)


Commits

* [`d5726de`](anthropics/claude-code-action@d5726de) chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177
* [`56fa348`](anthropics/claude-code-action@56fa348) chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176
* [`82d95d4`](anthropics/claude-code-action@82d95d4) Add pr-stamp-sweep review workflow ([#1409](https://redirect.github.com/anthropics/claude-code-action/issues/1409))
* [`0cb4f3e`](anthropics/claude-code-action@0cb4f3e) chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175
* [`8551f4b`](anthropics/claude-code-action@8551f4b) fix(image-downloader): detect image type from magic bytes ([#1396](https://redirect.github.com/anthropics/claude-code-action/issues/1396))
* [`eba921f`](anthropics/claude-code-action@eba921f) docs: fix execution file parsing example ([#1297](https://redirect.github.com/anthropics/claude-code-action/issues/1297))
* [`36617bd`](anthropics/claude-code-action@36617bd) fix(sanitizer): match attribute quotes by type to avoid mangling content ([#1371](https://redirect.github.com/anthropics/claude-code-action/issues/1371))
* [`24b9156`](anthropics/claude-code-action@24b9156) Include labels in formatContext() output for issues and PRs ([#1298](https://redirect.github.com/anthropics/claude-code-action/issues/1298))
* [`9441a7f`](anthropics/claude-code-action@9441a7f) fix: clear stale claude-prompts dir before each write ([#1288](https://redirect.github.com/anthropics/claude-code-action/issues/1288))
* [`b371255`](anthropics/claude-code-action@b371255) pin setup-bun path for post steps ([#1365](https://redirect.github.com/anthropics/claude-code-action/issues/1365))
* Additional commits viewable in [compare view](anthropics/claude-code-action@fbda2eb...d5726de)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=anthropics/claude-code-action&package-manager=github\_actions&previous-version=1.0.140&new-version=1.0.148)](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  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
Add test for two empty strings in binary comparator
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
… to 2.20.1 [skip ci]

Bumps [org.codehaus.mojo:versions-maven-plugin](https://github.com/mojohaus/versions) from 2.19.1 to 2.20.1.
Release notes

*Sourced from [org.codehaus.mojo:versions-maven-plugin's releases](https://github.com/mojohaus/versions/releases).*

> 2.20.1
> ------
>
> 🐛 Bug Fixes
> -----------
>
> * Fixed [ArcadeData#1313](https://redirect.github.com/mojohaus/versions/issues/1313): Do not show existing version as update ([ArcadeData#1315](https://redirect.github.com/mojohaus/versions/pull/1315)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 2.20.0
> ------
>
> 🚀 New features and improvements
> -------------------------------
>
> * Allow filtering out pre releases in use-latest-versions ([ArcadeData#1283](https://redirect.github.com/mojohaus/versions/pull/1283)) [`@​Artur`](https://github.com/Artur)-
> * [ArcadeData#979](https://redirect.github.com/mojohaus/versions/issues/979): Output file is not overwritten by default ([ArcadeData#1279](https://redirect.github.com/mojohaus/versions/pull/1279)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 🐛 Bug Fixes
> -----------
>
> * Fixed a problem with dependency management filtering in the logged results ([ArcadeData#1298](https://redirect.github.com/mojohaus/versions/pull/1298)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixes [ArcadeData#1295](https://redirect.github.com/mojohaus/versions/issues/1295): getAllUpdates(boolean) should respect currentVersionRange ([ArcadeData#1297](https://redirect.github.com/mojohaus/versions/pull/1297)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixed [ArcadeData#1287](https://redirect.github.com/mojohaus/versions/issues/1287) - Versionless dependencies in dependencyManagement accepted by maven, but not bij resolve-ranges ([ArcadeData#1288](https://redirect.github.com/mojohaus/versions/pull/1288)) [`@​maroschutte`](https://github.com/maroschutte)
> * Artifact comparison should use semantic version comparison. ([ArcadeData#1281](https://redirect.github.com/mojohaus/versions/pull/1281)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Resolves [ArcadeData#1150](https://redirect.github.com/mojohaus/versions/issues/1150): Resolve multiple level properties (properties resolving to properties) ([ArcadeData#1276](https://redirect.github.com/mojohaus/versions/pull/1276)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 📝 Documentation updates
> -----------------------
>
> * Add more examples of ignoredVersions config parameter ([ArcadeData#1296](https://redirect.github.com/mojohaus/versions/pull/1296)) [`@​mikkoi`](https://github.com/mikkoi)
> * Fix broken href link in site ([ArcadeData#1294](https://redirect.github.com/mojohaus/versions/pull/1294)) [`@​mikkoi`](https://github.com/mikkoi)
> * Added remaining javadoc comments. ([ArcadeData#1293](https://redirect.github.com/mojohaus/versions/pull/1293)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Getting rid of javadoc warnings ([ArcadeData#1292](https://redirect.github.com/mojohaus/versions/pull/1292)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 👻 Maintenance
> -------------
>
> * ResolverAdapter: a thin adapter over Resolver ([ArcadeData#1301](https://redirect.github.com/mojohaus/versions/pull/1301)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixed a problem with dependency management filtering in the logged results ([ArcadeData#1298](https://redirect.github.com/mojohaus/versions/pull/1298)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fix broken href link in site ([ArcadeData#1294](https://redirect.github.com/mojohaus/versions/pull/1294)) [`@​mikkoi`](https://github.com/mikkoi)
> * Added remaining javadoc comments. ([ArcadeData#1293](https://redirect.github.com/mojohaus/versions/pull/1293)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Getting rid of javadoc warnings ([ArcadeData#1292](https://redirect.github.com/mojohaus/versions/pull/1292)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Removed a redundant integration test ([ArcadeData#1280](https://redirect.github.com/mojohaus/versions/pull/1280)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 📦 Dependency updates
> --------------------
>
> * Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0 ([ArcadeData#1312](https://redirect.github.com/mojohaus/versions/pull/1312)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump byteBuddyVersion from 1.18.0 to 1.18.1 ([ArcadeData#1311](https://redirect.github.com/mojohaus/versions/pull/1311)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-archiver from 4.10.3 to 4.10.4 ([ArcadeData#1307](https://redirect.github.com/mojohaus/versions/pull/1307)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump byteBuddyVersion from 1.17.7 to 1.18.0 ([ArcadeData#1309](https://redirect.github.com/mojohaus/versions/pull/1309)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump commons-codec:commons-codec from 1.19.0 to 1.20.0 ([ArcadeData#1303](https://redirect.github.com/mojohaus/versions/pull/1303)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump commons-io:commons-io from 2.20.0 to 2.21.0 ([ArcadeData#1305](https://redirect.github.com/mojohaus/versions/pull/1305)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-i18n from 1.0.0 to 1.1.0 ([ArcadeData#1306](https://redirect.github.com/mojohaus/versions/pull/1306)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-interactivity-api from 1.4 to 1.5.1 ([ArcadeData#1308](https://redirect.github.com/mojohaus/versions/pull/1308)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.3.0 to 3.4.0 ([ArcadeData#1302](https://redirect.github.com/mojohaus/versions/pull/1302)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-archiver from 4.10.2 to 4.10.3 ([ArcadeData#1290](https://redirect.github.com/mojohaus/versions/pull/1290)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.mojo:mojo-parent from 93 to 94 ([ArcadeData#1285](https://redirect.github.com/mojohaus/versions/pull/1285)) @[dependabot[bot]](https://github.com/apps/dependabot)

... (truncated)


Commits

* [`b296a4f`](mojohaus/versions@b296a4f) [maven-release-plugin] prepare release 2.20.1
* [`b243939`](mojohaus/versions@b243939) Fixed [ArcadeData#1313](https://redirect.github.com/mojohaus/versions/issues/1313): Do not show existing version as update ([ArcadeData#1315](https://redirect.github.com/mojohaus/versions/issues/1315))
* [`773d0f3`](mojohaus/versions@773d0f3) [maven-release-plugin] prepare for next development iteration
* [`2467d99`](mojohaus/versions@2467d99) [maven-release-plugin] prepare release 2.20.0
* [`4c240e7`](mojohaus/versions@4c240e7) Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0
* [`6d64537`](mojohaus/versions@6d64537) Bump byteBuddyVersion from 1.18.0 to 1.18.1
* [`7736ca6`](mojohaus/versions@7736ca6) Bump org.codehaus.plexus:plexus-archiver from 4.10.3 to 4.10.4
* [`37a5330`](mojohaus/versions@37a5330) Bump byteBuddyVersion from 1.17.7 to 1.18.0
* [`edeb5e7`](mojohaus/versions@edeb5e7) Bump commons-codec:commons-codec from 1.19.0 to 1.20.0
* [`88874e0`](mojohaus/versions@88874e0) Bump commons-io:commons-io from 2.20.0 to 2.21.0
* Additional commits viewable in [compare view](mojohaus/versions@2.19.1...2.20.1)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.codehaus.mojo:versions-maven-plugin&package-manager=maven&previous-version=2.19.1&new-version=2.20.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 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
…48 in the github-actions group [skip ci]

Bumps the github-actions group with 1 update: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).
Updates `anthropics/claude-code-action` from 1.0.140 to 1.0.148
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.148
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.148>
>
> v1.0.147
> --------
>
> What's Changed
> --------------
>
> * Add pr-stamp-sweep review workflow by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1409](https://redirect.github.com/anthropics/claude-code-action/pull/1409)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.147>
>
> v1.0.146
> --------
>
> What's Changed
> --------------
>
> * test: add unit tests for parseGitHubContext and context type guards by [`@​mateuscmtropical`](https://github.com/mateuscmtropical) in [anthropics/claude-code-action#1404](https://redirect.github.com/anthropics/claude-code-action/pull/1404)
> * docs(faq): correct rebase FAQ to match actual behavior by [`@​bymle`](https://github.com/bymle) in [anthropics/claude-code-action#1370](https://redirect.github.com/anthropics/claude-code-action/pull/1370)
> * fix: fall back to inherited env for auth when inputs are empty by [`@​kirsanium`](https://github.com/kirsanium) in [anthropics/claude-code-action#1342](https://redirect.github.com/anthropics/claude-code-action/pull/1342)
> * fix: break SDK iterator after result message to prevent hang in pull\_request runs by [`@​scobbe`](https://github.com/scobbe) in [anthropics/claude-code-action#1339](https://redirect.github.com/anthropics/claude-code-action/pull/1339)
> * Pin setup-bun binary for post-steps by [`@​kiwigitops`](https://github.com/kiwigitops) in [anthropics/claude-code-action#1365](https://redirect.github.com/anthropics/claude-code-action/pull/1365)
> * fix: clear stale claude-prompts dir before each write by [`@​kyungilpark`](https://github.com/kyungilpark) in [anthropics/claude-code-action#1288](https://redirect.github.com/anthropics/claude-code-action/pull/1288)
> * Include labels in formatContext() output for issues and PRs by [`@​joshpayne-joby`](https://github.com/joshpayne-joby) in [anthropics/claude-code-action#1298](https://redirect.github.com/anthropics/claude-code-action/pull/1298)
> * fix(sanitizer): match attribute quotes by type to avoid mangling content by [`@​bymle`](https://github.com/bymle) in [anthropics/claude-code-action#1371](https://redirect.github.com/anthropics/claude-code-action/pull/1371)
> * docs: fix execution file parsing example by [`@​looooown2006`](https://github.com/looooown2006) in [anthropics/claude-code-action#1297](https://redirect.github.com/anthropics/claude-code-action/pull/1297)
> * fix(image-downloader): detect image type from magic bytes, not URL extension by [`@​pmespresso`](https://github.com/pmespresso) in [anthropics/claude-code-action#1396](https://redirect.github.com/anthropics/claude-code-action/pull/1396)
>
> New Contributors
> ----------------
>
> * [`@​mateuscmtropical`](https://github.com/mateuscmtropical) made their first contribution in [anthropics/claude-code-action#1404](https://redirect.github.com/anthropics/claude-code-action/pull/1404)
> * [`@​bymle`](https://github.com/bymle) made their first contribution in [anthropics/claude-code-action#1370](https://redirect.github.com/anthropics/claude-code-action/pull/1370)
> * [`@​kirsanium`](https://github.com/kirsanium) made their first contribution in [anthropics/claude-code-action#1342](https://redirect.github.com/anthropics/claude-code-action/pull/1342)
> * [`@​scobbe`](https://github.com/scobbe) made their first contribution in [anthropics/claude-code-action#1339](https://redirect.github.com/anthropics/claude-code-action/pull/1339)
> * [`@​kiwigitops`](https://github.com/kiwigitops) made their first contribution in [anthropics/claude-code-action#1365](https://redirect.github.com/anthropics/claude-code-action/pull/1365)
> * [`@​kyungilpark`](https://github.com/kyungilpark) made their first contribution in [anthropics/claude-code-action#1288](https://redirect.github.com/anthropics/claude-code-action/pull/1288)
> * [`@​joshpayne-joby`](https://github.com/joshpayne-joby) made their first contribution in [anthropics/claude-code-action#1298](https://redirect.github.com/anthropics/claude-code-action/pull/1298)
> * [`@​looooown2006`](https://github.com/looooown2006) made their first contribution in [anthropics/claude-code-action#1297](https://redirect.github.com/anthropics/claude-code-action/pull/1297)
> * [`@​pmespresso`](https://github.com/pmespresso) made their first contribution in [anthropics/claude-code-action#1396](https://redirect.github.com/anthropics/claude-code-action/pull/1396)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.146>
>
> v1.0.145
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.145>
>
> v1.0.144
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.144>
>
> v1.0.143
> --------
>
> What's Changed
> --------------
>
> * Drop --tsconfig-override from Bun invocations to avoid runtime crash by [`@​chsmc-ant`](https://github.com/chsmc-ant) in [anthropics/claude-code-action#1315](https://redirect.github.com/anthropics/claude-code-action/pull/1315)
>
> New Contributors
> ----------------
>
> * [`@​chsmc-ant`](https://github.com/chsmc-ant) made their first contribution in [anthropics/claude-code-action#1315](https://redirect.github.com/anthropics/claude-code-action/pull/1315)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.143>

... (truncated)


Commits

* [`d5726de`](anthropics/claude-code-action@d5726de) chore: bump Claude Code to 2.1.177 and Agent SDK to 0.3.177
* [`56fa348`](anthropics/claude-code-action@56fa348) chore: bump Claude Code to 2.1.176 and Agent SDK to 0.3.176
* [`82d95d4`](anthropics/claude-code-action@82d95d4) Add pr-stamp-sweep review workflow ([ArcadeData#1409](https://redirect.github.com/anthropics/claude-code-action/issues/1409))
* [`0cb4f3e`](anthropics/claude-code-action@0cb4f3e) chore: bump Claude Code to 2.1.175 and Agent SDK to 0.3.175
* [`8551f4b`](anthropics/claude-code-action@8551f4b) fix(image-downloader): detect image type from magic bytes ([ArcadeData#1396](https://redirect.github.com/anthropics/claude-code-action/issues/1396))
* [`eba921f`](anthropics/claude-code-action@eba921f) docs: fix execution file parsing example ([ArcadeData#1297](https://redirect.github.com/anthropics/claude-code-action/issues/1297))
* [`36617bd`](anthropics/claude-code-action@36617bd) fix(sanitizer): match attribute quotes by type to avoid mangling content ([ArcadeData#1371](https://redirect.github.com/anthropics/claude-code-action/issues/1371))
* [`24b9156`](anthropics/claude-code-action@24b9156) Include labels in formatContext() output for issues and PRs ([ArcadeData#1298](https://redirect.github.com/anthropics/claude-code-action/issues/1298))
* [`9441a7f`](anthropics/claude-code-action@9441a7f) fix: clear stale claude-prompts dir before each write ([ArcadeData#1288](https://redirect.github.com/anthropics/claude-code-action/issues/1288))
* [`b371255`](anthropics/claude-code-action@b371255) pin setup-bun path for post steps ([ArcadeData#1365](https://redirect.github.com/anthropics/claude-code-action/issues/1365))
* Additional commits viewable in [compare view](anthropics/claude-code-action@fbda2eb...d5726de)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=anthropics/claude-code-action&package-manager=github\_actions&previous-version=1.0.140&new-version=1.0.148)](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  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
mergify Bot added a commit that referenced this pull request Jun 29, 2026
…e2e-python [skip ci]

Updates the requirements on [psycopg](https://github.com/psycopg/psycopg) to permit the latest version.
Changelog

*Sourced from [psycopg's changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst).*

> .. currentmodule:: psycopg
>
> .. index::
> single: Release notes
> single: News
>
> `psycopg` release notes
> =======================
>
> Future releases
> ---------------
>
> Psycopg 3.3.5 (unreleased)
> ^^^^^^^^^^^^^^^^^^^^^^^^^^
>
> * Discard prepared statements upon :sql:`ALTER *` or `DISCARD *`
>   (🎫`[#1307](https://github.com/psycopg/psycopg/issues/1307)`).
> * Fix `!wait_selector` wait function to not raise `!KeyError`
>   (:ticket:`[#1327](https://github.com/psycopg/psycopg/issues/1327)`).
>
> Current release
> ---------------
>
> Psycopg 3.3.4
> ^^^^^^^^^^^^^
>
> * Fix possible spurious connection timeout in systems with very long uptimes
>   in C extension (:ticket:`[#1280](https://github.com/psycopg/psycopg/issues/1280)`).
> * Fix client-side adaptation of enums whose name require quotes
>   (:ticket:`[#1298](https://github.com/psycopg/psycopg/issues/1298)`).
> * Consistently populate `~Cursor.statusmessage` after `~Cursor.executemany()`
>   (:ticket:`[#1302](https://github.com/psycopg/psycopg/issues/1302)`).
>
> Psycopg 3.3.3
> ^^^^^^^^^^^^^
>
> * Retain `Error.pgconn` when raising a single exception for multiple connection
>   attempt errors (:ticket:`[#1246](https://github.com/psycopg/psycopg/issues/1246)`).
> * Return a proper error when server sends `ErrorResponse` for a `Sync` after
>   a `Parse` (:ticket:`[#1260](https://github.com/psycopg/psycopg/issues/1260)`).
>
> Psycopg 3.3.2
> ^^^^^^^^^^^^^
>
> Fix race condition in adapters at startup (:ticket:`[#1230](https://github.com/psycopg/psycopg/issues/1230)`).

... (truncated)


Commits

* [`83f1103`](psycopg/psycopg@83f1103) chore: bump psycopg\_pool package version to 3.3.1
* [`1828770`](psycopg/psycopg@1828770) chore: bump psycopg package version to 3.3.4
* [`8be14bb`](psycopg/psycopg@8be14bb) Merge pull request [#1301](https://redirect.github.com/psycopg/psycopg/issues/1301) from oliverhaas/fix/sync-pool-open-race
* [`aee0bf2`](psycopg/psycopg@aee0bf2) fix(pool): fix race in the construction of the sync ConnectionPool lock
* [`bc4d303`](psycopg/psycopg@bc4d303) chore(deps): bump the actions group across 1 directory with 4 updates
* [`785379f`](psycopg/psycopg@785379f) fix: retain statusmessage after executemany with returning=False
* [`8882a73`](psycopg/psycopg@8882a73) perf: do less if X in Y: return Y[X] for cache-like patterns
* [`2f78539`](psycopg/psycopg@2f78539) Merge pull request [#1299](https://redirect.github.com/psycopg/psycopg/issues/1299) from dvarrazzo/fix-camel-enum
* [`37ef1dc`](psycopg/psycopg@37ef1dc) test: skip test on crdb depending on precise regtype behaviour
* [`7f2f1d1`](psycopg/psycopg@7f2f1d1) fix: fix client-side representation of enums requiring quotes
* Additional commits viewable in [compare view](psycopg/psycopg@3.2.13...3.3.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 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)
mergify Bot added a commit that referenced this pull request Jun 29, 2026
…0 in /e2e-python [skip ci]

Updates the requirements on [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version.
Release notes

*Sourced from [pytest-asyncio's releases](https://github.com/pytest-dev/pytest-asyncio/releases).*

> pytest-asyncio v1.4.0
> ---------------------
>
> [1.4.0](https://github.com/pytest-dev/pytest-asyncio/tree/1.4.0) - 2026-05-26
> =============================================================================
>
> Deprecated
> ----------
>
> * Overriding the *event\_loop\_policy* fixture is deprecated. Use the `pytest_asyncio_loop_factories` hook instead. ([#1419](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1419))
>
> Added
> -----
>
> * Added the `pytest_asyncio_loop_factories` hook to parametrize asyncio tests with custom event loop factories.
>
>   The hook returns a mapping of factory names to loop factories, and `pytest.mark.asyncio(loop_factories=[...])` selects a subset of configured factories per test. When a single factory is configured, test names are unchanged.
>
>   Synchronous `@pytest_asyncio.fixture` functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via `asyncio.run()` or `asyncio.set_event_loop(None)`). ([#1164](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1164))
>
> Changed
> -------
>
> * Improved the readability of the warning message that is displayed when `asyncio_default_fixture_loop_scope` is unset ([#1298](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1298))
> * Only import `asyncio.AbstractEventLoopPolicy` for type checking to avoid raising
>   a DeprecationWarning. ([#1394](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1394))
> * Updated minimum supported pytest version to v8.4.0. ([#1397](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1397))
>
> Fixed
> -----
>
> * Fixed a `ResourceWarning: unclosed event loop` warning that could occur when a synchronous test called `asyncio.run()` or otherwise unset the current event loop after pytest-asyncio had run an async test or fixture. ([#724](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/724))
>
> Notes for Downstream Packagers
> ------------------------------
>
> * Added dependency on `sphinx-tabs >= 3.5` to organize documentation examples into tabs. ([#1395](https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1395))


Commits

* [`6e14cd2`](pytest-dev/pytest-asyncio@6e14cd2) chore: Prepare release of v1.4.0.
* [`4b900fb`](pytest-dev/pytest-asyncio@4b900fb) Build(deps): Bump codecov/codecov-action from 6.0.0 to 6.0.1
* [`ab9f632`](pytest-dev/pytest-asyncio@ab9f632) Build(deps): Bump zipp from 3.23.1 to 4.1.0
* [`a56fc77`](pytest-dev/pytest-asyncio@a56fc77) Build(deps): Bump hypothesis from 6.152.6 to 6.152.8
* [`e8bae9b`](pytest-dev/pytest-asyncio@e8bae9b) Build(deps): Bump requests from 2.34.0 to 2.34.2
* [`fc43340`](pytest-dev/pytest-asyncio@fc43340) Build(deps): Bump idna from 3.14 to 3.15
* [`762eaf5`](pytest-dev/pytest-asyncio@762eaf5) Build(deps): Bump jaraco-functools from 4.4.0 to 4.5.0
* [`b62e222`](pytest-dev/pytest-asyncio@b62e222) Build(deps): Bump click from 8.3.3 to 8.4.0
* [`9190447`](pytest-dev/pytest-asyncio@9190447) Build(deps): Bump pydantic from 2.13.3 to 2.13.4
* [`82a393c`](pytest-dev/pytest-asyncio@82a393c) ci: Remove unnecessary debug output.
* Additional commits viewable in [compare view](pytest-dev/pytest-asyncio@v1.2.0...v1.4.0)
  
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)
mergify Bot added a commit that referenced this pull request Jun 29, 2026
….4 in /e2e-python [skip ci]

Updates the requirements on [psycopg-binary](https://github.com/psycopg/psycopg) to permit the latest version.
Changelog

*Sourced from [psycopg-binary's changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst).*

> .. currentmodule:: psycopg
>
> .. index::
> single: Release notes
> single: News
>
> `psycopg` release notes
> =======================
>
> Future releases
> ---------------
>
> Psycopg 3.3.5 (unreleased)
> ^^^^^^^^^^^^^^^^^^^^^^^^^^
>
> * Discard prepared statements upon :sql:`ALTER *` or `DISCARD *`
>   (🎫`[#1307](https://github.com/psycopg/psycopg/issues/1307)`).
> * Fix `!ProgrammingError` when dumping non-`!None` values with
>   no `!NoneType` dumper registered in python implementation (:ticket:`[#1325](https://github.com/psycopg/psycopg/issues/1325)`).
> * Fix `!wait_selector` wait function to not raise `!KeyError`
>   (:ticket:`[#1327](https://github.com/psycopg/psycopg/issues/1327)`).
>
> Current release
> ---------------
>
> Psycopg 3.3.4
> ^^^^^^^^^^^^^
>
> * Fix possible spurious connection timeout in systems with very long uptimes
>   in C extension (:ticket:`[#1280](https://github.com/psycopg/psycopg/issues/1280)`).
> * Fix client-side adaptation of enums whose name require quotes
>   (:ticket:`[#1298](https://github.com/psycopg/psycopg/issues/1298)`).
> * Consistently populate `~Cursor.statusmessage` after `~Cursor.executemany()`
>   (:ticket:`[#1302](https://github.com/psycopg/psycopg/issues/1302)`).
>
> Psycopg 3.3.3
> ^^^^^^^^^^^^^
>
> * Retain `Error.pgconn` when raising a single exception for multiple connection
>   attempt errors (:ticket:`[#1246](https://github.com/psycopg/psycopg/issues/1246)`).
> * Return a proper error when server sends `ErrorResponse` for a `Sync` after
>   a `Parse` (:ticket:`[#1260](https://github.com/psycopg/psycopg/issues/1260)`).
>
> Psycopg 3.3.2
> ^^^^^^^^^^^^^
>
> Fix race condition in adapters at startup (:ticket:`[#1230](https://github.com/psycopg/psycopg/issues/1230)`).

... (truncated)


Commits

* [`83f1103`](psycopg/psycopg@83f1103) chore: bump psycopg\_pool package version to 3.3.1
* [`1828770`](psycopg/psycopg@1828770) chore: bump psycopg package version to 3.3.4
* [`8be14bb`](psycopg/psycopg@8be14bb) Merge pull request [#1301](https://redirect.github.com/psycopg/psycopg/issues/1301) from oliverhaas/fix/sync-pool-open-race
* [`aee0bf2`](psycopg/psycopg@aee0bf2) fix(pool): fix race in the construction of the sync ConnectionPool lock
* [`bc4d303`](psycopg/psycopg@bc4d303) chore(deps): bump the actions group across 1 directory with 4 updates
* [`785379f`](psycopg/psycopg@785379f) fix: retain statusmessage after executemany with returning=False
* [`8882a73`](psycopg/psycopg@8882a73) perf: do less if X in Y: return Y[X] for cache-like patterns
* [`2f78539`](psycopg/psycopg@2f78539) Merge pull request [#1299](https://redirect.github.com/psycopg/psycopg/issues/1299) from dvarrazzo/fix-camel-enum
* [`37ef1dc`](psycopg/psycopg@37ef1dc) test: skip test on crdb depending on precise regtype behaviour
* [`7f2f1d1`](psycopg/psycopg@7f2f1d1) fix: fix client-side representation of enums requiring quotes
* Additional commits viewable in [compare view](psycopg/psycopg@3.2.13...3.3.4)
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.

2 participants