Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

chore(dev deps): update dev dependencies #51

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 3, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
coverage ==5.4 -> ==5.5 age adoption passing confidence
isort (source, changelog) ==5.7.0 -> ==5.8.0 age adoption passing confidence
mypy (source, changelog) ==0.800 -> ==0.902 age adoption passing confidence
pydocstyle (changelog) ==6.0.0 -> ==6.1.1 age adoption passing confidence
pylint (changelog) ==2.6.0 -> ==2.8.3 age adoption passing confidence
pytest (source, changelog) ==6.2.2 -> ==6.2.4 age adoption passing confidence
pytest-asyncio ==0.14.0 -> ==0.15.1 age adoption passing confidence
pytest-cov ==2.11.1 -> ==2.12.1 age adoption passing confidence
python-semantic-release ==7.13.1 -> ==7.16.1 age adoption passing confidence
setuptools ==56.0.0 -> ==56.2.0 age adoption passing confidence
sphinx (source) ==3.4.3 -> ==3.5.4 age adoption passing confidence
tox (source) ==3.21.2 -> ==3.23.1 age adoption passing confidence

Release Notes

nedbat/coveragepy

v5.5

Compare Source

  • coverage combine has a new option, --keep to keep the original data
    files after combining them. The default is still to delete the files after
    they have been combined. This was requested in issue 1108_ and implemented
    in pull request 1110_. Thanks, Éric Larivière.

  • When reporting missing branches in coverage report, branches aren't
    reported that jump to missing lines. This adds to the long-standing behavior
    of not reporting branches from missing lines. Now branches are only reported
    if both the source and destination lines are executed. Closes both issue 1065_ and issue 955_.

  • Minor improvements to the HTML report:

    • The state of the line visibility selector buttons is saved in local storage
      so you don't have to fiddle with them so often, fixing issue 1123_.

    • It has a little more room for line numbers so that 4-digit numbers work
      well, fixing issue 1124_.

  • Improved the error message when combining line and branch data, so that users
    will be more likely to understand what's happening, closing issue 803_.

.. _issue 803: nedbat/coveragepy#803
.. _issue 955: nedbat/coveragepy#955
.. _issue 1065: nedbat/coveragepy#1065
.. _issue 1108: nedbat/coveragepy#1108
.. _pull request 1110: nedbat/coveragepy#1110
.. _issue 1123: nedbat/coveragepy#1123
.. _issue 1124: nedbat/coveragepy#1124

.. _changes_54:

pycqa/isort

v5.8.0

Compare Source

  • Fixed #​1631: as import comments can in some cases be duplicated.
    • Fixed #​1667: extra newline added with float-to-top, after skip, in some cases.
    • Fixed #​1594: incorrect placement of noqa comments with multiple from imports.
    • Fixed #​1566: in some cases different length limits for dos based line endings.
    • Implemented #​1648: Export MyPY type hints.
    • Implemented #​1641: Identified import statements now return runnable code.
    • Implemented #​1661: Added "wemake" profile.
    • Implemented #​1669: Parallel (-j) now defaults to number of CPU cores if no value is provided.
    • Implemented #​1668: Added a safeguard against accidental usage against /.
    • Implemented #​1638 / #​1644: Provide a flag --overwrite-in-place to ensure same file handle is used after sorting.
    • Implemented #​1684: Added support for extending skips with --extend-skip and --extend-skip-glob.
    • Implemented #​1688: Auto identification and skipping of some invalid import statements.
    • Implemented #​1645: Ability to reverse the import sorting order.
    • Implemented #​1504: Added ability to push star imports to the top to avoid overriding explicitly defined imports.
    • Documented #​1685: Skip doesn't support plain directory names, but skip_glob does.
python/mypy

v0.902

Compare Source

v0.901

Compare Source

v0.900

Compare Source

v0.812

Compare Source

PyCQA/pydocstyle

v6.1.1

Compare Source

v6.1.0

Compare Source

PyCQA/pylint

v2.8.3

Compare Source

===========================
Release date: 2021-05-31

  • Astroid has been pinned to 2.5.6 for the 2.8 branch see #​4527.

v2.8.2

Compare Source

===========================
Release date: 2021-04-26

  • Keep __pkginfo__.numversion a tuple to avoid breaking pylint-django.

    Closes #​4405

  • scm_setuptools has been added to the packaging.

  • Pylint's tags are now the standard form vX.Y.Z and not pylint-X.Y.Z anymore.

  • New warning message deprecated-class. This message is emitted if import or call deprecated class of the
    standard library (like collections.Iterable that will be removed in Python 3.10).

Closes #​4388

v2.8.1

Compare Source

===========================
Release date: 2021-04-25

  • Add numversion back (temporarily) in __pkginfo__ because it broke Pylama and revert the unnecessary
    pylint.version breaking change.

    Closes #​4399

v2.8.0

Compare Source

===========================
Release date: 2021-04-24

  • New refactoring message consider-using-with. This message is emitted if resource-allocating functions or methods of the
    standard library (like open() or threading.Lock.acquire()) that can be used as a context manager are called without
    a with block.

    Closes #​3413

  • Resolve false positives on unused variables in decorator functions

    Closes #​4252

  • Add new extension ConfusingConsecutiveElifChecker. This optional checker emits a refactoring message (R5601 confusing-consecutive-elif)
    if if/elif statements with different indentation levels follow directly one after the other.

  • New option --output=<file> to output result to a file rather than printing to stdout.

    Closes #​1070

  • Use a prescriptive message for unidiomatic-typecheck

    Closes #​3891

  • Apply const-naming-style to module constants annotated with
    typing.Final

  • The packaging is now done via setuptools exclusively. doc, tests, man, elisp and Changelog are
    not packaged anymore - reducing the size of the package by 75%.

  • Debian packaging is now (officially) done in https://salsa.debian.org/python-team/packages/pylint.

  • The 'doc' extra-require has been removed.

  • __pkginfo__ now only contain __version__ (also accessible with pylint.__version__), other meta-information are still
    accessible with from importlib import metadata;metadata.metadata('pylint').

  • COPYING has been renamed to LICENSE for standardization.

  • Fix false-positive used-before-assignment in function returns.

    Closes #​4301

  • Updated astroid to 2.5.3

    Closes #​2822, #​4206, #​4284

  • Add consider-using-min-max-builtin check for if statement which could be replaced by Python builtin min or max

    Closes #​3406

  • Don't auto-enable postponed evaluation of type annotations with Python 3.10

  • Update astroid to 2.5.4

  • Add new extension TypingChecker. This optional checker can detect the use of deprecated typing aliases
    and can suggest the use of the alternative union syntax where possible.
    (For example, 'typing.Dict' can be replaced by 'dict', and 'typing.Unions' by '|', etc.)
    Make sure to check the config options if you plan on using it!

  • Reactivates old counts in report mode.

    Closes #​3819

  • During detection of inconsistent-return-statements consider that assert False is a return node.

    Closes #​4019

  • Run will not fail if score exactly equals config.fail_under.

  • Functions that never returns may declare NoReturn as type hints, so that
    inconsistent-return-statements is not emitted.

    Closes #​4122, #​4188

  • Improved protected access checks to allow access inside class methods

    Closes #​1159

  • Fix issue with PEP 585 syntax and the use of collections.abc.Set

  • Fix issue that caused class variables annotated with typing.ClassVar to be
    identified as class constants. Now, class variables annotated with
    typing.Final are identified as such.

    Closes #​4277

  • Continuous integration with read the doc has been added.

    Closes #​3850

  • Don't show DuplicateBasesError for attribute access

  • Fix crash when checking setup.cfg for pylint config when there are non-ascii characters in there

    Closes #​4328

  • Allow code flanked in backticks to be skipped by spellchecker

    Closes #​4319

  • Allow Python tool directives (for black, flake8, zimports, isort, mypy, bandit, pycharm) at beginning of comments to be skipped by spellchecker

    Closes #​4320

  • Fix issue that caused emacs pylint to fail when used with tramp

  • Improve check for invalid PEP 585 syntax inside functions
    if postponed evaluation of type annotations is enabled

  • Improve check for invalid PEP 585 syntax as default function arguments

v2.7.4

Compare Source

===========================
Release date: 2021-03-30

  • Fix a problem with disabled msgid not being ignored

    Closes #​4265

  • Fix issue with annotated class constants

    Closes #​4264

v2.7.3

Compare Source

===========================
Release date: 2021-03-29

  • Introduce logic for checking deprecated attributes in DeprecationMixin.

  • Reduce usage of blacklist/whitelist terminology. Notably, extension-pkg-allow-list is an
    alternative to extension-pkg-whitelist and the message blacklisted-name is now emitted as
    disallowed-name. The previous names are accepted to maintain backward compatibility.

  • Move deprecated checker to DeprecatedMixin

    Closes #​4086

  • Bump astroid version to 2.5.2

  • Fix false positive for method-hidden when using private attribute and method

    Closes #​3936

  • use-symbolic-message-instead now also works on legacy messages like C0111 (missing-docstring).

  • Remove unwanted print to stdout from _emit_no_member

  • Introduce a command-line option to specify pyreverse output directory

    Closes #​4159

  • Fix issue with Enums and class-attribute-naming-style=snake_case

    Closes #​4149

  • Add allowed-redefined-builtins option for fine tuning redefined-builtin check.

    Close #​3263

  • Fix issue when executing with python -m pylint

    Closes #​4161

  • Exempt typing.TypedDict from too-few-public-methods check.

    Closes #​4180

  • Fix false-positive no-member for typed annotations without default value.

    Closes #​3167

  • Add --class-const-naming-style for Enum constants and class variables annotated
    with typing.ClassVar

    Closes #​4181

  • Fix astroid.Inference error for undefined-variables with ``len()```

    Closes #​4215

  • Fix column index on FIXME warning messages

    Closes #​4218

  • Improve handling of assignment expressions, better edge case handling

    Closes #​3763, #​4238

  • Improve check if class is subscriptable PEP585

  • Fix documentation and filename handling of --import-graph

  • Fix false-positive for unused-import on class keyword arguments

    Closes #​3202

  • Fix regression with plugins on PYTHONPATH if latter is cwd

    Closes #​4252

v2.7.2

Compare Source

===========================
Release date: 2021-02-28

  • Fix False Positive on Enum.__members__.items(), Enum.__members__.values, and Enum.__members__.keys
    Closes #​4123

  • Properly strip dangerous sys.path entries (not just the first one)

    Closes #​3636

  • Workflow and packaging improvements

v2.7.1

Compare Source

===========================
Release date: 2021-02-23

  • Expose UnittestLinter in pylint.testutils

  • Don't check directories starting with '.' when using register_plugins

    Closes #​4119

v2.7.0

Compare Source

===========================
Release date: 2021-02-21

  • Introduce DeprecationMixin for reusable deprecation checks.

    Closes #​4049

  • Fix false positive for builtin-not-iterating when map receives iterable

    Closes #​4078

  • Python 3.6+ is now required.

  • Fix false positive for builtin-not-iterating when zip receives iterable

  • Add nan-comparison check for NaN comparisons

  • Bug fix for empty-comment message line number.

    Closes #​4009

  • Only emit bad-reversed-sequence on dictionaries if below py3.8

    Closes #​3940

  • Handle class decorators applied to function.

    Closes #​3882

  • Add check for empty comments

  • Fix minor documentation issue in contribute.rst

  • Enums are now required to be named in UPPER_CASE by invalid-name.

    Close #​3834

  • Add missing checks for deprecated functions.

  • Postponed evaluation of annotations are now recognized by default if python version is above 3.10

    Closes #​3992

  • Fix column metadata for anomalous backslash lints

  • Drop support for Python 3.5

  • Add support for pep585 with postponed evaluation

    Closes #​3320

  • Check alternative union syntax - PEP 604

    Closes #​4065

  • Fix multiple false positives with assignment expressions

    Closes #​3347, #​3953, #​3865, #​3275

  • Fix TypedDict inherit-non-class false-positive Python 3.9+

    Closes #​1927

  • Fix issue with nested PEP 585 syntax

  • Fix issue with nested PEP 604 syntax

  • Fix a crash in undefined-variable caused by chained attributes in metaclass

    Close #​3742

  • Fix false positive for not-async-context-manager when contextlib.asynccontextmanager is used

    Close #​3862

  • Fix linter multiprocessing pool shutdown (triggered warnings when runned in parallels with other pytest plugins)

    Closes #​3779

  • Fix a false-positive emission of no-self-use and unused-argument for methods
    of generic structural types (Protocol[T])

    Closes #​3885

  • Fix bug that lead to duplicate messages when using --jobs 2 or more.

    Close #​3584

  • Adds option check-protected-access-in-special-methods in the ClassChecker to activate/deactivate
    protected-access message emission for single underscore prefixed attribute in special methods.

    Close #​3120

  • Fix vulnerable regular expressions in pyreverse

    Close #​3811

  • inconsistent-return-statements message is now emitted if one of try/except statement
    is not returning explicitly while the other do.

    Closes #​3468

  • Fix useless-super-delegation false positive when default keyword argument is a dictionnary.

    Close #​3773

  • Fix a crash when a specified config file does not exist

  • Add support to ignored-argument-names in DocstringParameterChecker and adds useless-param-doc and useless-type-doc messages.

    Close #​3800

  • Enforce docparams consistently when docstring is not present

    Close #​2738

  • Fix duplicate-code false positive when lines only contain whitespace and non-alphanumeric characters (e.g. parentheses, bracket, comma, etc.)

  • Improve lint message for singleton-comparison with bools

  • Fix spell-checker crash on indented docstring lines that look like # comments

    Close #​3786

  • Fix AttributeError in checkers/refactoring.py

  • Improve sphinx directives spelling filter

  • Fix a bug with postponed evaluation when using aliases for annotations.

    Close #​3798

  • Fix minor documentation issues

  • Improve the performance of the line length check.

  • Removed incorrect deprecation of inspect.getfullargspec

  • Fix signature-differs false positive for functions with variadics

    Close #​3737

  • Fix a crash in consider-using-enumerate when encountering range() without arguments

    Close #​3735

  • len-as-conditions is now triggered only for classes that are inheriting directly from list, dict, or set and not implementing the __bool__ function, or from generators like range or list/dict/set comprehension. This should reduce the false positives for other classes, like pandas's DataFrame or numpy's Array.

    Close #​1879

  • Fixes duplicate-errors not working with -j2+

    Close #​3314

  • generated-members now matches the qualified name of members

    Close #​2498

  • Add check for bool function to len-as-condition

  • Add simplifiable-condition check for extraneous constants in conditionals using and/or.

  • Add condition-evals-to-constant check for conditionals using and/or that evaluate to a constant.

    Close #​3407

  • Changed setup.py to work with distlib

    Close #​3555

  • New check: consider-using-generator

    This check warns when a comprehension is used inside an any or all function,
    since it is unnecessary and should be replaced by a generator instead.
    Using a generator would be less code and way faster.

    Close #​3165

  • Add Github Actions to replace Travis and AppVeyor in the future

v2.6.2

  • Astroid version has been set as < 2.5

    Close #​4093

v2.6.1

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

  • Astroid version has been set as < 2.5

    Close #​4093

pytest-dev/pytest

v6.2.4

Compare Source

pytest 6.2.4 (2021-05-04)

Bug Fixes

  • #​8539: Fixed assertion rewriting on Python 3.10.

v6.2.3

Compare Source

pytest 6.2.3 (2021-04-03)

Bug Fixes

  • #​8414: pytest used to create directories under /tmp with world-readable
    permissions. This means that any user in the system was able to read
    information written by tests in temporary directories (such as those created by
    the tmp_path/tmpdir fixture). Now the directories are created with
    private permissions.

    pytest used silenty use a pre-existing /tmp/pytest-of-<username> directory,
    even if owned by another user. This means another user could pre-create such a
    directory and gain control of another user's temporary directory. Now such a
    condition results in an error.

pytest-dev/pytest-asyncio

v0.15.1

Compare Source

v0.15.0

Compare Source

pytest-dev/pytest-cov

v2.12.1

Compare Source

  • Changed the toml requirement to be always be directly required (instead of being required through a coverage extra).
    This fixes issues with pip-compile (pip-tools#&#8203;1300 <https://github.com/jazzband/pip-tools/issues/1300>).
    Contributed by Sorin Sbarnea in #&#8203;472 <https://github.com/pytest-dev/pytest-cov/pull/472>
    .
  • Documented show_contexts.
    Contributed by Brian Rutledge in #&#8203;473 <https://github.com/pytest-dev/pytest-cov/pull/473>_.

v2.12.0

Compare Source

  • Added coverage's toml extra to install requirements in setup.py.
    Contributed by Christian Riedel in #&#8203;410 <https://github.com/pytest-dev/pytest-cov/pull/410>_.
  • Fixed pytest_cov.__version__ to have the right value (string with version instead of a string
    including __version__ =).
  • Fixed license classifier in setup.py.
    Contributed by Chris Sreesangkom in #&#8203;467 <https://github.com/pytest-dev/pytest-cov/pull/467>_.
  • Fixed commits since badge.
    Contributed by Terence Honles in #&#8203;470 <https://github.com/pytest-dev/pytest-cov/pull/470>_.
relekang/python-semantic-release

v7.16.1

Compare Source

Fix
  • Tomlkit should stay at 0.7.0 (769a5f3)

v7.16.0

Compare Source

Feature

v7.15.6

Compare Source

Fix

v7.15.5

Compare Source

Fix

v7.15.4

Compare Source

Fix
  • Change log level of failed toml loading (24bb079)

v7.15.3

Compare Source

Fix
  • Add venv to path in github action (583c5a1)

v7.15.1

Compare Source

Fix
  • Add support for setting build_command to "false" (520cf1e)
  • Upgrade python-gitlab range (abfacc4)
Documentation
  • Add common options to documentation (20d79a5)

v7.15.0

Compare Source

Feature
Documentation
  • Add documentation for releasing on a Jenkins instance (#​324) (77ad988)

v7.14.0

Compare Source

Feature
Documentation

v7.13.2

Compare Source

Fix
Documentation
pypa/setuptools

v56.2.0

Compare Source

Changes
^^^^^^^

  • #​2640: Fixed handling of multiline license strings. - by :user:cdce8p
  • #​2641: Setuptools will now always try to use the latest supported
    metadata version for PKG-INFO. - by :user:cdce8p

v56.1.0

Compare Source

Changes
^^^^^^^

  • #​2653: Incorporated assorted changes from pypa/distutils.
  • #​2657: Adopted docs from distutils.
  • #​2663: Added Visual Studio Express 2017 support -- by :user:dofuuz

Misc
^^^^

  • #​2644: Fixed DeprecationWarning due to threading.Thread.setDaemon in tests -- by :user:tirkarthi
  • #​2654: Made the changelog generator compatible
    with Towncrier >= 19.9 -- :user:webknjaz
  • #​2664: Relax the deprecation message in the distutils hack.
sphinx-doc/sphinx

v3.5.4

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

Dependencies

Bugs fixed

  • #​9078: autodoc: Async staticmethods and classmethods are considered as non
    async coroutine-functions with Python3.10

  • #​8870, #​9001, #​9051: html theme: The style are not applied with docutils-0.17

    • toctree captions
    • The content of sidebar directive
    • figures

v3.5.3

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

Features added

  • #​8959: using UNIX path separator in image directive confuses Sphinx on Windows

v3.5.2

Compare Source

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

Bugs fixed

  • #​8943: i18n: Crashed by broken translation messages in ES, EL and HR
  • #​8936: LaTeX: A custom LaTeX builder fails with unknown node error
  • #​8952: Exceptions raised in a Directive cause parallel builds to hang

v3.5.1

Compare Source

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

Bugs fixed

  • #​8883: autodoc: AttributeError is raised on assigning annotations on
    read-only class
  • #​8884: html: minified js stemmers not included in the distributed package
  • #​8885: html: AttributeError is raised if CSS/JS files are installed via
    :confval:html_context
  • #​8880: viewcode: ExtensionError is raised on incremental build after
    unparsable python module found

v3.5.0

Compare Source

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

Dependencies

  • LaTeX: multicol (it is anyhow a required part of the official latex2e
    base distribution)

Incompatible changes

  • Update Underscore.js to 1.12.0
  • #​6550: html: The config variable html_add_permalinks is replaced by
    :confval:html_permalinks and :confval:html_permalinks_icon

Deprecated

  • pending_xref node for viewcode extension
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.anchors_ignore
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.auth
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.broken
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.good
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.redirected
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.rqueue
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.to_ignore
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.workers
  • sphinx.builders.linkcheck.CheckExternalLinksBuilder.wqueue
  • sphinx.builders.linkcheck.node_line_or_0()
  • sphinx.ext.autodoc.AttributeDocumenter.isinstanceattribute()
  • sphinx.ext.autodoc.directive.DocumenterBridge.reporter
  • sphinx.ext.autodoc.importer.get_module_members()
  • sphinx.ext.autosummary.generate._simple_info()
  • sphinx.ext.autosummary.generate._simple_warn()
  • sphinx.writers.html.HTMLTranslator.permalink_text
  • sphinx.writers.html5.HTML5Translator.permalink_text

Features added

  • #​8022: autodoc: autodata and autoattribute directives does not show right-hand
    value of the variable if docstring contains :meta hide-value: in
    info-field-list
  • #​8514: autodoc: Default values of overloaded functions are taken from actual
    implementation if they're ellipsis
  • #​8775: autodoc: Support type union operator (PEP-604) in Python 3.10 or above
  • #​8297: autodoc: Allow to extend :confval:autodoc_default_options via
    directive options
  • #​759: autodoc: Add a new configuration :confval:autodoc_preserve_defaults as
    an experimental feature. It preserves the default argument values of
    functions in source code and keep them not evaluated for readability.
  • #​8619: html: kbd role generates customizable HTML tags for compound keys
  • #​8634: html: Allow to change the order of JS/CSS via priority parameter
    for :meth:Sphinx.add_js_file() and :meth:Sphinx.add_css_file()
  • #​6241: html: Allow to add JS/CSS files to the specific page when an extension
    calls app.add_js_file() or app.add_css_file() on
    :event:html-page-context event
  • #​6550: html: Allow to use HTML permalink texts via
    :confval:html_permalinks_icon
  • #​1638: html: Add permalink icons to glossary terms
  • #​8868: html search: performance issue with massive lists
  • #​8867: html search: Update JavaScript stemmer code to the latest version of
    Snowball (v2.1.0)
  • #​8852: i18n: Allow to translate heading syntax in MyST-Parser
  • #​8649: imgconverter: Skip availability check if builder supports the image
    type
  • #​8573: napoleon: Allow to change the style of custom sections using
    :confval:napoleon_custom_styles
  • #​8004: napoleon: Type definitions in Google style docstrings are rendered as
    references when :confval:napoleon_preprocess_types enabled
  • #​6241: mathjax: Include mathjax.js only on the document using equations
  • #​8775: py domain: Support type union operator (PEP-604)
  • #​8651: std domain: cross-reference for a rubric having inline item is broken
  • #​7642: std domain: Optimize case-insensitive match of term
  • #​8681: viewcode: Support incremental build
  • #​8132: Add :confval:project_copyright as an alias of :confval:copyright
  • #​207: Now :confval:highlight_language supports multiple languages
  • #​2030: :rst:dir:code-block and :rst:dir:literalinclude supports automatic
    dedent via no-argument :dedent: option
  • C++, also hyperlink operator overloads in expressions and alias declarations.
  • #​8247: Allow production lists to refer to tokens from other production groups
  • #​8813: Show what extension (or module) caused it on errors on event handler
  • #​8213: C++: add maxdepth option to :rst:dir:cpp:alias to insert nested
    declarations.
  • C, add noroot option to :rst:dir:c:alias to render only nested
    declarations.
  • C++, add noroot option to :rst:dir:cpp:alias to render only nested
    declarations.

Bugs fixed

  • #​8727: apidoc: namespace module file is not generated if no submodules there
  • #​741: autodoc: inherited-members doesn't work for instance attributes on super
    class
  • #​8592: autodoc: :meta public: does not effect to variables
  • #​8594: autodoc: empty all attribute is ignored
  • #​8315: autodoc: Failed to resolve struct.Struct type annotation
  • #​8652: autodoc: All variable comments in the module are ignored if the module
    contains invalid type comments
  • #​8693: autodoc: Default values for overloaded functions are rendered as string
  • #​8134: autodoc: crashes when mocked decorator takes arguments
  • #​8800: autodoc: Uninitialized attributes in superclass are recognized as
    undocumented
  • #​8655: autodoc: Failed to generate document if target module contains an
    object that raises an exception on hasattr()
  • #​8306: autosummary: mocked modules are documented as empty page when using
    :recursive: option
  • #​8232: graphviz: Image node is not rendered if graph file is in subdirectory
  • #​8618: html: kbd role produces incorrect HTML when compound-key separators (-,
    • or ^) are used as keystrokes
  • #​8629: html: A type warning for html_use_opensearch is shown twice
  • #​8714: html: kbd role with "Caps Lock" rendered incorrectly
  • #​8123: html search: fix searching for terms containing + (Requires a custom
    search language that does not split on +)
  • #​8665: html theme: Could not override globaltoc_maxdepth in theme.conf
  • #​8446: html: consecutive spaces are displayed as single space
  • #​8745: i18n: crashes with KeyError when translation message adds a new auto
    footnote reference
  • #​4304: linkcheck: Fix race condition that could lead to checking the
    availability of the same URL twice
  • #​8791: linkcheck: The docname for each hyperlink is not displayed
  • #​7118: sphinx-quickstart: questionare got Mojibake if libreadline unavailable
  • #​8094: texinfo: image files on the different directory with document are not
    copied
  • #​8782: todo: Cross references in todolist get broken
  • #​8720: viewcode: module pages are generated for epub on incremental build
  • #​8704: viewcode: anchors are generated in incremental build after singlehtml
  • #​8756: viewcode: highlighted code is generated even if not referenced
  • #​8671: :confval:highlight_options is not working
  • #​8341: C, fix intersphinx lookup types for names in declarations.
  • C, C++: in general fix intersphinx and role lookup types.
  • #​8683: :confval:html_last_updated_fmt does not support UTC offset (%z)
  • #​8683: :confval:html_last_updated_fmt generates wrong time zone for %Z
  • #​1112: download role creates duplicated copies when relative path is
    specified
  • #​2616 (fifth item): LaTeX: footnotes from captions are not clickable,
    and for manually numbered footnotes only first one with same number is
    an hyperlink
  • #​7576: LaTeX with French babel and memoir crash: "Illegal parameter number
    in definition of \FNH@prefntext"
  • #​8055: LaTeX (docs): A potential display bug with the LaTeX generation step
    in Sphinx (how to generate one-column index)
  • #​8072: LaTeX: Directive :rst:dir:hlist not implemented in LaTeX
  • #​8214: LaTeX: The :rst:role:index role and the glossary generate duplicate
    entries in the LaTeX index (if both used for same term)
  • #​8735: LaTeX: wrong internal links in pdf to captioned code-blocks when
    :confval:numfig is not True
  • #​8442: LaTeX: some indexed terms are ignored when using xelatex engine
    (or pdflatex and :confval:latex_use_xindy set to True) with memoir class
  • #​8750: LaTeX: URLs as footnotes fail to show in PDF if originating from
    inside function type signatures
  • #​8780: LaTeX: long words in narrow columns may not be hyphenated
  • #​8788: LaTeX: \titleformat last argument in sphinx.sty should be
    bracketed, not braced (and is anyhow not needed)
  • #​8849: LaTex: code-block printed out of margin (see the opt-in LaTeX syntax
    boolean :ref:verbatimforcewraps <latexsphinxsetupforcewraps> for use via
    the :ref:'sphinxsetup' <latexsphinxsetup> key of latex_elements)
  • #​8183: LaTeX: Remove substitution_reference nodes from doctree only on LaTeX
    builds
  • #​8865: LaTeX: Restructure the index nodes inside title nodes only on LaTeX
    builds
  • #​8796: LaTeX: potentially critical low level TeX coding mistake has gone
    unnoticed

Configuration

📅 Schedule: "before 12pm on Wednesday" in timezone UTC.

🚦 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/dev-dependencies branch from ab78815 to 1393573 Compare February 11, 2021 18:48
@codecov-io
Copy link

codecov-io commented Feb 11, 2021

Codecov Report

Merging #51 (8aa7b47) into master (b91bf55) will decrease coverage by 0.16%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #51      +/-   ##
==========================================
- Coverage   87.17%   87.01%   -0.17%     
==========================================
  Files           6        6              
  Lines         850      847       -3     
==========================================
- Hits          741      737       -4     
- Misses        109      110       +1     
Impacted Files Coverage Δ
stencila/pyla/interpreter.py 79.52% <0.00%> (-0.40%) ⬇️
stencila/pyla/servers.py 95.38% <0.00%> (-0.11%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b91bf55...8aa7b47. Read the comment docs.

@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 685be50 to 0a7d8b3 Compare February 19, 2021 19:21
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from baf8b01 to 7da8c28 Compare February 23, 2021 21:21
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from b135641 to ff336b0 Compare March 6, 2021 13:13
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from d364846 to 0c773a8 Compare March 26, 2021 15:09
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from 884cf86 to 5e39e76 Compare April 3, 2021 23:04
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 2c2ffa1 to 8470741 Compare April 16, 2021 02:17
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from ff4248a to e17e9fa Compare April 24, 2021 20:02
@codecov-commenter
Copy link

codecov-commenter commented Apr 24, 2021

Codecov Report

Merging #51 (b762ff9) into master (fed33b1) will decrease coverage by 0.16%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #51      +/-   ##
==========================================
- Coverage   87.17%   87.01%   -0.17%     
==========================================
  Files           6        6              
  Lines         850      847       -3     
==========================================
- Hits          741      737       -4     
- Misses        109      110       +1     
Impacted Files Coverage Δ
stencila/pyla/interpreter.py 79.52% <0.00%> (-0.40%) ⬇️
stencila/pyla/servers.py 95.38% <0.00%> (-0.11%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fed33b1...b762ff9. Read the comment docs.

@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 77d61f5 to b381a23 Compare April 26, 2021 18:55
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from e6a5d40 to b0962aa Compare May 5, 2021 17:11
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from b823010 to 40311d1 Compare May 14, 2021 13:17
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 3e75731 to f7b1feb Compare May 17, 2021 22:29
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from 19fecf7 to 813cd0b Compare June 1, 2021 18:00
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from 9f8f066 to b762ff9 Compare June 9, 2021 00:18
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from b762ff9 to b6c2191 Compare June 10, 2021 15:32
@nokome nokome closed this Aug 30, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants