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

chore(deps): update dev #686

Merged
merged 5 commits into from
Mar 12, 2023
Merged

chore(deps): update dev #686

merged 5 commits into from
Mar 12, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
coverage ==7.1.0 -> ==7.2.1 age adoption passing confidence
mkdocs-material ==9.0.9 -> ==9.1.2 age adoption passing confidence
pyright ==1.1.291 -> ==1.1.298 age adoption passing confidence
pytest (source, changelog) ==7.2.1 -> ==7.2.2 age adoption passing confidence
slotscheck ==0.16.4 -> ==0.16.5 age adoption passing confidence

Release Notes

nedbat/coveragepy

v7.2.1

Compare Source

  • Fix: the PyPI page had broken links to documentation pages, but no longer
    does, closing issue 1566_.

  • Fix: public members of the coverage module are now properly indicated so that
    mypy will find them, fixing issue 1564_.

.. _issue 1564:https://github.com/nedbat/coveragepy/issues/15644
.. _issue 1566https://github.com/nedbat/coveragepy/issues/156666

.. _changes_7-2-0:

v7.2.0

Compare Source

  • Added a new setting [report] exclude_also to let you add more exclusions
    without overwriting the defaults. Thanks, Alpha Chen <pull 1557_>,
    closing issue 1391
    .

  • Added a :meth:.CoverageData.purge_files method to remove recorded data for
    a particular file. Contributed by Stephan Deibel <pull 1547_>_.

  • Fix: when reporting commands fail, they will no longer congratulate
    themselves with messages like "Wrote XML report to file.xml" before spewing a
    traceback about their failure.

  • Fix: arguments in the public API that name file paths now accept pathlib.Path
    objects. This includes the data_file and config_file arguments to
    the Coverage constructor and the basename argument to CoverageData.
    Closes issue 1552_.

  • Fix: In some embedded environments, an IndexError could occur on stop() when
    the originating thread exits before completion. This is now fixed, thanks to
    Russell Keith-Magee <pull 1543_>, closing issue 1542.

  • Added a py.typed file to announce our type-hintedness. Thanks,
    KotlinIsland <pull 1550_>_.

.. _issue 1391:https://github.com/nedbat/coveragepy/issues/13911
.. _issue 1542https://github.com/nedbat/coveragepy/issues/154242
.. _pull 154https://github.com/nedbat/coveragepy/pull/1543543
.. _pull 15https://github.com/nedbat/coveragepy/pull/15471547
.. _pull 1https://github.com/nedbat/coveragepy/pull/1550/1550
.. _issue https://github.com/nedbat/coveragepy/issues/1552s/1552
.. _pullhttps://github.com/nedbat/coveragepy/pull/1557ll/1557

.. _changes_7-1-0:

squidfunk/mkdocs-material

v9.1.2: mkdocs-material-9.1.2

Compare Source

  • Updated Icelandic, Korean and Swedish translations
  • Fixed #​5168: Mermaid text boxes overflow (9.0.13 regression)
  • Fixed #​5155: table of contents not highlighting percent-encoded URLs

v9.1.1: mkdocs-material-9.1.1

Compare Source

  • Updated Czech and Thai translations
  • Improved instant loading (scroll restoration, slow connections)
  • Fixed #​5023: Instant loading not allowing to go back to initial page
  • Fixed #​3797: Instant loading does not work with section anchors in Safari

v9.1.0: mkdocs-material-9.1.0

Compare Source

  • Docker image now available for amd64, arm64 and arm/v7
  • Updated Chinese (Taiwanese) translations
  • Generalized tag identifier implementation
  • Fixed flickering of header shadow on load
  • Fixed occasional flickering of announcement bar

v9.0.15: mkdocs-material-9.0.15

Compare Source

  • Updated Chinese (Traditional) translations
  • Updated Hebrew translations

v9.0.14: mkdocs-material-9.0.14

Compare Source

  • Fixed #​5072: Rendering bug on navigation expand button in Firefox

v9.0.13: mkdocs-material-9.0.13

Compare Source

  • Updated Uzbek translations
  • Switched back to pre-9.0.0 headline detection in content partial
  • Fixed #​5062: Version warning not readable when using slate scheme
  • Fixed #​5061: Improved discernibility of table row hover color
  • Fixed #​5034: Sequence actors in Mermaid diagrams not color-abiding
  • Fixed #​4919: Allow to hide version warning in multiple versions

v9.0.12: mkdocs-material-9.0.12

Compare Source

  • Updated Catalan translations
  • Fixed #​4975: Mermaid entity relationship rendering diagrams bug
  • Fixed #​4924: Header title not reset when using instant loading

v9.0.11: mkdocs-material-9.0.11

Compare Source

  • Added Mastodon verification for social links (rel=me)
  • Updated Italian translations

v9.0.10: mkdocs-material-9.0.10

Compare Source

  • Updated Arabic translations
  • Updated Korean translations
  • Updated Hungarian translations
  • Updated Russian translations
  • Fixed #​4977: Improved accessibility for content tabs
  • Fixed #​4960: Sometimes anchor following doesn't bring last item into view
RobertCraigie/pyright-python

v1.1.298

Compare Source

v1.1.297

Compare Source

v1.1.296

Compare Source

This release adds support for offline usage after the first initial run to cache the installed package.

This release also changes how the root cache directory is resolved, it now follows this pattern:

  • Checks the PYRIGHT_PYTHON_CACHE_DIR environment variable
  • Checks the XDG_CACHE_HOME environment variable
  • Then if neither of the above are set, it defaults to ~/.cache

v1.1.295

Compare Source

v1.1.294

Compare Source

v1.1.293

Compare Source

v1.1.292

Compare Source

pytest-dev/pytest

v7.2.2

Compare Source

pytest 7.2.2 (2023-03-03)

Bug Fixes

  • #​10533: Fixed pytest.approx{.interpreted-text role="func"} handling of dictionaries containing one or more values of [0.0]{.title-ref}.
  • #​10592: Fixed crash if [--cache-show]{.title-ref} and [--help]{.title-ref} are passed at the same time.
  • #​10597: Fixed bug where a fixture method named teardown would be called as part of nose teardown stage.
  • #​10626: Fixed crash if --fixtures and --help are passed at the same time.
  • #​10660: Fixed :pypytest.raises{.interpreted-text role="func"} to return a 'ContextManager' so that type-checkers could narrow
    pytest.raises(...) if ... else nullcontext() down to 'ContextManager' rather than 'object'.

Improved Documentation

  • #​10690: Added [CI]{.title-ref} and [BUILD_NUMBER]{.title-ref} environment variables to the documentation.
  • #​10721: Fixed entry-points declaration in the documentation example using Hatch.
  • #​10753: Changed wording of the module level skip to be very explicit
    about not collecting tests and not executing the rest of the module.
ariebovenberg/slotscheck

v0.16.5

Compare Source

  • Don't flag TypedDict from typing_extensions in Python versions
    where typing has TypedDict itself.

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency pyright to v1.1.292 chore(deps): update dev Feb 2, 2023
@renovate renovate bot force-pushed the renovate/dev branch 2 times, most recently from 832b4aa to 9182f65 Compare February 8, 2023 12:31
@renovate renovate bot force-pushed the renovate/dev branch 3 times, most recently from de9ef6a to f702084 Compare February 18, 2023 14:06
@renovate renovate bot force-pushed the renovate/dev branch 6 times, most recently from 512f227 to 9c3aee3 Compare February 28, 2023 13:04
@renovate renovate bot force-pushed the renovate/dev branch 5 times, most recently from 4baa22d to d748cb5 Compare March 8, 2023 10:39
@renovate renovate bot force-pushed the renovate/dev branch 2 times, most recently from 6fe66a2 to 5b56d79 Compare March 9, 2023 21:58
@renovate
Copy link
Contributor Author

renovate bot commented Mar 12, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@RobertCraigie RobertCraigie merged commit 8664d81 into main Mar 12, 2023
@RobertCraigie RobertCraigie deleted the renovate/dev branch March 12, 2023 17:04
github-actions bot added a commit that referenced this pull request Mar 12, 2023
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.

None yet

1 participant