Skip to content

Bump the pip-minor-patch group across 1 directory with 7 updates#610

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/backend/pip-minor-patch-d83af51d88
Open

Bump the pip-minor-patch group across 1 directory with 7 updates#610
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/backend/pip-minor-patch-d83af51d88

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the pip-minor-patch group with 7 updates in the /backend directory:

Package From To
django 4.2.26 4.2.28
django-types 0.22.0 0.23.0
psycopg-binary 3.2.13 3.3.2
psycopg 3.2.13 3.3.2
boto3 1.41.3 1.42.45
pillow 12.0.0 12.1.0
pywebpush 2.1.0 2.3.0

Updates django from 4.2.26 to 4.2.28

Commits

Updates django-types from 0.22.0 to 0.23.0

Commits

Updates psycopg-binary from 3.2.13 to 3.3.2

Changelog

Sourced from psycopg-binary's changelog.

.. currentmodule:: psycopg

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

psycopg release notes

Current release

Psyocpg 3.3.3 (unreleased) ^^^^^^^^^^^^^^^^^^^^^^^^^^

Retain Error.pgconn when raising a single exception for multiple connection attempt errors (:ticket:[#1246](https://github.com/psycopg/psycopg/issues/1246)).

Psycopg 3.3.2 ^^^^^^^^^^^^^

Fix race condition in adapters at startup (:ticket:[#1230](https://github.com/psycopg/psycopg/issues/1230)).

Psycopg 3.3.1 ^^^^^^^^^^^^^

Fix iteration on server-side cursors (:ticket:[#1226](https://github.com/psycopg/psycopg/issues/1226)).

Psycopg 3.3.0

.. rubric:: New top-level features

  • Add :ref:template strings queries \<template-strings> (:ticket:[#1054](https://github.com/psycopg/psycopg/issues/1054)).
  • More flexible :ref:composite adaptation<adapt-composite>: it is now possible to adapt Python objects to PostgreSQL composites and back even if they are not sequences or if they take keyword arguments (:ticket:[#932](https://github.com/psycopg/psycopg/issues/932), 🎫[#1202](https://github.com/psycopg/psycopg/issues/1202)).
  • Cursors are now iterators_, not just iterables_. This means you can call next\ (cur) or anext\ (cur), which is useful as a :ref:type-safe expression <typing-fetchone> (:ticket:[#1064](https://github.com/psycopg/psycopg/issues/1064)).
  • Add Cursor.set_result() and Cursor.results() to move across the result sets of queries executed though ~Cursor.executemany() or ~Cursor.execute() with multiple statements (:tickets:[#1080](https://github.com/psycopg/psycopg/issues/1080), [#1170](https://github.com/psycopg/psycopg/issues/1170)).
  • Add :ref:transaction-status to report the status during and after a ~Connection.transaction() block (:ticket:[#969](https://github.com/psycopg/psycopg/issues/969)).
  • Allow to change loaders using ~adapt.AdaptersMap.register_loader() on Cursor.adapters after a query result has been already returned

... (truncated)

Commits
  • bc9e7bd chore: bump psycopg package version to 3.3.2
  • 3bcabb4 Merge pull request #1231 from noirbee/fix/1230-adapter-get-dumper-race-condition
  • 08bfe00 fix(adapters): avoid race condition when replacing class name with itself
  • 7be710e fix: mark external libpq C functions as noexcept nogil
  • 6a24300 docs: larger font for 3.3.0 release
  • 5a60a1e chore: bump psycopg package version to 3.3.2.dev1
  • 9bdd78c chore: bump psycopg package version to 3.3.1
  • 4d27426 Merge branch 'fix/server-cursor-iter'
  • b9b82e8 fix: fix iteration on server-side cursor
  • 2a75357 fix: add test to verify iteration in server-side cursor broken
  • Additional commits viewable in compare view

Updates psycopg from 3.2.13 to 3.3.2

Changelog

Sourced from psycopg's changelog.

.. currentmodule:: psycopg

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

psycopg release notes

Current release

Psyocpg 3.3.3 (unreleased) ^^^^^^^^^^^^^^^^^^^^^^^^^^

Retain Error.pgconn when raising a single exception for multiple connection attempt errors (:ticket:[#1246](https://github.com/psycopg/psycopg/issues/1246)).

Psycopg 3.3.2 ^^^^^^^^^^^^^

Fix race condition in adapters at startup (:ticket:[#1230](https://github.com/psycopg/psycopg/issues/1230)).

Psycopg 3.3.1 ^^^^^^^^^^^^^

Fix iteration on server-side cursors (:ticket:[#1226](https://github.com/psycopg/psycopg/issues/1226)).

Psycopg 3.3.0

.. rubric:: New top-level features

  • Add :ref:template strings queries \<template-strings> (:ticket:[#1054](https://github.com/psycopg/psycopg/issues/1054)).
  • More flexible :ref:composite adaptation<adapt-composite>: it is now possible to adapt Python objects to PostgreSQL composites and back even if they are not sequences or if they take keyword arguments (:ticket:[#932](https://github.com/psycopg/psycopg/issues/932), 🎫[#1202](https://github.com/psycopg/psycopg/issues/1202)).
  • Cursors are now iterators_, not just iterables_. This means you can call next\ (cur) or anext\ (cur), which is useful as a :ref:type-safe expression <typing-fetchone> (:ticket:[#1064](https://github.com/psycopg/psycopg/issues/1064)).
  • Add Cursor.set_result() and Cursor.results() to move across the result sets of queries executed though ~Cursor.executemany() or ~Cursor.execute() with multiple statements (:tickets:[#1080](https://github.com/psycopg/psycopg/issues/1080), [#1170](https://github.com/psycopg/psycopg/issues/1170)).
  • Add :ref:transaction-status to report the status during and after a ~Connection.transaction() block (:ticket:[#969](https://github.com/psycopg/psycopg/issues/969)).
  • Allow to change loaders using ~adapt.AdaptersMap.register_loader() on Cursor.adapters after a query result has been already returned

... (truncated)

Commits
  • bc9e7bd chore: bump psycopg package version to 3.3.2
  • 3bcabb4 Merge pull request #1231 from noirbee/fix/1230-adapter-get-dumper-race-condition
  • 08bfe00 fix(adapters): avoid race condition when replacing class name with itself
  • 7be710e fix: mark external libpq C functions as noexcept nogil
  • 6a24300 docs: larger font for 3.3.0 release
  • 5a60a1e chore: bump psycopg package version to 3.3.2.dev1
  • 9bdd78c chore: bump psycopg package version to 3.3.1
  • 4d27426 Merge branch 'fix/server-cursor-iter'
  • b9b82e8 fix: fix iteration on server-side cursor
  • 2a75357 fix: add test to verify iteration in server-side cursor broken
  • Additional commits viewable in compare view

Updates boto3 from 1.41.3 to 1.42.45

Commits
  • 15d296b Merge branch 'release-1.42.45'
  • 6978972 Bumping version to 1.42.45
  • 7bf7577 Add changelog entries from botocore
  • 451ee66 Merge branch 'release-1.42.44'
  • 0ed002d Merge branch 'release-1.42.44' into develop
  • eb28403 Bumping version to 1.42.44
  • 0b2df35 Add changelog entries from botocore
  • 630ab63 Merge branch 'release-1.42.43'
  • 1bfdbb3 Merge branch 'release-1.42.43' into develop
  • 53542d4 Bumping version to 1.42.43
  • Additional commits viewable in compare view

Updates pillow from 12.0.0 to 12.1.0

Release notes

Sourced from pillow's releases.

12.1.0

https://pillow.readthedocs.io/en/stable/releasenotes/12.1.0.html

Deprecations

Documentation

Dependencies

Testing

Type hints

... (truncated)

Commits

Updates pywebpush from 2.1.0 to 2.3.0

Changelog

Sourced from pywebpush's changelog.

2.3.0 (2026-02-09)

  • Cleanup from @​Rotzbua
    • Use modern typing for annotations
    • Remove legacy python 2 import
    • remove redundant :type annotations
    • use [.dev] extras in CI

2.2.1 (2026-02-06)

2.2.0 (2026-)

  • Update rst files to reflect md file changes

Add comment discussing additional work for Windows Notification Service (WNS)

  • Update the README.md file to mention the required, non-standard headers.

BREAKING_CHANGE This version also drops legacy support for GCM/FCM authorization keys, since those items are obsolete according to Google. See https://firebase.google.com/docs/cloud-messaging/auth-server#authorize-legacy-protocol-send-requests

2.1.2 (2025-11-10)

chore: fix formatting chore: update CHANGELOG chore: note admin update

2.1.1 (2025-10-14)

This was an administrative push to test a new publication system.

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
pywebpush [< 2.1, > 2.0.0]
pywebpush [< 2.2, > 2.1.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 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 <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

Bumps the pip-minor-patch group with 7 updates in the /backend directory:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `4.2.26` | `4.2.28` |
| [django-types](https://github.com/sbdchd/django-types) | `0.22.0` | `0.23.0` |
| [psycopg-binary](https://github.com/psycopg/psycopg) | `3.2.13` | `3.3.2` |
| [psycopg](https://github.com/psycopg/psycopg) | `3.2.13` | `3.3.2` |
| [boto3](https://github.com/boto/boto3) | `1.41.3` | `1.42.45` |
| [pillow](https://github.com/python-pillow/Pillow) | `12.0.0` | `12.1.0` |
| [pywebpush](https://github.com/web-push-libs/pywebpush) | `2.1.0` | `2.3.0` |



Updates `django` from 4.2.26 to 4.2.28
- [Commits](django/django@4.2.26...4.2.28)

Updates `django-types` from 0.22.0 to 0.23.0
- [Changelog](https://github.com/sbdchd/django-types/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sbdchd/django-types/commits)

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

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

Updates `boto3` from 1.41.3 to 1.42.45
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.41.3...1.42.45)

Updates `pillow` from 12.0.0 to 12.1.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@12.0.0...12.1.0)

Updates `pywebpush` from 2.1.0 to 2.3.0
- [Release notes](https://github.com/web-push-libs/pywebpush/releases)
- [Changelog](https://github.com/web-push-libs/pywebpush/blob/main/CHANGELOG.md)
- [Commits](https://github.com/web-push-libs/pywebpush/commits)

---
updated-dependencies:
- dependency-name: django
  dependency-version: 4.2.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor-patch
- dependency-name: django-types
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: psycopg-binary
  dependency-version: 3.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: psycopg
  dependency-version: 3.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: boto3
  dependency-version: 1.42.45
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: pillow
  dependency-version: 12.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
- dependency-name: pywebpush
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 10, 2026
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.

0 participants