Skip to content

Bump the ofe-minor-and-patch-updates group in /community/front-end/ofe with 17 updates#5584

Merged
siddhartha-quad merged 1 commit into
developfrom
dependabot/pip/community/front-end/ofe/develop/ofe-minor-and-patch-updates-c35d1b1b43
May 4, 2026
Merged

Bump the ofe-minor-and-patch-updates group in /community/front-end/ofe with 17 updates#5584
siddhartha-quad merged 1 commit into
developfrom
dependabot/pip/community/front-end/ofe/develop/ofe-minor-and-patch-updates-c35d1b1b43

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 30, 2026

Copy link
Copy Markdown
Contributor

Bumps the ofe-minor-and-patch-updates group in /community/front-end/ofe with 17 updates:

Package From To
certifi 2026.2.25 2026.4.22
charset-normalizer 3.4.6 3.4.7
click 8.3.1 8.3.3
django-allauth 65.15.0 65.16.1
filelock 3.25.2 3.29.0
google-api-core 2.30.1 2.30.3
google-api-python-client 2.193.0 2.194.0
google-auth 2.49.1 2.50.0
google-cloud-pubsub 2.36.0 2.37.0
googleapis-common-protos 1.73.1 1.74.0
identify 2.6.18 2.6.19
idna 3.11 3.13
platformdirs 4.9.4 4.9.6
pre-commit 4.5.1 4.6.0
uvicorn 0.42.0 0.46.0
virtualenv 21.2.0 21.3.0
zipp 3.23.0 3.23.1

Updates certifi from 2026.2.25 to 2026.4.22

Commits
  • 5dddfb0 2026.04.22 (#410)
  • f99eccd Bump peter-evans/create-pull-request from 8.1.0 to 8.1.1 (#404)
  • 918bed0 Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#405)
  • 0a49067 Bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 (#403)
  • acf6ce8 Bump actions/download-artifact from 8.0.0 to 8.0.1 (#398)
  • feb0ed2 Bump actions/download-artifact from 7.0.0 to 8.0.0 (#397)
  • d9c11a5 Bump actions/upload-artifact from 6.0.0 to 7.0.0 (#396)
  • See full diff in compare view

Updates charset-normalizer from 3.4.6 to 3.4.7

Release notes

Sourced from charset-normalizer's releases.

Version 3.4.7

3.4.7 (2026-04-02)

Changed

  • Pre-built optimized version using mypy[c] v1.20.
  • Relax setuptools constraint to setuptools>=68,<82.1.

Fixed

  • Correctly remove SIG remnant in utf-7 decoded string. (#718) (#716)
Changelog

Sourced from charset-normalizer's changelog.

3.4.7 (2026-04-02)

Changed

  • Pre-built optimized version using mypy[c] v1.20.
  • Relax setuptools constraint to setuptools>=68,<82.1.

Fixed

  • Correctly remove SIG remnant in utf-7 decoded string. (#718) (#716)
Commits
  • 0f07891 Merge pull request #729 from jawah/release-3.4.7
  • fdbeb29 chore: update dev, and ci requirements
  • b66f922 chore: add ft classifier
  • f94249d chore: add test cases for utf_7 recent fix
  • 95c866f chore: bump version to 3.4.7
  • 4f429bb chore: bump mypy pre-commit to v1.20
  • b579cd6 fix: correctly remove SIG remnant in utf-7 decoded string
  • 58bf944 ⬆️ Bump github/codeql-action from 4.32.4 to 4.35.1 (#728)
  • 44cf8a1 ⬆️ Bump actions/download-artifact from 8.0.0 to 8.0.1 (#726)
  • 362bc20 ⬆️ Bump docker/setup-qemu-action from 3.7.0 to 4.0.0 (#725)
  • Additional commits viewable in compare view

Updates click from 8.3.1 to 8.3.3

Release notes

Sourced from click's releases.

8.3.3

This is the Click 8.3.3 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.3.3/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-3 Milestone: https://github.com/pallets/click/milestone/30

  • Use :func:shlex.split to split pager and editor commands into argv lists for :class:subprocess.Popen, removing shell=True. #1026 #1477 #2775
  • Fix TypeError when rendering help for an option whose default value is an object that doesn't support equality comparison with strings, such as semver.Version. #3298 #3299
  • Fix pager test pollution under parallel execution by using pytest's tmp_path fixture instead of a shared temporary file path. #3238
  • Treat Sentinel.UNSET values in a default_map as absent, so they fall through to the next default source instead of being used as the value. #3224 #3240
  • Patch pdb.Pdb in CliRunner isolation so pdb.set_trace(), breakpoint(), and debuggers subclassing pdb.Pdb (ipdb, pdbpp) can interact with the real terminal instead of the captured I/O streams. #654 #824 #843 #951 #3235
  • Add optional randomized parallel test execution using pytest-randomly and pytest-xdist to detect test pollution and race conditions. #3151
  • Add contributor documentation for running stress tests, randomized parallel tests, and Flask smoke tests. #3151 #3177
  • Show custom show_default string in prompts, matching the existing help text behavior. #2836 #2837 #3165 #3262 #3280 #3328
  • Fix default=True with boolean flag_value always returning the flag_value instead of True. The default=True to flag_value substitution now only applies to non-boolean flags, where True acts as a sentinel meaning "activate this flag by default". For boolean flags, default=True is returned as a literal value. #3111 #3239
  • Mark make_default_short_help as private API. #3189 #3250
  • CliRunner's redirected streams now expose the original file descriptor via fileno(), so that faulthandler, subprocess, and other C-level consumers no longer crash with io.UnsupportedOperation. #2865
  • Change :class:ParameterSource to an :class:~enum.IntEnum and reorder its members from most to least explicit, so values can be compared to check whether a parameter was explicitly provided. #2879 #3248

8.3.2

This is the Click 8.3.2 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.3.2/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-2 Milestone: https://github.com/pallets/click/milestone/29

... (truncated)

Changelog

Sourced from click's changelog.

Version 8.3.3

Released 2026-04-20

  • Use :func:shlex.split to split pager and editor commands into argv lists for :class:subprocess.Popen, removing shell=True. :issue:1026 :pr:1477 :pr:2775
  • Fix TypeError when rendering help for an option whose default value is an object that doesn't support equality comparison with strings, such as semver.Version. :issue:3298 :pr:3299
  • Fix pager test pollution under parallel execution by using pytest's tmp_path fixture instead of a shared temporary file path. :pr:3238
  • Treat Sentinel.UNSET values in a default_map as absent, so they fall through to the next default source instead of being used as the value. :issue:3224 :pr:3240
  • Patch pdb.Pdb in CliRunner isolation so pdb.set_trace(), breakpoint(), and debuggers subclassing pdb.Pdb (ipdb, pdbpp) can interact with the real terminal instead of the captured I/O streams. :issue:654 :issue:824 :issue:843 :pr:951 :pr:3235
  • Add optional randomized parallel test execution using pytest-randomly and pytest-xdist to detect test pollution and race conditions. :pr:3151
  • Add contributor documentation for running stress tests, randomized parallel tests, and Flask smoke tests. :pr:3151 :pr:3177
  • Show custom show_default string in prompts, matching the existing help text behavior. :issue:2836 :pr:2837 :pr:3165 :pr:3262 :pr:3280 :pr:3328
  • Fix default=True with boolean flag_value always returning the flag_value instead of True. The default=True to flag_value substitution now only applies to non-boolean flags, where True acts as a sentinel meaning "activate this flag by default". For boolean flags, default=True is returned as a literal value. :issue:3111 :pr:3239
  • Mark make_default_short_help as private API. :issue:3189 :pr:3250
  • CliRunner's redirected streams now expose the original file descriptor via fileno(), so that faulthandler, subprocess, and other C-level consumers no longer crash with io.UnsupportedOperation. :issue:2865
  • Change :class:ParameterSource to an :class:~enum.IntEnum and reorder its members from most to least explicit, so values can be compared to check whether a parameter was explicitly provided. :issue:2879 :pr:3248

Version 8.3.2

Released 2026-04-02

  • Fix handling of flag_value when is_flag=False to allow such options to be used without an explicit value. :issue:3084 :pr:3152
  • Hide Sentinel.UNSET values as None when using lookup_default(). :issue:3136 :pr:3199 :pr:3202 :pr:3209 :pr:3212 :pr:3224

... (truncated)

Commits
  • c06d2d0 Release 8.3.3
  • f1f191e Apply format guidelines to commits since latest 8.3.2 release (#3343)
  • bb59ba0 Apply format guidelines to commits since latest 8.3.2 release
  • 4a35225 Reduce blast-radius of UNSET in default_map (#3240)
  • c07bb93 Merge branch 'stable' into unset-in-default-map
  • c7e1ba8 Reorder ParameterSource (#3248)
  • 76552ff Show default string in prompt (#3328)
  • ac5cec5 Reorder ParameterSource from most to least explicit
  • 8c452e0 Merge branch 'stable' into show-default-string-in-prompt
  • 8c95c73 Reconcile default value passing and default activation (#3239)
  • Additional commits viewable in compare view

Updates django-allauth from 65.15.0 to 65.16.1

Commits

Updates filelock from 3.25.2 to 3.29.0

Release notes

Sourced from filelock's releases.

3.29.0

What's Changed

Full Changelog: tox-dev/filelock@3.28.0...3.29.0

3.28.0

What's Changed

Full Changelog: tox-dev/filelock@3.27.0...3.28.0

3.27.0

What's Changed

Full Changelog: tox-dev/filelock@3.26.1...3.27.0

3.26.1

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.26.0...3.26.1

3.26.0

What's Changed

Full Changelog: tox-dev/filelock@3.25.2...3.26.0

Changelog

Sourced from filelock's changelog.

########### Changelog ###########


3.29.0 (2026-04-19)


  • ✨ feat(soft): enable stale lock detection on Windows :pr:534
  • 🐛 fix(async): use single-thread executor for lock consistency :pr:533
  • build(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 :pr:530 - by :user:dependabot[bot]

3.28.0 (2026-04-14)


  • 🐛 fix(ci): unbreak release workflow, publish to PyPI again :pr:529

3.26.1 (2026-04-09)


  • 🐛 fix(asyncio): add exit to BaseAsyncFileLock and fix del loop handling :pr:518 - by :user:naarob
  • build(deps): bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 :pr:525 - by :user:dependabot[bot]

3.26.0 (2026-04-06)


  • ✨ feat(soft): add PID inspection and lock breaking :pr:524
  • [pre-commit.ci] pre-commit autoupdate :pr:523 - by :user:pre-commit-ci[bot]
  • build(deps): bump astral-sh/setup-uv from 7.6.0 to 8.0.0 :pr:522 - by :user:dependabot[bot]
  • Remove persist-credentials: false from release job :pr:520
  • [pre-commit.ci] pre-commit autoupdate :pr:519 - by :user:pre-commit-ci[bot]
  • 🔒 ci(workflows): add zizmor security auditing :pr:517
  • [pre-commit.ci] pre-commit autoupdate :pr:516 - by :user:pre-commit-ci[bot]
  • [pre-commit.ci] pre-commit autoupdate :pr:514 - by :user:pre-commit-ci[bot]

3.25.2 (2026-03-11)


  • 🐛 fix(unix): suppress EIO on close in Docker bind mounts :pr:513

3.25.1 (2026-03-09)


  • [pre-commit.ci] pre-commit autoupdate :pr:510 - by :user:pre-commit-ci[bot]
  • 🐛 fix(win): restore best-effort lock file cleanup on release :pr:511

... (truncated)

Commits
  • 469b47f Release 3.29.0
  • e85d072 ✨ feat(soft): enable stale lock detection on Windows (#534)
  • f5ee171 🐛 fix(async): use single-thread executor for lock consistency (#533)
  • 2a95458 build(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 (#530)
  • 55de20c Release 3.28.0
  • 476b0e4 🐛 fix(ci): unbreak release workflow, publish to PyPI again (#529)
  • 824713e ✨ feat(rw): add SoftReadWriteLock for NFS and HPC clusters (#528)
  • 9879de9 [pre-commit.ci] pre-commit autoupdate (#527)
  • 4cfab49 Release 3.26.1
  • 734c9f2 🐛 fix(asyncio): add exit to BaseAsyncFileLock and fix del loop handli...
  • Additional commits viewable in compare view

Updates google-api-core from 2.30.1 to 2.30.3

Release notes

Sourced from google-api-core's releases.

google-api-core: v2.30.3

v2.30.3 (2026-04-09)

Bug Fixes

  • avoid repeated scan of entire venv via packages_distributions() at import time (#16579) (c5728b24)

google-api-core: v2.30.2

v2.30.2 (2026-04-02)

Bug Fixes

Commits
  • d3d6840 chore: librarian release pull request: 20260409T210905Z (#16604)
  • 442c47a docs: update the list of available APIs (#16571)
  • a58063c chore(spanner): block spanner release (#16601)
  • f38cd44 feat(pandas-gbq): drop support for Python 3.9 (#16476)
  • 961eacd feat(bigquery-magics): drop support for Python 3.9 (#16587)
  • 77c1df6 test: adds storage to list of system tests to run (#16578)
  • 6cb5af5 chore: add librarian integration for google-cloud-bigtable (#16551)
  • 485b03a chore: optimize zonal tests cloning and fix paths (#16581)
  • 70dc6bf fix(spanner): catch recursion and decode errors in proto parsing to p… (#16561)
  • c5728b2 fix(perf): avoid repeated scan of entire venv via packages_distributions() at...
  • Additional commits viewable in compare view

Updates google-api-python-client from 2.193.0 to 2.194.0

Release notes

Sourced from google-api-python-client's releases.

v2.194.0

2.194.0 (2026-04-07)

Features

... (truncated)

Commits

Updates google-auth from 2.49.1 to 2.50.0

Commits

Updates google-cloud-pubsub from 2.36.0 to 2.37.0

Release notes

Sourced from google-cloud-pubsub's releases.

google-cloud-pubsub: v2.37.0

v2.37.0 (2026-04-09)

Documentation

  • Fix documentation URL AIInference MessageTransform service_account_email field (PiperOrigin-RevId: 895485801) (56ccbd86)
Commits
  • d3d6840 chore: librarian release pull request: 20260409T210905Z (#16604)
  • f38cd44 feat(pandas-gbq): drop support for Python 3.9 (#16476)
  • 961eacd feat(bigquery-magics): drop support for Python 3.9 (#16587)
  • 77c1df6 test: adds storage to list of system tests to run (#16578)
  • 6cb5af5 chore: add librarian integration for google-cloud-bigtable (#16551)
  • 485b03a chore: optimize zonal tests cloning and fix paths (#16581)
  • 70dc6bf fix(spanner): catch recursion and decode errors in proto parsing to p… (#16561)
  • c5728b2 fix(perf): avoid repeated scan of entire venv via packages_distributions() at...
  • dbaf8f5 feat(bigquery-magics): deprecate --engine=bigframes, run `%load_ext bigfram...
  • fdd3e0d fix: avoid views when querying BigLake tables from SQL cells (#16562)
  • Additional commits viewable in compare view

Updates googleapis-common-protos from 1.73.1 to 1.74.0

Release notes

Sourced from googleapis-common-protos's releases.

googleapis-common-protos: v1.74.0

v1.74.0 (2026-04-02)

Features

  • publish new error reasons (PiperOrigin-RevId: 889289393) (c36aa616)

  • add origin to AttributeContext.Request (PiperOrigin-RevId: 892442206) (c36aa616)

  • publish client batch config schema (PiperOrigin-RevId: 889289393) (c36aa616)

Documentation

  • update API common type documentation (PiperOrigin-RevId: 890591600) (c36aa616)

  • fix documentation formatting (PiperOrigin-RevId: 889289393) (c36aa616)

  • update various comments (PiperOrigin-RevId: 889289393) (c36aa616)

  • update SelectiveGapicGeneration usage doc (PiperOrigin-RevId: 892649773) (c36aa616)

  • update license year (PiperOrigin-RevId: 889289393) (c36aa616)

Commits
  • 79a0651 chore: librarian release pull request: 20260402T161941Z (#16539)
  • 4c541cf fix: allow redis 7.x (#16533)
  • ffb4b71 fix: allow Protobuf 7.x (#16532)
  • d49690d chore: enable python-crc32c kokoro presubmits (#16524)
  • beaf708 chore(migration): Migrate code from googleapis/python-crc32c into packages/go...
  • c36aa61 chore: librarian generate pull request: 20260401T195653Z (#16513)
  • 0c87765 chore: bypass kokoro presubmits
  • d0610bf tests: temporarily skip system test to unblock code migration as per offline ...
  • c7545d6 Reapply "chore: incorporates split repo changes from PR #2547"
  • 416c678 Revert "chore: incorporates split repo changes from PR #2547"
  • Additional commits viewable in compare view

Updates identify from 2.6.18 to 2.6.19

Commits
  • b39f637 v2.6.19
  • c976888 Merge pull request #588 from hofbi/patch-1
  • 6110d73 Add support for 'tif' file extension
  • ccbd337 Merge pull request #587 from pre-commit/pre-commit-ci-update-config
  • f5af264 [pre-commit.ci] pre-commit autoupdate
  • a0be598 Merge pull request #586 from pre-commit/pre-commit-ci-update-config
  • b184043 [pre-commit.ci] pre-commit autoupdate
  • See full diff in compare view

Updates idna from 3.11 to 3.13

Changelog

Sourced from idna's changelog.

3.13 (2026-04-22) +++++++++++++++++

  • Correct classification error for codepoint U+A7F1

3.12 (2026-04-21) +++++++++++++++++

  • Update to Unicode 17.0.0.
  • Issue a deprecation warning for the transitional argument.
  • Added lazy-loading to provide some performance improvements.
  • Removed vestiges of code related to Python 2 support, including segmentation of data structures specific to Jython.

Thanks to Rodrigo Nogueira for contributions to this release.

Commits
  • 89cdfd2 Release v3.13
  • 1eb0686 Pre-release 3.13
  • 5f20d1e Merge pull request #220 from kjd/unicode-next
  • 4ea8425 Regenerate idnadata.py with correct NFKC_CF data
  • fd47341 Use NFKC_CF from Unicode data files instead of Python's unicodedata module
  • a5304a4 Merge pull request #219 from kjd/release-3.12
  • d80d6f9 Release v3.12
  • 1bb44dd Merge pull request #218 from kjd/release-candidate-3.12rc0
  • 909c49d Release candidate for 3.12
  • c5459a1 Merge pull request #217 from kjd/housekeeping-2
  • Additional commits...

    Description has been truncated

Bumps the ofe-minor-and-patch-updates group in /community/front-end/ofe with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [certifi](https://github.com/certifi/python-certifi) | `2026.2.25` | `2026.4.22` |
| [charset-normalizer](https://github.com/jawah/charset_normalizer) | `3.4.6` | `3.4.7` |
| [click](https://github.com/pallets/click) | `8.3.1` | `8.3.3` |
| [django-allauth](https://github.com/sponsors/pennersr) | `65.15.0` | `65.16.1` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.25.2` | `3.29.0` |
| [google-api-core](https://github.com/googleapis/google-cloud-python) | `2.30.1` | `2.30.3` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.193.0` | `2.194.0` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.49.1` | `2.50.0` |
| [google-cloud-pubsub](https://github.com/googleapis/google-cloud-python) | `2.36.0` | `2.37.0` |
| [googleapis-common-protos](https://github.com/googleapis/google-cloud-python) | `1.73.1` | `1.74.0` |
| [identify](https://github.com/pre-commit/identify) | `2.6.18` | `2.6.19` |
| [idna](https://github.com/kjd/idna) | `3.11` | `3.13` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.9.4` | `4.9.6` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.5.1` | `4.6.0` |
| [uvicorn](https://github.com/Kludex/uvicorn) | `0.42.0` | `0.46.0` |
| [virtualenv](https://github.com/pypa/virtualenv) | `21.2.0` | `21.3.0` |
| [zipp](https://github.com/jaraco/zipp) | `3.23.0` | `3.23.1` |


Updates `certifi` from 2026.2.25 to 2026.4.22
- [Commits](certifi/python-certifi@2026.02.25...2026.04.22)

Updates `charset-normalizer` from 3.4.6 to 3.4.7
- [Release notes](https://github.com/jawah/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.4.6...3.4.7)

Updates `click` from 8.3.1 to 8.3.3
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.3.1...8.3.3)

Updates `django-allauth` from 65.15.0 to 65.16.1
- [Commits](https://github.com/sponsors/pennersr/commits)

Updates `filelock` from 3.25.2 to 3.29.0
- [Release notes](https://github.com/tox-dev/py-filelock/releases)
- [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
- [Commits](tox-dev/filelock@3.25.2...3.29.0)

Updates `google-api-core` from 2.30.1 to 2.30.3
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@google-api-core-v2.30.1...google-api-core-v2.30.3)

Updates `google-api-python-client` from 2.193.0 to 2.194.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.193.0...v2.194.0)

Updates `google-auth` from 2.49.1 to 2.50.0
- [Release notes](https://github.com/googleapis/google-auth-library-python/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md)
- [Commits](https://github.com/googleapis/google-auth-library-python/commits)

Updates `google-cloud-pubsub` from 2.36.0 to 2.37.0
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-documentai/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@google-cloud-pubsub-v2.36.0...google-cloud-pubsub-v2.37.0)

Updates `googleapis-common-protos` from 1.73.1 to 1.74.0
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-documentai/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@googleapis-common-protos-v1.73.1...googleapis-common-protos-v1.74.0)

Updates `identify` from 2.6.18 to 2.6.19
- [Commits](pre-commit/identify@v2.6.18...v2.6.19)

Updates `idna` from 3.11 to 3.13
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.11...v3.13)

Updates `platformdirs` from 4.9.4 to 4.9.6
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/docs/changelog.rst)
- [Commits](tox-dev/platformdirs@4.9.4...4.9.6)

Updates `pre-commit` from 4.5.1 to 4.6.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.5.1...v4.6.0)

Updates `uvicorn` from 0.42.0 to 0.46.0
- [Release notes](https://github.com/Kludex/uvicorn/releases)
- [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.42.0...0.46.0)

Updates `virtualenv` from 21.2.0 to 21.3.0
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@21.2.0...21.3.0)

Updates `zipp` from 3.23.0 to 3.23.1
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.23.0...v3.23.1)

---
updated-dependencies:
- dependency-name: certifi
  dependency-version: 2026.4.22
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: charset-normalizer
  dependency-version: 3.4.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: click
  dependency-version: 8.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: django-allauth
  dependency-version: 65.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: filelock
  dependency-version: 3.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: google-api-core
  dependency-version: 2.30.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: google-api-python-client
  dependency-version: 2.194.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: google-auth
  dependency-version: 2.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: google-cloud-pubsub
  dependency-version: 2.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: googleapis-common-protos
  dependency-version: 1.74.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: identify
  dependency-version: 2.6.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: idna
  dependency-version: '3.13'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: platformdirs
  dependency-version: 4.9.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: pre-commit
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: uvicorn
  dependency-version: 0.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: virtualenv
  dependency-version: 21.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ofe-minor-and-patch-updates
- dependency-name: zipp
  dependency-version: 3.23.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ofe-minor-and-patch-updates
...

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 release-chore To not include into release notes labels Apr 30, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 30, 2026 21:37
@github-actions github-actions Bot added the external PR from external contributor label Apr 30, 2026
@aslam-quad

Copy link
Copy Markdown
Contributor

/gcbrun

@siddhartha-quad siddhartha-quad merged commit 31390c8 into develop May 4, 2026
17 of 81 checks passed
@dependabot dependabot Bot deleted the dependabot/pip/community/front-end/ofe/develop/ofe-minor-and-patch-updates-c35d1b1b43 branch May 4, 2026 07:22
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 external PR from external contributor python Pull requests that update Python code release-chore To not include into release notes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants