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.2

Changelog

Sourced from requests-cache's changelog.

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
  • 37f16cc Skip building orjson from source on python 3.15 (wheel not available and rust...
  • 6fc7da3 Update changelog
  • 2848523 Update dependencies, actions, and pre-commit hooks
  • f7485eb Merge pull request #1152 from edgarrmondragon/1151-fix-requests-2.34
  • 188d647 fix: Prepare CachedResponse dataclass to work with upcoming v2.34
  • 5ca431f Update dependencies, pre-commit hooks, and actions
  • 9c55372 Merge pull request #1149 from requests-cache/vary-ignored
  • 6e85586 Update contributors
  • 9353cd7 Update security recommendations and some additional links to other cache libr...
  • 1971171 Add some more common auth headers to default ignore list
  • Additional commits viewable in compare view

Updates pytest from 8.4.2 to 9.1.0

Release notes

Sourced from pytest's releases.

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.

    Use the node parameter instead for fixture scoping. This enables more robust node-based matching instead of string prefix matching. If you've used nodeid=None, pass node=session instead.

    This will be removed in pytest 10.

  • #14335: The method of configuring hooks using markers, deprecated since pytest 7.2, is now scheduled to be removed in pytest 10. See hook-markers for more details.

  • #14434: The --pastebin option is now deprecated.

... (truncated)

Commits
  • b2522cf Prepare release version 9.1.0
  • 368d2fc [refactor] Tighten SetComparisonFunction to Iterator[str] (#14587)
  • ff77cd8 [refactor] Make base assertion comparisons return an iterator instead of a li...
  • 0d8491a build(deps): Bump actions/stale from 10.2.0 to 10.3.0
  • 4a809d9 Merge pull request #14568 from pytest-dev/register-fixture
  • 5dfa385 Fix recursion traceback test to cover all styles (#14582)
  • f52ff0c Add pytest.register_fixture
  • a8ac094 Merge pull request #14567 from pytest-dev/more-visibility-deprecate
  • e5620cd [pre-commit.ci] pre-commit autoupdate (#14577)
  • 2ce9c6d Merge pull request #14540 from minbang930/fix-14533-doctest-module-fixtures
  • 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
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.2
- [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.2)

Updates `pytest` from 8.4.2 to 9.1.0
- [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.0)

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 0b9f5d1 to 7830fec Compare June 15, 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