Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 19, 2025

Bumps the dependencies group with 9 updates in the / directory:

Package From To
pytest-postgresql 7.0.1 7.0.2
psycopg[binary] 3.2.6 3.2.9
sqlalchemy 2.0.40 2.0.41
pydantic 2.11.2 2.11.4
pydantic-settings 2.8.1 2.9.1
uvicorn[standard] 0.34.0 0.34.2
pendulum 3.0.0 3.1.0
cython 3.0.12 3.1.1
setuptools 78.1.0 80.7.1

Updates pytest-postgresql from 7.0.1 to 7.0.2

Changelog

Sourced from pytest-postgresql's changelog.

7.0.2 (2025-05-17)

Bugfixes

  • Fix an issue where number of search counts has been hard-default set to 5 by command-line default and ini setting could not override it. ([#1115](https://github.com/dbfixtures/pytest-postgresql/issues/1115) <https://github.com/dbfixtures/pytest-postgresql/issues/1115>__)

  • Update minimum required pytest version to 7.2

    Additionally added test run of pytest-postgresql against oldest supported versions. ([#1131](https://github.com/dbfixtures/pytest-postgresql/issues/1131) <https://github.com/dbfixtures/pytest-postgresql/issues/1131>__)

Miscellaneus

  • Different approach to oldest requirements file. Trying to get dependabot off of it.
  • Test pipeline optimisations
Commits
  • 84e0c9d Release 7.0.2
  • 9e25533 Merge pull request #1145 from dbfixtures/diff-oldest
  • 9653967 Merge pull request #1143 from dbfixtures/dependabot/github_actions/codecov/co...
  • 27db090 Rename requirements.txt to requirements.rq
  • 9e688a1 build(deps): bump fizyk/actions-reuse from 3.0.2 to 3.1.0
  • b897e8e build(deps): bump codecov/codecov-action from 5.4.2 to 5.4.3
  • 336b2c0 build(deps): bump fizyk/actions-reuse from 3.0.2 to 3.1.0
  • 4f82c8c Update dependabot pip configuration
  • 73b0f14 Merge pull request #1140 from dbfixtures/simplify-tests
  • 60d594d build(deps-dev): bump types-setuptools
  • Additional commits viewable in compare view

Updates psycopg[binary] from 3.2.6 to 3.2.9

Changelog

Sourced from psycopg[binary]'s changelog.

.. currentmodule:: psycopg

.. index:: single: Release notes single: News

psycopg release notes

Current release

Psycopg 3.2.9 ^^^^^^^^^^^^^

  • Revert the libpq included in the binary packages from conda forge to vcpkg because GSS connection crashes (:ticket:[#1088](https://github.com/psycopg/psycopg/issues/1088)).

Psycopg 3.2.8 ^^^^^^^^^^^^^

  • Fix DateFromTicks and TimeFromTicks return values to return a date and a time referred to the UTC timezone rather than to the local timezone. For consistency, TimestampFromTicks to return a datetime in UTC rather than in the local timezone (:ticket:[#1058](https://github.com/psycopg/psycopg/issues/1058)).
  • Fix ~Cursor.rownumber after using ~AsyncServerCursor.scroll() on AsyncServerCursor (:ticket:[#1066](https://github.com/psycopg/psycopg/issues/1066)).
  • Fix interval parsing with days or other parts and negative time in C module (:ticket:[#1071](https://github.com/psycopg/psycopg/issues/1071)).
  • Don't process further connection attempts after Ctrl-C (:ticket:[#1077](https://github.com/psycopg/psycopg/issues/1077)).
  • Fix cursors to correctly iterate over rows even if their row factory returns None (:ticket:[#1073](https://github.com/psycopg/psycopg/issues/1073)).
  • Fix ConnectionInfo.port when the port is specified as an empty string (:ticket:[#1078](https://github.com/psycopg/psycopg/issues/1078)).
  • Report all the attempts error messages in the exception raised for a connection failure (:ticket:[#1069](https://github.com/psycopg/psycopg/issues/1069)).
  • Improve logging on connection (:ticket:[#1085](https://github.com/psycopg/psycopg/issues/1085)).
  • Add support for PostgreSQL 18 libpq (:ticket:[#1082](https://github.com/psycopg/psycopg/issues/1082)).

Psycopg 3.2.7 ^^^^^^^^^^^^^

  • Add SRID support to shapely dumpers/loaders (:ticket:[#1028](https://github.com/psycopg/psycopg/issues/1028)).
  • Add support for binary hstore (:ticket:[#1030](https://github.com/psycopg/psycopg/issues/1030)).

Psycopg 3.2.6 ^^^^^^^^^^^^^

... (truncated)

Commits
  • dfce629 chore: bump psycopg package version to 3.2.9
  • 4e97cef Merge branch 'fix-1088' into maint-3.2
  • c182002 docs: mention fix in version 3.2.9
  • 1619579 Revert "ci: install win32 libpq from conda force"
  • 19a6e3d chore: bump psycopg package version to 3.2.9.dev1
  • 5b0a5c0 chore: bump psycopg package version to 3.2.8
  • d5ff770 ci: make sure versions are strings, not floats
  • b5ba0d9 chore: add funding link to project metadata
  • 1e6dfd1 fix(c): fix building on 32 bit with libpq 18
  • 8b9e4bf chore(binary): bump OpenSSL to 3.5.0
  • Additional commits viewable in compare view

Updates sqlalchemy from 2.0.40 to 2.0.41

Release notes

Sourced from sqlalchemy's releases.

2.0.41

Released: May 14, 2025

platform

  • [platform] [bug] Adjusted the test suite as well as the ORM's method of scanning classes for annotations to work under current beta releases of Python 3.14 (currently 3.14.0b1) as part of an ongoing effort to support the production release of this Python release. Further changes to Python's means of working with annotations is expected in subsequent beta releases for which SQLAlchemy's test suite will need further adjustments.

    References: #12405

engine

  • [engine] [bug] The error message that is emitted when a URL cannot be parsed no longer includes the URL itself within the error message.

    References: #12579

typing

  • [typing] [bug] Removed __getattr__() rule from sqlalchemy/__init__.py that appeared to be trying to correct for a previous typographical error in the imports. This rule interferes with type checking and is removed.

    References: #12588

postgresql

  • [postgresql] [usecase] Added support for postgresql_include keyword argument to _schema.UniqueConstraint and _schema.PrimaryKeyConstraint. Pull request courtesy Denis Laxalde.

    References: #10665

mysql

  • [mysql] [bug] Fixed regression caused by the DEFAULT rendering changes in version 2.0.40 via #12425 where using lowercase on update in a MySQL server default would incorrectly apply parenthesis, leading to errors when MySQL interpreted the rendered DDL. Pull request courtesy Alexander Ruehe.

... (truncated)

Commits

Updates pydantic from 2.11.2 to 2.11.4

Release notes

Sourced from pydantic's releases.

v2.11.4 2025-04-29

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

v2.11.3 2025-04-08

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.11.2...v2.11.3

Changelog

Sourced from pydantic's changelog.

v2.11.4 (2025-04-29)

GitHub release

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

v2.11.3 (2025-04-08)

GitHub release

What's Changed

Packaging

Fixes

  • Preserve field description when rebuilding model fields by @​Viicos in #11698
Commits
  • d444cd1 Prepare release v2.11.4
  • 828fc48 Add documentation note about common pitfall with the annotated pattern
  • 42bf1fd Bump pydantic-core to v2.33.2 (#11804)
  • 7b3f513 Allow config and bases to be specified together in create_model()
  • fc52138 Traverse function-before schemas during schema gathering
  • 25af789 Fix issue with recursive generic models
  • 91ef6bb Update monthly download count in documentation
  • a830775 Bump mkdocs-llmstxt to v0.2.0
  • f5d1c87 Fix crash when expanding root type in the mypy plugin
  • c80bb35 Remove coercion of decimal constraints
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.8.1 to 2.9.1

Release notes

Sourced from pydantic-settings's releases.

v2.9.1

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.9.0...v2.9.1

v2.9.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.8.1...v2.9.0

Commits

Updates uvicorn[standard] from 0.34.0 to 0.34.2

Release notes

Sourced from uvicorn[standard]'s releases.

Version 0.34.2

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.34.1...0.34.2

Version 0.34.1

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.34.0...0.34.1

Changelog

Sourced from uvicorn[standard]'s changelog.

0.34.2 (April 19, 2025)

Fixed

  • Flush stdout buffer on Windows to trigger reload (#2604)

0.34.1 (April 13, 2025)

Deprecated

  • Deprecate ServerState in the main module (#2581)
Commits

Updates pendulum from 3.0.0 to 3.1.0

Release notes

Sourced from pendulum's releases.

3.1.0

See CHANGELOG.md for details

Changelog

Sourced from pendulum's changelog.

[3.1.0] - 2025-04-19

Added

  • Added support for Python 3.13 #871

Changed

  • Removed support for Python 3.8 #863
  • Fixed pure Python wheels support #889
  • Fixed pendulum.tz.timezones() to use system tzdata #801
  • Fixed spelling of Kyiv #885
  • Fixed DeprecationWarning from utcfromtimestamp #887
  • Fixed parsing of invalid intervals #843

Locales

  • Added UA (Ukraine) locale #793
  • Added BG (Bulgarian) locale #812
  • Fixed KO (Korean) translations for before and after #858
Commits
  • e57ca8e Include missing file in the sdist (#895)
  • 104c700 Version bump (#894)
  • 85288e6 Fix release workflow (#893)
  • c3aca76 Pre-release changelog update (#892)
  • 4dbb137 Remove unnecessary duplicated sdist build
  • 15d4f1b Fix sed in release pipeline. (#890)
  • df18589 Fix noext builds and setup or Trusted publisher
  • 5bd4a1d Merge pull request #887 from Secrus/fromtimestamp-fix
  • 038d115 Fix DeprecationWarning for timezone-aware fromtimestamp
  • dcd9816 Merge pull request #886 from python-pendulum/dependabot/cargo/rust/pyo3-0.24.1
  • Additional commits viewable in compare view

Updates cython from 3.0.12 to 3.1.1

Release notes

Sourced from cython's releases.

3.1.1

No release notes provided.

3.1.0-1

No release notes provided.

3.1.0

No release notes provided.

3.1.0rc2

No release notes provided.

3.1.0rc1

No release notes provided.

3.1.0b1

No release notes provided.

3.1.0a1

3.1.0 alpha 1 (2024-11-08)

Features added

  • Support for freethreading builds of CPython 3.13 was added. It comes with a new directive freethreading_compatible=True to mark modules as free-threading compatible (Py_mod_gil). https://github.com/cython/cython/issues?q=label%3A"nogil+CPython" Patches by Lysandros Nikolaou and Nathan Goldbaum. (Github issue :issue:6162)

  • Support for monitoring Cython modules via sys.monitoring in CPython 3.13+ was added. For coverage reporting, this needs to be disabled with -DCYTHON_USE_SYS_MONITORING=0 as long as coverage.py does not support sys.monitoring for coverage plugins. (Github issue :issue:6144)

  • Many issues with the Limited C-API were resolved. It is now sufficient to define the macro Py_LIMITED_API to activate the support. https://github.com/cython/cython/issues?q=label%3A%22limited+api%22

  • Support for GraalPython was improved (but is still incomplete).

  • Several issues with the gdb support were resolved. Patches by Kent Slaney. (Github issues :issue:5955, :issue:5948)

  • typing.Union[SomeType, None] and SomeType | None are now understood and mean the same as typing.Optional[SomeType], allowing None in type checks. (Github issue :issue:6254)

  • cython.const[] and cython.volatile[] are now available as type modifiers in Python code.

... (truncated)

Changelog

Sourced from cython's changelog.

3.1.1 (2025-05-19)

Bugs fixed

  • A reference leak in the async delegation code was fixed. (Github issues :issue:6850, :issue:6878)

  • Conditional if-else expressions mixing Python and C (numeric) types could end up inferring an overly tight result type, thus leading to unexpected type conversions, runtime exceptions on assignment, or incorrect "temporary assignment" compile errors. (Github issue :issue:6854)

  • Some Limited API issues were resolved. (Github issue :issue:6862)

  • Large C long long values could be truncated when passed into PyPy. (Github issue :issue:6890)

  • callable() incorrectly reported False in PyPy for classes with metaclasses. Patch by Anatolii Aniskovych. (Github issue :issue:6892)

  • The signature of fused functions was no longer introspectable in Cython 3.1.0. (Github issue :issue:6855)

  • Coroutines could generate invalid C with line tracing enabled. (Github issue :issue:6865)

  • Code using complex() could generate invalid C code missing type declarations. (Github issue :issue:6860)

  • Code using e.g. list[int | None] outside of variable/argument annotations failed to compile. (Github issue :issue:6856)

  • Code using ctuples in a const context could generate invalid C. (Github issue :issue:6864)

  • Accessing special methods on cpdef enums failed to compile.

  • Some C compiler warnings were resolved. Patches by Daniel Larraz. (Github issues :issue:6876, :issue:3172, :issue:6873, :issue:6877)

  • Re-establish support for PyPy 3.8. (Github issue :issue:6867)

3.1.0 (2025-05-08)

... (truncated)

Commits
  • aeadbbe Prepare release of Cython 3.1.1.
  • 9532c33 Update changelog.
  • e7baa59 Use PyCallable_Check() instead of type slots for callable() in PyPy (GH-6894)
  • 279377d Fix race in dict getter (GH-6849)
  • 987891e Update changelog.
  • edac547 Avoid calling "PyLong_FromUnsignedLongLong()" in PyPy.
  • 8e107e9 Document CYTHON_USE_SYS_MONITORING (GH-6886)
  • 56ab917 CI: Fix PyPy3.8 build (GH-6889)
  • 0ab0e32 Update trace/profile test config for Py3.12, which at least partially works.
  • c4adc2d CI: Also disable "twine" usage on "Py*t-dev" versions.
  • Additional commits viewable in compare view

Updates setuptools from 78.1.0 to 80.7.1

Changelog

Sourced from setuptools's changelog.

v80.7.1

Bugfixes

  • Only attempt to fetch eggs for unsatisfied requirements. (#4998)
  • In installer, when discovering egg dists, let metadata discovery search each egg. (#4998)

v80.7.0

Features

  • Removed usage of pkg_resources from installer. Set an official deadline on the installer deprecation to 2025-10-31. (#4997)

Misc

v80.6.0

Features

  • Added a build dependency on coherent.licensed to inject the declared license text at build time. (#4981)

Misc

v80.5.0

Features

  • Replaced more references to pkg_resources with importlib equivalents. (#3085)

Misc

... (truncated)

Commits

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytest-postgresql](https://github.com/dbfixtures/pytest-postgresql) | `7.0.1` | `7.0.2` |
| [psycopg[binary]](https://github.com/psycopg/psycopg) | `3.2.6` | `3.2.9` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.40` | `2.0.41` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.11.2` | `2.11.4` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.8.1` | `2.9.1` |
| [uvicorn[standard]](https://github.com/encode/uvicorn) | `0.34.0` | `0.34.2` |
| [pendulum](https://github.com/sdispater/pendulum) | `3.0.0` | `3.1.0` |
| [cython](https://github.com/cython/cython) | `3.0.12` | `3.1.1` |
| [setuptools](https://github.com/pypa/setuptools) | `78.1.0` | `80.7.1` |



Updates `pytest-postgresql` from 7.0.1 to 7.0.2
- [Changelog](https://github.com/dbfixtures/pytest-postgresql/blob/main/CHANGES.rst)
- [Commits](dbfixtures/pytest-postgresql@v7.0.1...v7.0.2)

Updates `psycopg[binary]` from 3.2.6 to 3.2.9
- [Changelog](https://github.com/psycopg/psycopg/blob/3.2.9/docs/news.rst)
- [Commits](psycopg/psycopg@3.2.6...3.2.9)

Updates `sqlalchemy` from 2.0.40 to 2.0.41
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Updates `pydantic` from 2.11.2 to 2.11.4
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.2...v2.11.4)

Updates `pydantic-settings` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.8.1...v2.9.1)

Updates `uvicorn[standard]` from 0.34.0 to 0.34.2
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.34.0...0.34.2)

Updates `pendulum` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/sdispater/pendulum/releases)
- [Changelog](https://github.com/python-pendulum/pendulum/blob/master/CHANGELOG.md)
- [Commits](python-pendulum/pendulum@3.0.0...3.1.0)

Updates `cython` from 3.0.12 to 3.1.1
- [Release notes](https://github.com/cython/cython/releases)
- [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst)
- [Commits](cython/cython@3.0.12...3.1.1)

Updates `setuptools` from 78.1.0 to 80.7.1
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v78.1.0...v80.7.1)

---
updated-dependencies:
- dependency-name: pytest-postgresql
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: psycopg[binary]
  dependency-version: 3.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sqlalchemy
  dependency-version: 2.0.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pydantic
  dependency-version: 2.11.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pydantic-settings
  dependency-version: 2.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uvicorn[standard]
  dependency-version: 0.34.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pendulum
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cython
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: setuptools
  dependency-version: 80.7.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 19, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 2, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 2, 2025
@dependabot dependabot bot deleted the dependabot/pip/main/dependencies-81f7d18510 branch June 2, 2025 20:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant