Skip to content

chore(deps): bump the pip-test-minor-patch group across 1 directory with 2 updates#701

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7
Open

chore(deps): bump the pip-test-minor-patch group across 1 directory with 2 updates#701
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the pip-test-minor-patch group with 2 updates in the /src/test/python_tests directory: pygls and pytest.

Updates pygls from 2.0.1 to 2.1.1

Release notes

Sourced from pygls's releases.

v2.1.1

What's Changed

Full Changelog: openlawlibrary/pygls@v2.1.0...v2.1.1

v2.1.0

What's Changed

New Contributors

Full Changelog: openlawlibrary/pygls@v2.0.1...v2.1.0

Changelog

Sourced from pygls's changelog.

[2.1.1] - 2026-03-25

More details: https://github.com/openlawlibrary/pygls/releases/tag/v2.1.1

Features

  • Implement comparison operators
  • Add utility functions for overlap and inclusion

Miscellaneous Tasks

  • Update CHANGELOG.md
  • Update CONTRIBUTORS.md

Build

  • V2.1.1

[2.1.0] - 2026-03-19

More details: https://github.com/openlawlibrary/pygls/releases/tag/v2.1.0

Bug Fixes

  • Only recursively generate overloads for optional types

Documentation

  • Add Galaxy Language Server to Implementations.md and v2 migration examples

Features

  • Normalize percent-encoded uris used as workspace dict keys
  • Introduce server-side position types
  • Add utility functions for converting positions and accessing contents
  • Add utility function for getting a position from an offset

Miscellaneous Tasks

  • Update CHANGELOG.md
  • Update CONTRIBUTORS.md
  • Set python version for pyright
  • Update type annotations
  • Regenerate capability overloads

Refactor

  • Add encoding-specific implementation classes

Styling

... (truncated)

Commits
  • 4119a79 build(deps): v2.1.1
  • dc349ea feat(ServerTextRange): add utility functions for overlap and inclusion
  • ec2ee19 feat(ServerTextPosition): implement comparison operators
  • 8c13d11 chore: update CONTRIBUTORS.md
  • e440628 chore: update CHANGELOG.md
  • a1a2ae6 build(deps): release v2.1.0 and upgrade dev deps
  • 0307faf build(deps): bump the pip group across 2 directories with 1 update
  • 1b15e0a docs: add Galaxy Language Server to Implementations.md and v2 migration examples
  • 42f5fa3 chore: regenerate capability overloads
  • f0b8d2a style: ensure None sorts last
  • Additional commits viewable in compare view

Updates pytest from 9.0.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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added debt Technical debt or repo cleanup dependencies Pull requests that update a dependency file no-changelog Exclude from release notes labels Apr 8, 2026
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch 2 times, most recently from ebaa055 to c215f02 Compare April 22, 2026 14:19
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch from c215f02 to 0648454 Compare April 29, 2026 14:16
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch from 0648454 to 47f3086 Compare May 6, 2026 14:21
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch from 47f3086 to fdb9e77 Compare May 13, 2026 14:38
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch 2 times, most recently from e5e1e68 to 4f3a6e0 Compare June 10, 2026 14:14
@dependabot dependabot Bot changed the title Bump the pip-test-minor-patch group across 1 directory with 2 updates chore(deps): bump the pip-test-minor-patch group across 1 directory with 2 updates Jun 23, 2026
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch from 4f3a6e0 to 56b6deb Compare June 23, 2026 17:54
…ith 2 updates

Bumps the pip-test-minor-patch group with 2 updates in the /src/test/python_tests directory: [pygls](https://github.com/openlawlibrary/pygls) and [pytest](https://github.com/pytest-dev/pytest).


Updates `pygls` from 2.0.1 to 2.1.1
- [Release notes](https://github.com/openlawlibrary/pygls/releases)
- [Changelog](https://github.com/openlawlibrary/pygls/blob/main/CHANGELOG.md)
- [Commits](openlawlibrary/pygls@v2.0.1...v2.1.1)

Updates `pytest` from 9.0.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@9.0.2...9.1.1)

---
updated-dependencies:
- dependency-name: pygls
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-test-minor-patch
- dependency-name: pytest
  dependency-version: 9.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-test-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/pip/src/test/python_tests/pip-test-minor-patch-73f6841db7 branch from 56b6deb to e3cede5 Compare June 24, 2026 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

debt Technical debt or repo cleanup dependencies Pull requests that update a dependency file no-changelog Exclude from release notes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants