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 all dependencies (major) #132

Merged
merged 1 commit into from Jan 9, 2023
Merged

Update all dependencies (major) #132

merged 1 commit into from Jan 9, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 12, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Sphinx (changelog) ==5.0.2 -> ==6.1.1 age adoption passing confidence
coverage ==6.4 -> ==7.0.3 age adoption passing confidence
tox ==3.25.0 -> ==4.2.6 age adoption passing confidence

Release Notes

sphinx-doc/sphinx

v6.1.1

Compare Source

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

Bugs fixed

  • #​11091: Fix util.nodes.apply_source_workaround for literal_block nodes
    with no source information in the node or the node's parents.

v6.1.0

Compare Source

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

Dependencies

Incompatible changes

  • #​10979: gettext: Removed support for pluralisation in get_translation.
    This was unused and complicated other changes to sphinx.locale.

Deprecated

  • sphinx.util functions:

    • Renamed sphinx.util.typing.stringify()
      to sphinx.util.typing.stringify_annotation()
    • Moved sphinx.util.xmlname_checker()
      to sphinx.builders.epub3._XML_NAME_PATTERN

    Moved to sphinx.util.display:

    • sphinx.util.status_iterator
    • sphinx.util.display_chunk
    • sphinx.util.SkipProgressMessage
    • sphinx.util.progress_message

    Moved to sphinx.util.http_date:

    • sphinx.util.epoch_to_rfc1123
    • sphinx.util.rfc1123_to_epoch

    Moved to sphinx.util.exceptions:

    • sphinx.util.save_traceback
    • sphinx.util.format_exception_cut_frames

Features added

  • Cache doctrees in the build environment during the writing phase.
  • Make all writing phase tasks support parallel execution.
  • #​11072: Use PEP 604 (X | Y) display conventions for typing.Optional
    and typing.Optional types within the Python domain and autodoc.
  • #​10700: autodoc: Document typing.NewType() types as classes rather than
    'data'.
  • Cache doctrees between the reading and writing phases.

Bugs fixed

  • #​10962: HTML: Fix the multi-word key name lookup table.
  • Fixed support for Python 3.12 alpha 3 (changes in the enum module).
  • #​11069: HTML Theme: Removed outdated "shortcut" link relation keyword.
  • #​10952: Properly terminate parallel processes on programme interuption.
  • #​10988: Speed up TocTree.resolve() through more efficient copying.
  • #​6744: LaTeX: support for seealso directive should be via an environment
    to allow styling.
  • #​11074: LaTeX: Can't change sphinxnote to use sphinxheavybox starting with
    5.1.0

v6.0.1

Compare Source

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

Dependencies

  • Require Pygments 2.13 or later.

Bugs fixed

  • #​10944: imgmath: Fix resolving image paths for files in nested folders.

v6.0.0

Compare Source

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

Dependencies

  • #​10468: Drop Python 3.6 support
  • #​10470: Drop Python 3.7, Docutils 0.14, Docutils 0.15, Docutils 0.16, and
    Docutils 0.17 support. Patch by Adam Turner

Incompatible changes

  • #​7405: Removed the jQuery and underscore.js JavaScript frameworks.

    These frameworks are no longer be automatically injected into themes from
    Sphinx 6.0. If you develop a theme or extension that uses the
    jQuery, $, or $u global objects, you need to update your
    JavaScript to modern standards, or use the mitigation below.

    The first option is to use the sphinxcontrib.jquery_ extension, which has been
    developed by the Sphinx team and contributors. To use this, add
    sphinxcontrib.jquery to the extensions list in conf.py, or call
    app.setup_extension("sphinxcontrib.jquery") if you develop a Sphinx theme
    or extension.

    The second option is to manually ensure that the frameworks are present.
    To re-add jQuery and underscore.js, you will need to copy jquery.js and
    underscore.js from the Sphinx repository_ to your static directory,
    and add the following to your layout.html:

    .. code-block:: html+jinja

    {%- block scripts %} <script src="{{ pathto('_static/jquery.js', resource=True) }}"></script> <script src="{{ pathto('_static/underscore.js', resource=True) }}"></script>
    {{ super() }}
    {%- endblock %}

    .. _sphinxcontrib.jquery: https://github.com/sphinx-contrib/jquery/

    Patch by Adam Turner.

  • #​10471, #​10565: Removed deprecated APIs scheduled for removal in Sphinx 6.0. See
    :ref:dev-deprecated-apis for details. Patch by Adam Turner.

  • #​10901: C Domain: Remove support for parsing pre-v3 style type directives and
    roles. Also remove associated configuration variables c_allow_pre_v3 and
    c_warn_on_allowed_pre_v3. Patch by Adam Turner.

Features added

  • #​10924: LaTeX: adopt better looking defaults for tables and code-blocks.
    See :confval:latex_table_style and the pre_border-radius and
    pre_background-TeXcolor :ref:additionalcss for the former defaults
    and how to re-enact them if desired.

Bugs fixed

  • #​10984: LaTeX: Document :confval:latex_additional_files behavior for files
    with .tex extension.

v5.3.0

Compare Source

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

  • #​10759: LaTeX: add :confval:latex_table_style and support the
    'booktabs', 'borderless', and 'colorrows' styles.
    (thanks to Stefan Wiehler for initial pull requests #​6666, #​6671)
  • #​10840: One can cross-reference including an option value like :option:`--module=foobar```,:option:--module[=foobar]``` or ``:option:--module foobar```.
    Patch by Martin Liska.
  • #​10881: autosectionlabel: Record the generated section label to the debug log.
  • #​10268: Correctly URI-escape image filenames.
  • #​10887: domains: Allow sections in all the content of all object description
    directives (e.g. :rst:dir:py:function). Patch by Adam Turner

v5.2.3

Compare Source

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

  • #​10878: Fix base64 image embedding in sphinx.ext.imgmath
  • #​10886: Add :nocontentsentry: flag and global domain table of contents
    entry control option. Patch by Adam Turner

v5.2.2

Compare Source

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

  • #​10872: Restore link targets for autodoc modules to the top of content.
    Patch by Dominic Davis-Foster.

v5.2.1

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

Bugs fixed

  • #​10861: Always normalise the pycon3 lexer to pycon.
  • Fix using sphinx.ext.autosummary with modules containing titles in the
    module-level docstring.

v5.2.0.post0

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

  • Recreated source tarballs for Debian maintainers.

v5.2.0

Compare Source

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

  • Recreated source tarballs for Debian maintainers.

v5.1.1

Compare Source

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

Bugs fixed

  • #​10701: Fix ValueError in the new deque based sphinx.ext.napolean
    iterator implementation.
  • #​10702: Restore compatability with third-party builders.

v5.1.0

Compare Source

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

Dependencies

  • #​10656: Support Docutils 0.19_. Patch by Adam Turner.

.. _Docutils 0.19: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-19-2022-07-05

Deprecated

  • #​10467: Deprecated sphinx.util.stemmer in favour of snowballstemmer.
    Patch by Adam Turner.
  • #​9856: Deprecated sphinx.ext.napoleon.iterators.

Features added

  • #​10444: html theme: Allow specifying multiple CSS files through the stylesheet
    setting in theme.conf or by setting html_style to an iterable of strings.
  • #​10366: std domain: Add support for emphasising placeholders in :rst:dir:option
    directives through a new :confval:option_emphasise_placeholders configuration
    option.
  • #​10439: std domain: Use the repr of some variables when displaying warnings,
    making whitespace issues easier to identify.
  • #​10571: quickstart: Reduce content in the generated conf.py file. Patch by
    Pradyun Gedam.
  • #​10648: LaTeX: CSS-named-alike additional :ref:'sphinxsetup' <latexsphinxsetup>
    keys allow to configure four separate border-widths, four paddings, four
    corner radii, a shadow (possibly inset), colours for border, background, shadow
    for each of the code-block, topic, attention, caution, danger, error and warning
    directives.
  • #​10655: LaTeX: Explain non-standard encoding in LatinRules.xdy
  • #​10599: HTML Theme: Wrap consecutive footnotes in an <aside> element when
    using Docutils 0.18 or later, to allow for easier styling. This matches the
    behaviour introduced in Docutils 0.19. Patch by Adam Turner.
  • #​10518: config: Add include_patterns as the opposite of exclude_patterns.
    Patch by Adam Turner.

Bugs fixed

  • #​10594: HTML Theme: field term colons are doubled if using Docutils 0.18+
  • #​10596: Build failure if Docutils version is 0.18 (not 0.18.1) due
    to missing Node.findall()
  • #​10506: LaTeX: build error if highlighting inline code role in figure caption
    (refs: #​10251)
  • #​10634: Make -P (pdb) option work better with exceptions triggered from events
  • #​10550: py domain: Fix spurious whitespace in unparsing various operators (+,
    -, ~, and **). Patch by Adam Turner (refs: #​10551).
  • #​10460: logging: Always show node source locations as absolute paths.
  • HTML Search: HTML tags are displayed as a part of object name
  • HTML Search: search snipets should not be folded
  • HTML Search: Minor errors are emitted on fetching search snipets
  • HTML Search: The markers for header links are shown in the search result
  • #​10520: HTML Theme: Fix use of sidebar classes in agogo.css_t.
  • #​6679: HTML Theme: Fix inclusion of hidden toctrees in the agogo theme.
  • #​10566: HTML Theme: Fix enable_search_shortcuts does not work
  • #​8686: LaTeX: Text can fall out of code-block at end of page and leave artifact
    on next page
  • #​10633: LaTeX: user injected \color commands in topic or admonition boxes may
    cause color leaks in PDF due to upstream framed.sty <https://ctan.org/pkg/framed>_
    bug
  • #​10638: LaTeX: framed coloured boxes in highlighted code (e.g. highlighted
    diffs using Pygments style 'manni') inherit thickness of code-block frame
  • #​10647: LaTeX: Only one \label is generated for desc_signature node
    even if it has multiple node IDs
  • #​10579: i18n: UnboundLocalError is raised on translating raw directive
  • #​9577, #​10088: py domain: Fix warning for duplicate Python references when
    using :any: and autodoc.
  • #​10548: HTML Search: fix minor summary issues.
nedbat/coveragepy

v7.0.3

Compare Source

  • Fix: when using pytest-cov or pytest-xdist, or perhaps both, the combining
    step could fail with assert row is not None using 7.0.2. This was due to
    a race condition that has always been possible and is still possible. In
    7.0.1 and before, the error was silently swallowed by the combining code.
    Now it will produce a message "Couldn't combine data file" and ignore the
    data file as it used to do before 7.0.2. Closes issue 1522_.

.. _issue 1522:https://github.com/nedbat/coveragepy/issues/15222

.. _changes_7-0-2:

v7.0.2

Compare Source

  • Fix: when using the [run] relative_files = True setting, a relative
    [paths] pattern was still being made absolute. This is now fixed,
    closing issue 1519_.

  • Fix: if Python doesn't provide tomllib, then TOML configuration files can
    only be read if coverage.py is installed with the [toml] extra.
    Coverage.py will raise an error if TOML support is not installed when it sees
    your settings are in a .toml file. But it didn't understand that
    [tools.coverage] was a valid section header, so the error wasn't reported
    if you used that header, and settings were silently ignored. This is now
    fixed, closing issue 1516_.

  • Fix: adjusted how decorators are traced on PyPy 7.3.10, fixing issue 1515_.

  • Fix: the coverage lcov report did not properly implement the
    --fail-under=MIN option. This has been fixed.

  • Refactor: added many type annotations, including a number of refactorings.
    This should not affect outward behavior, but they were a bit invasive in some
    places, so keep your eyes peeled for oddities.

  • Refactor: removed the vestigial and long untested support for Jython and
    IronPython.

.. _issue 1515:https://github.com/nedbat/coveragepy/issues/15155
.. _issue 1516https://github.com/nedbat/coveragepy/issues/151616
.. _issue 151https://github.com/nedbat/coveragepy/issues/1519519

.. _changes_7-0-1:

v7.0.1

Compare Source

  • When checking if a file mapping resolved to a file that exists, we weren't
    considering files in .whl files. This is now fixed, closing issue 1511_.

  • File pattern rules were too strict, forbidding plus signs and curly braces in
    directory and file names. This is now fixed, closing issue 1513_.

  • Unusual Unicode or control characters in source files could prevent
    reporting. This is now fixed, closing issue 1512_.

  • The PyPy wheel now installs on PyPy 3.7, 3.8, and 3.9, closing issue 1510_.

.. _issue 1510:https://github.com/nedbat/coveragepy/issues/15100
.. _issue 1511https://github.com/nedbat/coveragepy/issues/151111
.. _issue 151https://github.com/nedbat/coveragepy/issues/1512512
.. _issue 15https://github.com/nedbat/coveragepy/issues/15131513

.. _changes_7-0-0:

v7.0.0

Compare Source

Nothing new beyond 7.0.0b1.

.. _changes_7-0-0b1:

v6.5.0

Compare Source

  • The JSON report now includes details of which branches were taken, and which
    are missing for each file. Thanks, Christoph Blessing <pull 1438_>. Closes
    issue 1425
    .

  • Starting with coverage.py 6.2, class statements were marked as a branch.
    This wasn't right, and has been reverted, fixing issue 1449_. Note this
    will very slightly reduce your coverage total if you are measuring branch
    coverage.

  • Packaging is now compliant with PEP 517, closing issue 1395.

  • A new debug option --debug=pathmap shows details of the remapping of
    paths that happens during combine due to the [paths] setting.

  • Fix an internal problem with caching of invalid Python parsing. Found by
    OSS-Fuzz, fixing their bug 50381_.

.. _bug 50381: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50381
.. _PEP 517: https://peps.python.org/pep-0517/
.. _issue 139https://github.com/nedbat/coveragepy/issues/1395395
.. _issue 14https://github.com/nedbat/coveragepy/issues/14251425
.. _issue 1https://github.com/nedbat/coveragepy/issues/1449/1449
.. _pull https://github.com/nedbat/coveragepy/pull/1438l/1438

.. _changes_6-4-4:

v6.4.4

Compare Source

  • Wheels are now provided for Python 3.11.

.. _changes_6-4-3:

v6.4.3

Compare Source

  • Fix a failure when combining data files if the file names contained glob-like
    patterns. Thanks, Michael Krebs and Benjamin Schubert <pull 1405_>_.

  • Fix a messaging failure when combining Windows data files on a different
    drive than the current directory, closing issue 1428. Thanks, Lorenzo Micò <pull 1430_>.

  • Fix path calculations when running in the root directory, as you might do in
    a Docker container. Thanks Arthur Rio <pull 1403_>_.

  • Filtering in the HTML report wouldn't work when reloading the index page.
    This is now fixed. Thanks, Marc Legendre <pull 1413_>_.

  • Fix a problem with Cython code measurement, closing issue 972. Thanks,
    Matus Valo <pull 1347_>
    .

.. _issue 972:https://github.com/nedbat/coveragepy/issues/9722
.. _issue 1428https://github.com/nedbat/coveragepy/issues/142828
.. _pull 134https://github.com/nedbat/coveragepy/pull/1347347
.. _pull 14https://github.com/nedbat/coveragepy/issues/14031403
.. _pull 1https://github.com/nedbat/coveragepy/issues/1405/1405
.. _pull https://github.com/nedbat/coveragepy/issues/1413s/1413
.. _pullhttps://github.com/nedbat/coveragepy/pull/1430ll/1430

.. _changes_6-4-2:

v6.4.2

Compare Source

  • Updated for a small change in Python 3.11.0 beta 4: modules now start with a
    line with line number 0, which is ignored. This line cannot be executed, so
    coverage totals were thrown off. This line is now ignored by coverage.py,
    but this also means that truly empty modules (like __init__.py) have no
    lines in them, rather than one phantom line. Fixes issue 1419_.

  • Internal debugging data added to sys.modules is now an actual module, to
    avoid confusing code that examines everything in sys.modules. Thanks,
    Yilei Yang <pull 1399_>_.

.. _issue 1419:https://github.com/nedbat/coveragepy/issues/14199
.. _pull 1399https://github.com/nedbat/coveragepy/pull/139999

.. _changes_6-4-1:

v6.4.1

Compare Source

  • Greatly improved performance on PyPy, and other environments that need the
    pure Python trace function. Thanks, Carl Friedrich Bolz-Tereick (pull 1381_ and pull 1388). Slightly improved performance when using the C
    trace function, as most environments do. Closes issue 1339
    .

  • The conditions for using tomllib from the standard library have been made
    more precise, so that 3.11 alphas will continue to work. Closes issue 1390_.

.. _issue 1339:https://github.com/nedbat/coveragepy/issues/13399
.. _pull 1381https://github.com/nedbat/coveragepy/pull/138181
.. _pull 138https://github.com/nedbat/coveragepy/pull/1388388
.. _issue 13https://github.com/nedbat/coveragepy/issues/13901390

.. _changes_64:

tox-dev/tox

v4.2.6

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.2.5...4.2.6

v4.2.5

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.2.4...4.2.5

v4.2.4

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.2.3...4.2.4

v4.2.3

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.2.2...4.2.3

v4.2.2

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.2.1...4.2.2

v4.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.2.0...4.2.1

v4.2.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.1.3...4.2.0

v4.1.3

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.1.2...4.1.3

v4.1.2

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.1.1...4.1.2

v4.1.1

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.1.0...4.1.1

v4.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.0.19...4.1.0

v4.0.19

Compare Source

v4.0.18

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.17...4.0.18

v4.0.17

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.0.16...4.0.17

v4.0.16

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.15...4.0.16

v4.0.15

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.14...4.0.15

v4.0.14

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.13...4.0.14

v4.0.13

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.12...4.0.13

v4.0.12

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.0.11...4.0.12

v4.0.11

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.10...4.0.11

v4.0.10

Compare Source

v4.0.9

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.8...4.0.9

v4.0.8

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.7...4.0.8

v4.0.7

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.6...4.0.7

v4.0.6

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.0.5...4.0.6

v4.0.5

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.4...4.0.5

v4.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.0.3...4.0.4

v4.0.3

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.2...4.0.3

v4.0.2

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.1...4.0.2

v4.0.1

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.0...4.0.1

v4.0.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.0.0rc4...4.0.0

v3.28.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@3.27.1...3.28.0

v3.27.1

Compare Source

What's Changed
New Contributors

Full Changelog: tox-dev/tox@3.27.0...3.27.1

v3.27.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@3.26.0...3.27.0

v3.26.0

Compare Source

What's Changed
New Contributors

Full Changelog: tox-dev/tox@3.25.1...3.26.0

v3.25.1

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - "after 7am and before 4pm on monday" in timezone Europe/London, 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 added the dependencies Pull requests that update a dependency file label Dec 12, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 8 times, most recently from 8176a52 to e0bcd74 Compare December 20, 2022 03:19
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 1d02fab to 2167dfe Compare December 20, 2022 23:41
@renovate renovate bot changed the title Update dependency tox to v4 Update all dependencies (major) Dec 20, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from 37e3dba to 285747f Compare December 28, 2022 19:04
@renovate renovate bot force-pushed the renovate/major-all branch 9 times, most recently from 1878e54 to 70b65fa Compare January 6, 2023 17:06
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 593403d to e39815f Compare January 8, 2023 18:09
@rjgildea rjgildea merged commit 495e52b into master Jan 9, 2023
@rjgildea rjgildea deleted the renovate/major-all branch January 9, 2023 11:52
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant