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 pluggy to 0.7.1 #220

Closed
wants to merge 1 commit into from
Closed

Conversation

pyup-bot
Copy link
Collaborator

This PR updates pluggy from 0.3.1 to 0.7.1.

Changelog

0.6.0

-----
- 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/79
.. _85: https://github.com/pytest-dev/pluggy/pull/85
.. _88: https://github.com/pytest-dev/pluggy/pull/88
.. _89: https://github.com/pytest-dev/pluggy/pull/89
.. _90: https://github.com/pytest-dev/pluggy/pull/90
.. _94: https://github.com/pytest-dev/pluggy/pull/94
.. _96: https://github.com/pytest-dev/pluggy/pull/96
.. _97: https://github.com/pytest-dev/pluggy/pull/97
.. _102: https://github.com/pytest-dev/pluggy/pull/102
.. _103: https://github.com/pytest-dev/pluggy/pull/103

0.5.2

-----
- 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/72
.. _77: https://github.com/pytest-dev/pluggy/pull/77
.. _80: https://github.com/pytest-dev/pluggy/pull/80

0.5.1

-----
- 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/69
.. _68: https://github.com/pytest-dev/pluggy/issues/68

0.5.0

-----
- 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/62
.. _60: https://github.com/pytest-dev/pluggy/pull/60
.. _58: https://github.com/pytest-dev/pluggy/pull/58
.. _55: https://github.com/pytest-dev/pluggy/pull/55
.. _54: https://github.com/pytest-dev/pluggy/pull/54
.. _46: https://github.com/pytest-dev/pluggy/pull/46
.. _44: https://github.com/pytest-dev/pluggy/issues/44
.. _42: https://github.com/pytest-dev/pluggy/pull/42
.. _39: https://github.com/pytest-dev/pluggy/pull/39
.. _32: https://github.com/pytest-dev/pluggy/pull/32
.. _19: https://github.com/pytest-dev/pluggy/issues/19
.. _17: https://github.com/pytest-dev/pluggy/issues/17
.. _14: https://github.com/pytest-dev/pluggy/issues/14

0.4.0

-----
- 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/11
.. _4: https://github.com/pytest-dev/pluggy/issues/4
Links

@pyup-bot pyup-bot mentioned this pull request Jul 29, 2018
@pyup-bot
Copy link
Collaborator Author

Closing this in favor of #254

@pyup-bot pyup-bot closed this Oct 16, 2018
@StuartJSquires StuartJSquires deleted the pyup-update-pluggy-0.3.1-to-0.7.1 branch October 16, 2018 13:58
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.

1 participant