Skip to content

chore(deps): bump the python group across 1 directory with 4 updates#88

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/python-ee154ca22d
Open

chore(deps): bump the python group across 1 directory with 4 updates#88
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/python-ee154ca22d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the python group with 4 updates in the / directory: requests, requests-cache, pytest and pdbpp.

Updates requests from 2.32.5 to 2.34.2

Release notes

Sourced from requests's releases.

v2.34.2

2.34.2 (2026-05-14)

  • Moved headers input type back to Mapping to avoid invariance issues with MutableMapping and inferred dict types. Users calling Request.headers.update() may need to narrow typing in their code. (#7441)

Full Changelog: https://github.com/psf/requests/blob/main/HISTORY.md#2342-2026-05-14

v2.34.1

2.34.1 (2026-05-13)

Bugfixes

  • Widened json input type from dict and list to Mapping and Sequence. (#7436)
  • Changed headers input type to MutableMapping and removed None from Request.headers typing to improve handling for users. (#7431)
  • Response.reason moved from str | None to str to improve handling for users. (#7437)
  • Fixed a bug where some bodies with custom __getattr__ implementations weren't being properly detected as Iterables. (#7433)

New Contributors

Full Changelog: https://github.com/psf/requests/blob/main/HISTORY.md#2341-2026-05-13

v2.34.0

2.34.0 (2026-05-11)

Announcements

  • Requests 2.34.0 introduces inline types, replacing those provided by typeshed. Public API types should be fully compatible with mypy, pyright, and ty. We believe types are comprehensive but if you find issues, please report them to the pinned tracking issue.

    Special thanks to @​bastimeyer, @​cthoyt, @​edgarrmondragon, and @​srittau for helping review and test the types ahead of the release. (#7272)

Improvements

  • Digest Auth hashing algorithms have added usedforsecurity=False to clarify security considerations. (#7310)
  • Requests added support for Python 3.15 based on beta1. Downstream projects should be able to start testing prior to its release in October. (#7422)
  • Requests added support for Python 3.14t. (#7419)

Bugfixes

  • Response.history no longer contains a reference to itself, preventing accidental looping when traversing the history list. (#7328)
  • Requests no longer performs greedy matching on no_proxy domains. The

... (truncated)

Changelog

Sourced from requests's changelog.

2.34.2 (2026-05-14)

  • Moved headers input type back to Mapping to avoid invariance issues with MutableMapping and inferred dict types. Users calling Request.headers.update() may need to narrow typing in their code. (#7441)

2.34.1 (2026-05-13)

Bugfixes

  • Widened json input type from dict and list to Mapping and Sequence. (#7436)
  • Changed headers input type to MutableMapping and removed None from Request.headers typing to improve handling for users. (#7431)
  • Response.reason moved from str | None to str to improve handling for users. (#7437)
  • Fixed a bug where some bodies with custom __getattr__ implementations weren't being properly detected as Iterables. (#7433)

2.34.0 (2026-05-11)

Announcements

  • Requests 2.34.0 introduces inline types, replacing those provided by typeshed. Public API types should be fully compatible with mypy, pyright, and ty. We believe types are comprehensive but if you find issues, please report them to the pinned tracking issue.

    Special thanks to @​bastimeyer, @​cthoyt, @​edgarrmondragon, and @​srittau for helping review and test the types ahead of the release. (#7272)

Improvements

  • Digest Auth hashing algorithms have added usedforsecurity=False to clarify security considerations. (#7310)
  • Requests added support for Python 3.15 based on beta1. Downstream projects should be able to start testing prior to its release in October. (#7422)
  • Requests added support for Python 3.14t. (#7419)

Bugfixes

  • Response.history no longer contains a reference to itself, preventing accidental looping when traversing the history list. (#7328)
  • Requests no longer performs greedy matching on no_proxy domains. The proxy_bypass implementation has been updated with CPython's fix from bpo-39057. (#7427)
  • Requests no longer incorrectly strips duplicate leading slashes in URI paths. This should address user issues with specific presigned URLs. Note the full fix requires urllib3 2.7.0+. (#7315)

... (truncated)

Commits

Updates requests-cache from 1.3.0 to 1.3.3

Changelog

Sourced from requests-cache's changelog.

1.3.3 (2026-07-03)

  • Fix SQLite vacuum() not freeing disk space
  • Fix DynamoDB item enumeration when the table exceeds 1MB
  • Fix Redis ttl_offset for items that should have no expiry
  • Fix error when receiving an empty Expires header value

1.3.2 (2026-05-10)

  • Update CachedResponse for compatibility with requests 2.34
  • If a request contains a header that is in both ignored_parameters and Vary (for example, Authorization + Vary: Authorization), always consider it a cache miss
  • Ignore + redact some additional common authentication headers + params by default

1.3.1 (2025-03-03)

  • Add support for multiple response variations based on Vary
  • Fix overwriting headers after revalidation in read_only mode
  • Add tests for python 3.15 (alpha)
Commits
  • 2cdd81a Update dependencies and changelog
  • a5223fc Merge pull request #1168 from requests-cache/bugfixes
  • 27d1745 Run both steps of FileCache.clear() within RLock
  • 33a6a03 Fix Redis ttl_offset for items that should have no expiry
  • 965a8d8 Fix DynamoDb pagination for iter and values()
  • 186a1bf Update dependencies and changelog
  • d2f83ec Merge pull request #1165 from gaoflow/fix/empty-expires-indexerror
  • 917e3f9 Fix IndexError when Expires header value is an empty string
  • ccbc6af Merge pull request #1162 from requests-cache/dependabot/uv/starlette-1.3.1
  • 6fe3a66 Merge pull request #1161 from requests-cache/dependabot/github_actions/codeco...
  • Additional commits viewable in compare view

Updates pytest from 8.4.2 to 9.1.1

Release notes

Sourced from pytest's releases.

9.1.1

pytest 9.1.1 (2026-06-19)

Bug fixes

  • #14220: Fixed a logic bug in pytest.RaisesGroup which would might cause it to display incorrect "It matches FooError() which was paired with BarError" messages.
  • #14591: Fixed a regression in pytest 9.1.0 which caused overriding a parametrized fixture with an indirect @​pytest.mark.parametrize to fail with "duplicate parametrization of '<fixture name>'".
  • #14606: Fixed list-item typing errors from mypy in @pytest.mark.parametrize <pytest.mark.parametrize ref> argvalues parameter.
  • #14608: Fixed a regression in pytest 9.1.0 where conftest.py files located in <invocation dir>/test* were no longer loaded as initial conftests when invoked without arguments. This could cause certain hooks (like pytest_addoption) in these files to not fire.

9.1.0

pytest 9.1.0 (2026-06-13)

Removals and backward incompatible breaking changes

  • #14533: When using --doctest-modules, autouse fixtures with module, package or session scope that are defined inline in Python test modules (not plugins or conftests) will now possibly execute twice.

    If this is undesirable, move the fixture definition to a conftest.py file if possible.

    Technical explanation for those interested: When using --doctest-modules, pytest possibly collects Python modules twice, once as pytest.Module and once as a DoctestModule (depending on the configuration). Due to improvements in pytest's fixture implementation, if e.g. the DoctestModule collects a fixture, it is now visible to it only, and not to the Module. This means that both need to register the fixtures independently.

Deprecations (removal in next major release)

  • #10819: Added a deprecation warning for class-scoped fixtures defined as instance methods (without @classmethod). Such fixtures set attributes on a different instance than the test methods use, leading to unexpected behavior. Use @classmethod decorator instead -- by yastcher.

    See 10819 and 14011.

  • #12882: Calling request.getfixturevalue() <pytest.FixtureRequest.getfixturevalue> during teardown to request a fixture that was not already requested is now deprecated and will become an error in pytest 10.

    See dynamic-fixture-request-during-teardown for details.

  • #13409: Using non-~collections.abc.Collection iterables (such as generators, iterators, or custom iterable objects) for the argvalues parameter in @pytest.mark.parametrize <pytest.mark.parametrize ref> and metafunc.parametrize <pytest.Metafunc.parametrize> is now deprecated.

    These iterables get exhausted after the first iteration, leading to tests getting unexpectedly skipped in cases such as running pytest.main() multiple times, using class-level parametrize decorators, or collecting tests multiple times.

    See parametrize-iterators for details and suggestions.

  • #13946: The private config.inicfg attribute is now deprecated. Use config.getini() <pytest.Config.getini> to access configuration values instead.

    See config-inicfg for more details.

  • #14004: Passing baseid to ~pytest.FixtureDef or nodeid strings to fixture registration APIs is now deprecated. These are internal pytest APIs that are used by some plugins.

... (truncated)

Commits
  • cf470ec Prepare release version 9.1.1
  • e0c8ce6 Merge pull request #14625 from pytest-dev/patchback/backports/9.1.x/a07c31a97...
  • 1b82d16 Merge pull request #14624 from pytest-dev/patchback/backports/9.1.x/b375b79ec...
  • 501c4bc Merge pull request #14596 from bluetech/doc-classmethod
  • b61f588 Merge pull request #14622 from chrisburr/fix-14608-initial-conftest-test-subdir
  • 9a567e0 [automated] Update plugin list (#14617) (#14618)
  • ef8b299 Merge pull request #14620 from pytest-dev/patchback/backports/9.1.x/680f9f3ed...
  • 66abd07 Merge pull request #14220 from bysiber/fix-stale-iexp-raisesgroup
  • 79fbf93 Merge pull request #14612 from pytest-dev/patchback/backports/9.1.x/974ed48b6...
  • 0d312eb Merge pull request #14611 from bluetech/parametrize-argvalues-typing
  • Additional commits viewable in compare view

Updates pdbpp from 0.10.3 to 0.12.1

Release notes

Sourced from pdbpp's releases.

0.12.1

What’s Changed

Fixes

Improvements

  • pdb hijacking now works correctly when using editable installs (add custom editable_wheel command to hijack pdb in editable installs (#82) @​bretello)

Other

0.12.0.post1

What's Changed

0.12.0 release notes: https://github.com/bretello/pdbpp/releases/tag/0.12.0

Full Changelog: bretello/pdbpp@0.12.0...0.12.0.post1

0.12.0

What’s Changed

0.12.0rc2

What’s Changed

0.12.0rc1

... (truncated)

Changelog

Sourced from pdbpp's changelog.

CHANGELOG

Commits
  • f2f6c99 tests: add editable install/.pth tests
  • 711066d tests: remove skip_with_missing_pth file: editable installs should always work
  • 6b85bb1 setup.py: add custom editable_wheel command to hijack pdbpp in editable ins...
  • a9bd0af tests: simplify count_frames()
  • 7b50b0b remove extra empty space after sticky header
  • e6b6c1f flatten Pdbpp.print_if_sticky
  • 539f868 fix backtrace (bt) not showing with sticky enabled, display code on frame cha...
  • 7df39e5 build(deps): bump actions/cache from 3 to 5
  • 1f5a106 gha: release workflow: activate venv
  • 0f8bad9 build(deps): bump actions/checkout from 4 to 6
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 4, 2026
@dependabot
dependabot Bot requested a review from c0rydoras as a code owner June 4, 2026 00:25
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 4, 2026
@dependabot
dependabot Bot force-pushed the dependabot/pip/python-ee154ca22d branch from 88eedf2 to 0b9f5d1 Compare June 5, 2026 12:35
@dependabot
dependabot Bot force-pushed the dependabot/pip/python-ee154ca22d branch from 0b9f5d1 to 7830fec Compare June 15, 2026 12:24
@dependabot
dependabot Bot force-pushed the dependabot/pip/python-ee154ca22d branch from 7830fec to a6e3780 Compare June 29, 2026 12:24
@dependabot
dependabot Bot force-pushed the dependabot/pip/python-ee154ca22d branch from a6e3780 to 5e3c55e Compare July 10, 2026 12:24
Bumps the python group with 4 updates in the / directory: [requests](https://github.com/psf/requests), [requests-cache](https://github.com/requests-cache/requests-cache), [pytest](https://github.com/pytest-dev/pytest) and [pdbpp](https://github.com/bretello/pdbpp).


Updates `requests` from 2.32.5 to 2.34.2
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.5...v2.34.2)

Updates `requests-cache` from 1.3.0 to 1.3.3
- [Release notes](https://github.com/requests-cache/requests-cache/releases)
- [Changelog](https://github.com/requests-cache/requests-cache/blob/main/HISTORY.md)
- [Commits](requests-cache/requests-cache@v1.3.0...v1.3.3)

Updates `pytest` from 8.4.2 to 9.1.1
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.2...9.1.1)

Updates `pdbpp` from 0.10.3 to 0.12.1
- [Release notes](https://github.com/bretello/pdbpp/releases)
- [Changelog](https://github.com/bretello/pdbpp/blob/master/CHANGELOG)
- [Commits](bretello/pdbpp@0.10.3...0.12.1)

---
updated-dependencies:
- dependency-name: pdbpp
  dependency-version: 0.12.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: pytest
  dependency-version: 9.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python
- dependency-name: requests
  dependency-version: 2.34.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: requests-cache
  dependency-version: 1.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/pip/python-ee154ca22d branch from 5e3c55e to a895554 Compare July 20, 2026 12:24
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