Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency pluggy to >=0.13.1 #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mend-5034428[bot]
Copy link

@mend-5034428 mend-5034428 bot commented Oct 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pluggy >=0.3.1 -> >=0.13.1 age adoption passing confidence

Release Notes

pytest-dev/pluggy (pluggy)

v0.13.1

Compare Source

==========================

Trivial/Internal Changes

  • #&#8203;236 <https://github.com/pytest-dev/pluggy/pull/236>_: Improved documentation, especially with regard to references.

v0.13.0

Compare Source

==========================

Trivial/Internal Changes

  • #&#8203;222 <https://github.com/pytest-dev/pluggy/issues/222>_: Replace importlib_metadata backport with importlib.metadata from the
    standard library on Python 3.8+.

v0.12.0

Compare Source

==========================

Features

  • #&#8203;215 <https://github.com/pytest-dev/pluggy/issues/215>_: Switch from pkg_resources to importlib-metadata for entrypoint detection for improved performance and import time. This time with .egg support.

v0.11.0

Compare Source

==========================

Bug Fixes

  • #&#8203;205 <https://github.com/pytest-dev/pluggy/issues/205>_: Revert changes made in 0.10.0 release breaking .egg installs.

v0.10.0

Compare Source

==========================

Features

  • #&#8203;199 <https://github.com/pytest-dev/pluggy/issues/199>_: Switch from pkg_resources to importlib-metadata for entrypoint detection for improved performance and import time.

v0.9.0

Compare Source

=========================

Features

  • #&#8203;189 <https://github.com/pytest-dev/pluggy/issues/189>_: PluginManager.load_setuptools_entrypoints now accepts a name parameter that when given will
    load only entry points with that name.

    PluginManager.load_setuptools_entrypoints also now returns the number of plugins loaded by the
    call, as opposed to the number of all plugins loaded by all calls to this method.

Bug Fixes

  • #&#8203;187 <https://github.com/pytest-dev/pluggy/issues/187>_: Fix internal varnames function for PyPy3.

v0.8.1

Compare Source

=========================

Trivial/Internal Changes

  • #&#8203;166 <https://github.com/pytest-dev/pluggy/issues/166>_: Add stacklevel=2 to implprefix warning so that the reported location of warning is the caller of PluginManager.

v0.8.0

Compare Source

=========================

Features

  • #&#8203;177 <https://github.com/pytest-dev/pluggy/issues/177>_: Add get_hookimpls() method to hook callers.

Trivial/Internal Changes

  • #&#8203;165 <https://github.com/pytest-dev/pluggy/issues/165>_: Add changelog in long package description and documentation.

  • #&#8203;172 <https://github.com/pytest-dev/pluggy/issues/172>_: Add a test exemplifying the opt-in nature of spec defined args.

  • #&#8203;57 <https://github.com/pytest-dev/pluggy/issues/57>_: Encapsulate hook specifications in a type for easier introspection.

v0.7.1

Compare Source

=========================

Deprecations and Removals

  • #&#8203;116 <https://github.com/pytest-dev/pluggy/issues/116>_: Deprecate the implprefix kwarg to PluginManager and instead
    expect users to start using explicit HookimplMarker everywhere.

Features

  • #&#8203;122 <https://github.com/pytest-dev/pluggy/issues/122>_: Add .plugin member to PluginValidationError to access failing plugin during post-mortem.

  • #&#8203;138 <https://github.com/pytest-dev/pluggy/issues/138>_: Add per implementation warnings support for hookspecs allowing for both
    deprecation and future warnings of legacy and (future) experimental hooks
    respectively.

Bug Fixes

  • #&#8203;110 <https://github.com/pytest-dev/pluggy/issues/110>_: Fix a bug where _HookCaller.call_historic() would call the proc
    arg even when the default is None resulting in a TypeError.

  • #&#8203;160 <https://github.com/pytest-dev/pluggy/issues/160>_: Fix problem when handling VersionConflict errors when loading setuptools plugins.

Improved Documentation

  • #&#8203;123 <https://github.com/pytest-dev/pluggy/issues/123>_: Document how exceptions are handled and how the hook call loop
    terminates immediately on the first error which is then delivered
    to any surrounding wrappers.

  • #&#8203;136 <https://github.com/pytest-dev/pluggy/issues/136>_: Docs rework including a much better introduction and comprehensive example
    set for new users. A big thanks goes out to @​obestwalter for the great work!

Trivial/Internal Changes

  • #&#8203;117 <https://github.com/pytest-dev/pluggy/issues/117>_: Break up the main monolithic package modules into separate modules by concern

  • #&#8203;131 <https://github.com/pytest-dev/pluggy/issues/131>_: Automate setuptools wheels building and PyPi upload using TravisCI.

  • #&#8203;153 <https://github.com/pytest-dev/pluggy/issues/153>_: Reorganize tests more appropriately by modules relating to each
    internal component/feature. This is in an effort to avoid (future)
    duplication and better separation of concerns in the test set.

  • #&#8203;156 <https://github.com/pytest-dev/pluggy/issues/156>_: Add HookImpl.__repr__() for better debugging.

  • #&#8203;66 <https://github.com/pytest-dev/pluggy/issues/66>_: Start using towncrier and a custom tox environment to prepare releases!

v0.6.0

Compare Source

=========================

  • Add CI testing for the features, release, and master
    branches of pytest (PR #79_).
  • Document public API for _Result objects passed to wrappers
    (PR #85_).
  • Document and test hook LIFO ordering (PR #85_).
  • Turn warnings into errors in test suite (PR #89_).
  • Deprecate _Result.result (PR #88_).
  • Convert _Multicall to a simple function distinguishing it from
    the legacy version (PR #90_).
  • Resolve E741 errors (PR #96_).
  • Test and bug fix for unmarked hook collection (PRs #97_ and
    #102_).
  • Drop support for EOL Python 2.6 and 3.3 (PR #103_).
  • Fix inspect based arg introspection on py3.6 (PR #94_).

.. _#79:https://github.com/pytest-dev/pluggy/pull/799
.. _#85https://github.com/pytest-dev/pluggy/pull/8585
.. _#8https://github.com/pytest-dev/pluggy/pull/88/88
.. _#https://github.com/pytest-dev/pluggy/pull/89l/89
.. _https://github.com/pytest-dev/pluggy/pull/90ll/90
.. [https://github.com/pytest-dev/pluggy/pull/94](https://togithub.com/pytest-dev/pluggy/pull/94)ull/94
.. https://github.com/pytest-dev/pluggy/pull/96pull/96
..https://github.com/pytest-dev/pluggy/pull/97/pull/97
..https://github.com/pytest-dev/pluggy/pull/102/pull/102
.https://github.com/pytest-dev/pluggy/pull/103y/pull/103

v0.5.2

Compare Source

=========================

  • fix bug where firstresult wrappers were being sent an incorrectly configured
    _Result (a list was set instead of a single value). Add tests to check for
    this as well as _Result.force_result() behaviour. Thanks to @tgoodlet_
    for the PR #72_.

  • fix incorrect getattr of DeprecationWarning from the warnings
    module. Thanks to @nicoddemus_ for the PR #77_.

  • hide pytest tracebacks in certain core routines. Thanks to
    @nicoddemus_ for the PR #80_.

.. _#72:https://github.com/pytest-dev/pluggy/pull/722
.. _#77https://github.com/pytest-dev/pluggy/pull/7777
.. _#8https://github.com/pytest-dev/pluggy/pull/80/80

v0.5.1

Compare Source

=========================

  • fix a bug and add tests for case where firstresult hooks return
    None results. Thanks to @RonnyPfannschmidt_ and @tgoodlet_
    for the issue (#68) and PR (#69) respectively.

.. _#69:https://github.com/pytest-dev/pluggy/pull/699
.. _#68https://github.com/pytest-dev/pluggy/issues/6868

v0.5.0

Compare Source

=========================

  • fix bug where callbacks for historic hooks would not be called for
    already registered plugins. Thanks @vodik_ for the PR
    and @hpk42_ for further fixes.

  • fix #17_ by considering only actual functions for hooks
    this removes the ability to register arbitrary callable objects
    which at first glance is a reasonable simplification,
    thanks @RonnyPfannschmidt_ for report and pr.

  • fix #19: allow registering hookspecs from instances. The PR from
    @tgoodlet
    also modernized the varnames implementation.

  • resolve #32: split up the test set into multiple modules.
    Thanks to @RonnyPfannschmidt
    for the PR and @tgoodlet_ for
    the initial request.

  • resolve #14: add full sphinx docs. Thanks to @tgoodlet for
    PR #39_.

  • add hook call mismatch warnings. Thanks to @tgoodlet_ for the
    PR #42_.

  • resolve #44: move to new-style classes. Thanks to @MichalTHEDUDE
    for PR #46_.

  • add baseline benchmarking/speed tests using pytest-benchmark
    in PR #54. Thanks to @tgoodlet.

  • update the README to showcase the API. Thanks to @tgoodlet_ for the
    issue and PR #55_.

  • deprecate __multicall__ and add a faster call loop implementation.
    Thanks to @tgoodlet_ for PR #58_.

  • raise a comprehensible error when a hookimpl is called with positional
    args. Thanks to @RonnyPfannschmidt_ for the issue and @tgoodlet_ for
    PR #60_.

  • fix the firstresult test making it more complete
    and remove a duplicate of that test. Thanks to @tgoodlet_
    for PR #62_.

.. _#62:https://github.com/pytest-dev/pluggy/pull/622
.. _#60https://github.com/pytest-dev/pluggy/pull/6060
.. _#5https://github.com/pytest-dev/pluggy/pull/58/58
.. _#https://github.com/pytest-dev/pluggy/pull/55l/55
.. _https://github.com/pytest-dev/pluggy/pull/54ll/54
.. [https://github.com/pytest-dev/pluggy/pull/46](https://togithub.com/pytest-dev/pluggy/pull/46)ull/46
.. https://github.com/pytest-dev/pluggy/issues/44sues/44
..https://github.com/pytest-dev/pluggy/pull/42/pull/42
.https://github.com/pytest-dev/pluggy/pull/39y/pull/39
https://github.com/pytest-dev/pluggy/pull/32gy/pull/32https://github.com/pytest-dev/pluggy/issues/19y/issues/1https://github.com/pytest-dev/pluggy/issues/17gy/issues/https://github.com/pytest-dev/pluggy/issues/14ggy/issues/14

v0.4.0

Compare Source

=========================

  • add has_plugin(name) method to pluginmanager. thanks @nicoddemus_.

  • fix #11: make plugin parsing more resilient against exceptions
    from __getattr__ functions. Thanks @nicoddemus
    .

  • fix issue #4_: specific HookCallError exception for when a hook call
    provides not enough arguments.

  • better error message when loading setuptools entrypoints fails
    due to a VersionConflict. Thanks @blueyed_.

.. _#11:https://github.com/pytest-dev/pluggy/issues/111
.. _#4https://github.com/pytest-dev/pluggy/issues/4/4


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants