Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the patch-dependencies group across 1 directory with 9 updates #681

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

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

Package From To
arq 0.26.1 0.26.3
fastapi[standard] 0.115.6 0.115.10
pandas 2.2.2 2.2.3
phonenumbers 8.13.43 8.13.55
python-multipart 0.0.18 0.0.20
sqlalchemy[asyncio] 2.0.32 2.0.38
xlsxwriter 3.2.0 3.2.2
pandas-stubs 2.2.2.240807 2.2.3.241126
psycopg[binary] 3.2.1 3.2.5

Updates arq from 0.26.1 to 0.26.3

Release notes

Sourced from arq's releases.

v0.26.3

What's Changed

New Contributors

Full Changelog: python-arq/arq@v0.26.2...v0.26.3

v0.26.2

What's Changed

New Contributors

Full Changelog: python-arq/arq@v0.26.1...v0.26.2

Changelog

Sourced from arq's changelog.

v0.26.3 (2025-01-06) ....................

Commits

Updates fastapi[standard] from 0.115.6 to 0.115.10

Release notes

Sourced from fastapi[standard]'s releases.

0.115.10

Fixes

  • ♻️ Update internal annotation usage for compatibility with Pydantic 2.11. PR #13314 by @​Viicos.

Upgrades

Translations

0.115.9

Fixes

  • 🐛 Ensure that HTTPDigest only raises an exception when auto_error is True. PR #2939 by @​arthurio.

Refactors

Docs

Translations

... (truncated)

Commits
  • a264472 📝 Update release notes
  • 433837d 🔖 Release version 0.115.10
  • 68074ba 📝 Update release notes
  • 15dd2b6 ♻️ Update internal annotation usage for compatibilty with Pydantic 2.11 (#13314)
  • 45e0185 📝 Update release notes
  • 7495435 📝 Update release notes
  • 7c4d1fe 🌐 Add Ukrainian translation for docs/uk/docs/tutorial/debugging.md (#13370)
  • 23821e9 🌐 Add Ukrainian translation for docs/uk/docs/tutorial/query-params.md (#13362)
  • 8bfec9f 📝 Update release notes
  • 5fbaf6d 📝 Update release notes
  • Additional commits viewable in compare view

Updates pandas from 2.2.2 to 2.2.3

Release notes

Sourced from pandas's releases.

Pandas 2.2.3

We are pleased to announce the release of pandas 2.2.3. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.2.3 supports Python 3.9 and higher.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Commits

Updates phonenumbers from 8.13.43 to 8.13.55

Commits
  • 45c822e Prep for 8.13.55 release
  • c09e6f9 Generated files for metadata
  • ca40632 Merge metadata changes from upstream 8.13.55
  • cbabe0c Prep for 8.13.54 release
  • 08cff59 Generated files for metadata
  • dbd730f Merge metadata changes from upstream 8.13.54
  • bf137c9 Create new-style issue template (#305)
  • d7fe6c6 Prep for 8.13.53 release
  • c1199c6 Generated files for metadata
  • 24beecd Merge metadata changes from upstream 8.13.53
  • Additional commits viewable in compare view

Updates python-multipart from 0.0.18 to 0.0.20

Release notes

Sourced from python-multipart's releases.

Version 0.0.20

What's Changed

New Contributors

Full Changelog: Kludex/python-multipart@0.0.19...0.0.20

Version 0.0.19

What's Changed


Full Changelog: Kludex/python-multipart@0.0.18...0.0.19

Changelog

Sourced from python-multipart's changelog.

0.0.20 (2024-12-16)

  • Handle messages containing only end boundary #142.

0.0.19 (2024-11-30)

  • Don't warn when CRLF is found after last boundary on MultipartParser #193.
Commits

Updates sqlalchemy[asyncio] from 2.0.32 to 2.0.38

Release notes

Sourced from sqlalchemy[asyncio]'s releases.

2.0.38

Released: February 6, 2025

engine

  • [engine] [bug] Fixed event-related issue where invoking Engine.execution_options() on a Engine multiple times while making use of event-registering parameters such as isolation_level would lead to internal errors involving event registration.

    References: #12289

sql

  • [sql] [bug] Reorganized the internals by which the .c collection on a FromClause gets generated so that it is resilient against the collection being accessed in concurrent fashion. An example is creating a Alias or Subquery and accessing it as a module level variable. This impacts the Oracle dialect which uses such module-level global alias objects but is of general use as well.

    References: #12302

  • [sql] [bug] Fixed SQL composition bug which impacted caching where using a None value inside of an in_() expression would bypass the usual "expanded bind parameter" logic used by the IN construct, which allows proper caching to take place.

    References: #12314

postgresql

  • [postgresql] [usecase] [asyncio] Added an additional asyncio.shield() call within the connection terminate process of the asyncpg driver, to mitigate an issue where terminate would be prevented from completing under the anyio concurrency library.

    References: #12077

  • [postgresql] [bug] Adjusted the asyncpg connection wrapper so that the connection.transaction() call sent to asyncpg sends None for isolation_level if not otherwise set in the SQLAlchemy dialect/wrapper, thereby allowing asyncpg to make use of the server level setting for isolation_level in the absense of a client-level setting. Previously, this behavior of asyncpg was blocked by a hardcoded read_committed.

... (truncated)

Commits

Updates xlsxwriter from 3.2.0 to 3.2.2

Changelog

Sourced from xlsxwriter's changelog.

Release 3.2.2 - January 28 2025

  • Added support for checkboxes via the :func:insert_checkbox() method.

    Checkboxes are a new feature added to Excel in 2024_. They are a way of displaying a boolean value as a checkbox in a cell. The underlying value is still an Excel TRUE/FALSE boolean value and can be used in formulas and in references.

    .. image:: _images/checkbox.png

    See :ref:ex_checkbox.

    .. _Excel in 2024: https://techcommunity.microsoft.com/blog/excelblog/introducing-checkboxes-in-excel/4173561

Release 3.2.1 - January 22 2025

Added improvements to autofit().

  • Added the optional max_width parameter to the :func:autofit() method to work around the issue where the autofit width is too big.

    Excel autofits very long strings up to limit of 1790 pixels/255 characters. This is often too wide to display on a single screen at normal zoom. As such the max_width parameter is provided to enable a smaller upper pixel limit for autofitting long strings. See :func:autofit().

    :feature:1106.

  • Added the :func:cell_autofit_width utility function to allow users to calculate the auto-fit width for a cell value. This allows the user to implement their own auto-fit logic. See :ref:ex_autofit_manually.

Commits
  • 5636b42 Prep for release 3.2.2
  • 64cef1a fix: remove code duplication
  • 028d49c checkbox: add table format support
  • 061a881 checkbox: add polars checkbox example
  • 403b50f cond format: add support for bool type values
  • ccb0d72 checkbox: add checkbox support
  • 3524002 package: update copyright year
  • 13bfd81 worksheet: minor refactor
  • 0d63173 Prep for release 3.2.1
  • 6abc6b4 Prep for release 3.2.1
  • Additional commits viewable in compare view

Updates pandas-stubs from 2.2.2.240807 to 2.2.3.241126

Commits
  • 7f06ab1 Version 2.2.3.241126
  • 4ac23d6 GH1043 Update _typing.pyi: add "cross" option to JoinHow (#1044)
  • 02b0d7f GH1053 @ for DataFrame, eval in place for DataFrame, test migrations (#1054)
  • c5eecf8 Change signature of StringMethods.rsplit to match pandas (#1056)
  • facb30f GH1049 Deprecate Index and Grouper methods for 2.0 migration (#1050)
  • d289ef5 Fix Series.rename_axis and DataFrame.rename_axis typing (#1048)
  • 47fc9b6 GH1037 Remove na_sentinel from factorize methods (#1038)
  • 70ee340 GH1045 Split overload of groupby on as_index for all cases (#1046)
  • 03396ef Add @ operator type hints for Series (#1047)
  • 92bd9cb GH1033 Add overloads of engine for pd.read_json (#1035)
  • Additional commits viewable in compare view

Updates psycopg[binary] from 3.2.1 to 3.2.5

Changelog

Sourced from psycopg[binary]'s changelog.

.. currentmodule:: psycopg

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

psycopg release notes

Future releases

Python 3.3.0 (unreleased) ^^^^^^^^^^^^^^^^^^^^^^^^^

  • Drop support for Python 3.8.

Current release

Psycopg 3.2.5 ^^^^^^^^^^^^^

  • 3x faster UUID loading thanks to C implementation (:tickets:[#447](https://github.com/psycopg/psycopg/issues/447), [#998](https://github.com/psycopg/psycopg/issues/998)).

Psycopg 3.2.4 ^^^^^^^^^^^^^

  • Don't lose notifies received whilst the ~Connection.notifies() iterator is not running (:ticket:[#962](https://github.com/psycopg/psycopg/issues/962)).
  • Make sure that the notifies callback is called during the use of the ~Connection.notifies() generator (:ticket:[#972](https://github.com/psycopg/psycopg/issues/972)).
  • Raise the correct error returned by the database (such as !AdminShutdown or !IdleInTransactionSessionTimeout) instead of a generic OperationalError when a server error causes a client disconnection (:ticket:[#988](https://github.com/psycopg/psycopg/issues/988)).
  • Build macOS dependencies from sources instead using the Homebrew versions in order to avoid problems with MACOSX_DEPLOYMENT_TARGET (:ticket:[#858](https://github.com/psycopg/psycopg/issues/858)).
  • Bump libpq to 17.2 in Linux and macOS binary packages.
  • Bump libpq to 16.4 in Windows binary packages, using the vcpkg library__ (:ticket:[#966](https://github.com/psycopg/psycopg/issues/966)).

.. __: https://vcpkg.io/en/package/libpq

Psycopg 3.2.3 ^^^^^^^^^^^^^

... (truncated)

Commits
  • 664b2a1 chore: bump psycopg package version to 3.2.5
  • cd6589b chore: bump build libraries
  • 68f8603 Merge branch 'cython-uuid-3.2' into maint-3.2
  • dd1cefc docs: mention UUID speedup in release news
  • 7f950cb chore(c): remove C UUIDDumper and UUIDBinaryDumper
  • 393e162 perf(uuid): speed up UUID creation using a writable subclass
  • 57a3889 perf(c): use PyObject_CallFunctionObjArgs in UUIDBinaryLoader
  • 88f73fe perf(c): use PyObject_CallFunctionObjArgs in UUIDLoader
  • 3a9ade7 test(c): test UUID.slots
  • 811cb51 perf(c): Use hex_to_int_map in UUIDLoader
  • Additional commits viewable in compare view

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 1, 2025
@dependabot dependabot bot requested a review from Marc-Andrieu March 1, 2025 07:03
@Marc-Andrieu
Copy link
Contributor

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 2, 2025

Looks like this PR is already up-to-date with main! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@Marc-Andrieu
Copy link
Contributor

@dependabot recreate

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

| Package | From | To |
| --- | --- | --- |
| [arq](https://github.com/samuelcolvin/arq) | `0.26.1` | `0.26.3` |
| [fastapi[standard]](https://github.com/fastapi/fastapi) | `0.115.6` | `0.115.10` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.2` | `2.2.3` |
| [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) | `8.13.43` | `8.13.55` |
| [python-multipart](https://github.com/Kludex/python-multipart) | `0.0.18` | `0.0.20` |
| [sqlalchemy[asyncio]](https://github.com/sqlalchemy/sqlalchemy) | `2.0.32` | `2.0.38` |
| [xlsxwriter](https://github.com/jmcnamara/XlsxWriter) | `3.2.0` | `3.2.2` |
| [pandas-stubs](https://github.com/pandas-dev/pandas-stubs) | `2.2.2.240807` | `2.2.3.241126` |
| [psycopg[binary]](https://github.com/psycopg/psycopg) | `3.2.1` | `3.2.5` |



Updates `arq` from 0.26.1 to 0.26.3
- [Release notes](https://github.com/samuelcolvin/arq/releases)
- [Changelog](https://github.com/python-arq/arq/blob/main/HISTORY.rst)
- [Commits](python-arq/arq@v0.26.1...v0.26.3)

Updates `fastapi[standard]` from 0.115.6 to 0.115.10
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.6...0.115.10)

Updates `pandas` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.2...v2.2.3)

Updates `phonenumbers` from 8.13.43 to 8.13.55
- [Commits](daviddrysdale/python-phonenumbers@v8.13.43...v8.13.55)

Updates `python-multipart` from 0.0.18 to 0.0.20
- [Release notes](https://github.com/Kludex/python-multipart/releases)
- [Changelog](https://github.com/Kludex/python-multipart/blob/master/CHANGELOG.md)
- [Commits](Kludex/python-multipart@0.0.18...0.0.20)

Updates `sqlalchemy[asyncio]` from 2.0.32 to 2.0.38
- [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 `xlsxwriter` from 3.2.0 to 3.2.2
- [Changelog](https://github.com/jmcnamara/XlsxWriter/blob/main/Changes)
- [Commits](jmcnamara/XlsxWriter@RELEASE_3.2.0...RELEASE_3.2.2)

Updates `pandas-stubs` from 2.2.2.240807 to 2.2.3.241126
- [Changelog](https://github.com/pandas-dev/pandas-stubs/blob/main/docs/release_procedure.md)
- [Commits](pandas-dev/pandas-stubs@v2.2.2.240807...v2.2.3.241126)

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

---
updated-dependencies:
- dependency-name: arq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: fastapi[standard]
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: phonenumbers
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: python-multipart
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: sqlalchemy[asyncio]
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: xlsxwriter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: pandas-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: psycopg[binary]
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/patch-dependencies-d6c583f2f1 branch from 32626f0 to 85f0b3c Compare March 2, 2025 17:28
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