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

Rename get_anchor method before removal in mkdocstrings #6

Merged
merged 2 commits into from
Aug 30, 2023

Conversation

pawamoy
Copy link
Member

@pawamoy pawamoy commented Jul 17, 2023

There wasn't any deprecation warning, my bad.

It's also possible to return a tuple instead of a set.

@oprypin
Copy link
Member

oprypin commented Jul 18, 2023

Thanks.

Hm probably a tuple will be more performant.

And it's actually really interesting - the order of the identifiers actually matters because they get iterated sequentially.
I also took care to define it as Sequence[str] in autorefs, but in mkdocstrings-python for some reason it is now tuple | set (of which set doesn't even satisfy Sequence).
https://github.com/search?q=org%3Amkdocstrings+get_anchors&type=code
https://github.com/mkdocstrings/autorefs/blob/a92e88458f19c188211e38e80d798e4c14173539/src/mkdocs_autorefs/plugin.py#L87

also also I just noticed this new commit:
mkdocstrings/mkdocstrings@ee93e80#diff-09d6e30b41d735c060b7d3f13d324a2764dcb90502715c706bdb6aaca6393081R142
sorted is also kind of an arbitrary order? Why don't we just keep it the original order as it gets provided by the list of fallback anchors?

@pawamoy
Copy link
Member Author

pawamoy commented Jul 19, 2023

Thanks for the thorough checkup. I needed to deduplicate ids in the Python handler, that's probably why I wanted it to accept sets, but I did it in a half-assed way.

About the order being important, I think it is for autorefs indeed, but not as much for inventories.

  • when falling back on additional ids to find a cross-ref, using sets gives nondeterministic results if a same object is rendered in different places (which is the case in Griffe for example, I've yet to find an elegant way to prevent/deal with that). With tuples instead, results are deterministic but still not obviously correct. We're missing the intent of the developer here, to know which one of several locations should be preferred. Add priority option autorefs#25 would come in handy here, probably.
  • regarding the change with sorted, the order of ids does not matter, however the order in which the same objects are rendered into different pages does. I used sorted simply to have entries in the objects.inv a bit more ordered (dicts keep ordering). But I realize now that registering all identifiers to the first location only is not correct either, since one id could be rendered in location A and one of its alias in location B. So once again we're missing the intent of the dev here: what's the public/preferred location? If we know that, we can postpone registering all remaining ids to this public location.

I'd like to put emphasis on the fact that these issues only arise when single objects get rendered into multiple locations. We can either fix them, or somehow recommend not doing that and document these limitations, maybe even providing ways to prevent multi-rendering.

pawamoy added a commit to mkdocstrings/python that referenced this pull request Aug 21, 2023
@pawamoy
Copy link
Member Author

pawamoy commented Aug 21, 2023

OK, I've updated mkdocstrings, mkdocstrings-python, mkdocstrings-python-legacy, and mkdocstrings-crystal (this PR) to always return tuples of strings, not sets.

Now, the priority issue for autorefs can be handled later, and I'd like to tackle the inventory issue in all handlers at once, in mkdocstrings. Rougly, in mkdocstrings extension:

if "data-role" in heading.attrib:
    self._handlers.inventory.register(
        name=rendered_anchor,
        domain=handler.domain,
        role=heading.attrib["data-role"],
        uri=f"{page}#{rendered_anchor}",
        # always overwrite for the heading that was just rendered
        overwrite=True,
    )
    for anchor in handler.get_anchors(data):
        self._handlers.inventory.register(
            name=anchor,
            domain=handler.domain,
            role=heading.attrib["data-role"],
            uri=f"{page}#{rendered_anchor}",
            # do not overwrite by default, only when user specified this location
            # to be the preferred one (through a handler option, to be determined)
            overwrite=heading.attrib.get("data-preferred-location", False)

If we want to ensure the inventory doesn't change across runs, we can sort it when writing it to disk. No need to do it earlier.

@pawamoy
Copy link
Member Author

pawamoy commented Aug 21, 2023

If you prefer, I can add back get_anchor to mkdocstrings with a deprecation warning, to give you more time 🙂

@oprypin oprypin merged commit f7ab9f9 into mkdocstrings:master Aug 30, 2023
8 checks passed
@oprypin
Copy link
Member

oprypin commented Aug 30, 2023

Thanks

lars-reimann pushed a commit to Safe-DS/Datasets that referenced this pull request Sep 1, 2023
Bumps [mkdocstrings-python](https://github.com/mkdocstrings/python) from
1.2.1 to 1.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/releases">mkdocstrings-python's
releases</a>.</em></p>
<blockquote>
<h2>1.6.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.6.0">1.6.0</a>
- 2023-08-27</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add <code>doc-signature</code> CSS class to separate signature code
blocks (<a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba">b6c648f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Add a <code>format_attribute</code> filter, preparing for cross-refs
in attribute signatures (<a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a">8f0ade2</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.2</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.2">1.5.2</a>
- 2023-08-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Regression in children template: fix condition for when members are
specified (<a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0">beeebff</a>
by Timothée Mazzucotelli). [Issue <a
href="https://redirect.github.com/mkdocstrings/python/issues/100">#100</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/100">mkdocstrings/python#100</a>)</li>
<li>Prevent whitespace removal before highlight filter (<a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8">c6f36c0</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full object path in ToC entry (<a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148">9aa758b</a>
by Timothée Mazzucotelli).</li>
<li>Sync templates with insiders, remove useless lines (<a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86">38b317f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.1</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.1">1.5.1</a>
- 2023-08-24</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1">Compare
with 1.5.0</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full path in separate signature since it would appear in
the heading already (<a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f">9e02049</a>
by Timothée Mazzucotelli).</li>
<li>Improve guessing whether an object is public (<a
href="https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d">35eb811</a>
by Timothée Mazzucotelli).</li>
<li>Always sort modules alphabetically as source order wouldn't make
sense (<a
href="https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6">70c81ce</a>
by Timothée Mazzucotelli).</li>
<li>Return anchors as a tuple, not a set, to preserve order (<a
href="https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58">736a2b5</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/crystal/pull/6">Related-to
#mkdocstrings/crystal#6</a></li>
</ul>
<h2>1.5.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.0">1.5.0</a>
- 2023-08-20</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0">Compare
with 1.4.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add support for new Griffe docstring sections: modules, classes, and
functions (methods) (<a
href="https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2">d5337af</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.4.0</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md">mkdocstrings-python's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.6.0">1.6.0</a>
- 2023-08-27</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add <code>doc-signature</code> CSS class to separate signature code
blocks (<a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba">b6c648f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Add a <code>format_attribute</code> filter, preparing for cross-refs
in attribute signatures (<a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a">8f0ade2</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.2">1.5.2</a>
- 2023-08-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Regression in children template: fix condition for when members are
specified (<a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0">beeebff</a>
by Timothée Mazzucotelli). [Issue <a
href="https://redirect.github.com/mkdocstrings/python/issues/100">#100</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/100">mkdocstrings/python#100</a>)</li>
<li>Prevent whitespace removal before highlight filter (<a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8">c6f36c0</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full object path in ToC entry (<a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148">9aa758b</a>
by Timothée Mazzucotelli).</li>
<li>Sync templates with insiders, remove useless lines (<a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86">38b317f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.1">1.5.1</a>
- 2023-08-24</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1">Compare
with 1.5.0</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full path in separate signature since it would appear in
the heading already (<a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f">9e02049</a>
by Timothée Mazzucotelli).</li>
<li>Improve guessing whether an object is public (<a
href="https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d">35eb811</a>
by Timothée Mazzucotelli).</li>
<li>Always sort modules alphabetically as source order wouldn't make
sense (<a
href="https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6">70c81ce</a>
by Timothée Mazzucotelli).</li>
<li>Return anchors as a tuple, not a set, to preserve order (<a
href="https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58">736a2b5</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/crystal/pull/6">Related-to
#mkdocstrings/crystal#6</a></li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.0">1.5.0</a>
- 2023-08-20</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0">Compare
with 1.4.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add support for new Griffe docstring sections: modules, classes, and
functions (methods) (<a
href="https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2">d5337af</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.4.0">1.4.0</a>
- 2023-08-18</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.3.0...1.4.0">Compare
with 1.3.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mkdocstrings/python/commit/cc3a489b48e0c7f1d158882bbbfc40c86a5d678f"><code>cc3a489</code></a>
chore: Prepare release 1.6.0</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba"><code>b6c648f</code></a>
feat: Add <code>doc-signature</code> CSS class to separate signature
code blocks</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a"><code>8f0ade2</code></a>
refactor: Add a <code>format_attribute</code> filter, preparing for
cross-refs in attrib...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d56ebcc2b92e3b1513300977600c197edef31989"><code>d56ebcc</code></a>
chore: Prepare release 1.5.2</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0"><code>beeebff</code></a>
fix: Regression in children template: fix condition for when members are
spec...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148"><code>9aa758b</code></a>
refactor: Never show full object path in ToC entry</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86"><code>38b317f</code></a>
refactor: Sync templates with insiders, remove useless lines</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8"><code>c6f36c0</code></a>
fix: Prevent whitespace removal before highlight filter</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d3eee03892547d2187d3084b99472de9c7337328"><code>d3eee03</code></a>
chore: Prepare release 1.5.1</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f"><code>9e02049</code></a>
refactor: Never show full path in separate signature since it would
appear in...</li>
<li>Additional commits viewable in <a
href="https://github.com/mkdocstrings/python/compare/1.2.1...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mkdocstrings-python&package-manager=pip&previous-version=1.2.1&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
lars-reimann pushed a commit to Safe-DS/Library that referenced this pull request Sep 1, 2023
Bumps [mkdocstrings-python](https://github.com/mkdocstrings/python) from
1.2.1 to 1.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/releases">mkdocstrings-python's
releases</a>.</em></p>
<blockquote>
<h2>1.6.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.6.0">1.6.0</a>
- 2023-08-27</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add <code>doc-signature</code> CSS class to separate signature code
blocks (<a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba">b6c648f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Add a <code>format_attribute</code> filter, preparing for cross-refs
in attribute signatures (<a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a">8f0ade2</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.2</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.2">1.5.2</a>
- 2023-08-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Regression in children template: fix condition for when members are
specified (<a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0">beeebff</a>
by Timothée Mazzucotelli). [Issue <a
href="https://redirect.github.com/mkdocstrings/python/issues/100">#100</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/100">mkdocstrings/python#100</a>)</li>
<li>Prevent whitespace removal before highlight filter (<a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8">c6f36c0</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full object path in ToC entry (<a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148">9aa758b</a>
by Timothée Mazzucotelli).</li>
<li>Sync templates with insiders, remove useless lines (<a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86">38b317f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.1</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.1">1.5.1</a>
- 2023-08-24</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1">Compare
with 1.5.0</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full path in separate signature since it would appear in
the heading already (<a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f">9e02049</a>
by Timothée Mazzucotelli).</li>
<li>Improve guessing whether an object is public (<a
href="https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d">35eb811</a>
by Timothée Mazzucotelli).</li>
<li>Always sort modules alphabetically as source order wouldn't make
sense (<a
href="https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6">70c81ce</a>
by Timothée Mazzucotelli).</li>
<li>Return anchors as a tuple, not a set, to preserve order (<a
href="https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58">736a2b5</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/crystal/pull/6">Related-to
#mkdocstrings/crystal#6</a></li>
</ul>
<h2>1.5.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.0">1.5.0</a>
- 2023-08-20</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0">Compare
with 1.4.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add support for new Griffe docstring sections: modules, classes, and
functions (methods) (<a
href="https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2">d5337af</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.4.0</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md">mkdocstrings-python's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.6.0">1.6.0</a>
- 2023-08-27</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add <code>doc-signature</code> CSS class to separate signature code
blocks (<a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba">b6c648f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Add a <code>format_attribute</code> filter, preparing for cross-refs
in attribute signatures (<a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a">8f0ade2</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.2">1.5.2</a>
- 2023-08-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Regression in children template: fix condition for when members are
specified (<a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0">beeebff</a>
by Timothée Mazzucotelli). [Issue <a
href="https://redirect.github.com/mkdocstrings/python/issues/100">#100</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/100">mkdocstrings/python#100</a>)</li>
<li>Prevent whitespace removal before highlight filter (<a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8">c6f36c0</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full object path in ToC entry (<a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148">9aa758b</a>
by Timothée Mazzucotelli).</li>
<li>Sync templates with insiders, remove useless lines (<a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86">38b317f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.1">1.5.1</a>
- 2023-08-24</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1">Compare
with 1.5.0</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full path in separate signature since it would appear in
the heading already (<a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f">9e02049</a>
by Timothée Mazzucotelli).</li>
<li>Improve guessing whether an object is public (<a
href="https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d">35eb811</a>
by Timothée Mazzucotelli).</li>
<li>Always sort modules alphabetically as source order wouldn't make
sense (<a
href="https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6">70c81ce</a>
by Timothée Mazzucotelli).</li>
<li>Return anchors as a tuple, not a set, to preserve order (<a
href="https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58">736a2b5</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/crystal/pull/6">Related-to
#mkdocstrings/crystal#6</a></li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.0">1.5.0</a>
- 2023-08-20</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0">Compare
with 1.4.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add support for new Griffe docstring sections: modules, classes, and
functions (methods) (<a
href="https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2">d5337af</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.4.0">1.4.0</a>
- 2023-08-18</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.3.0...1.4.0">Compare
with 1.3.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mkdocstrings/python/commit/cc3a489b48e0c7f1d158882bbbfc40c86a5d678f"><code>cc3a489</code></a>
chore: Prepare release 1.6.0</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba"><code>b6c648f</code></a>
feat: Add <code>doc-signature</code> CSS class to separate signature
code blocks</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a"><code>8f0ade2</code></a>
refactor: Add a <code>format_attribute</code> filter, preparing for
cross-refs in attrib...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d56ebcc2b92e3b1513300977600c197edef31989"><code>d56ebcc</code></a>
chore: Prepare release 1.5.2</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0"><code>beeebff</code></a>
fix: Regression in children template: fix condition for when members are
spec...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148"><code>9aa758b</code></a>
refactor: Never show full object path in ToC entry</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86"><code>38b317f</code></a>
refactor: Sync templates with insiders, remove useless lines</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8"><code>c6f36c0</code></a>
fix: Prevent whitespace removal before highlight filter</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d3eee03892547d2187d3084b99472de9c7337328"><code>d3eee03</code></a>
chore: Prepare release 1.5.1</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f"><code>9e02049</code></a>
refactor: Never show full path in separate signature since it would
appear in...</li>
<li>Additional commits viewable in <a
href="https://github.com/mkdocstrings/python/compare/1.2.1...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mkdocstrings-python&package-manager=pip&previous-version=1.2.1&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
lars-reimann pushed a commit to Safe-DS/Library-Analyzer that referenced this pull request Sep 1, 2023
Bumps [mkdocstrings-python](https://github.com/mkdocstrings/python) from
1.2.1 to 1.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/releases">mkdocstrings-python's
releases</a>.</em></p>
<blockquote>
<h2>1.6.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.6.0">1.6.0</a>
- 2023-08-27</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add <code>doc-signature</code> CSS class to separate signature code
blocks (<a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba">b6c648f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Add a <code>format_attribute</code> filter, preparing for cross-refs
in attribute signatures (<a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a">8f0ade2</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.2</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.2">1.5.2</a>
- 2023-08-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Regression in children template: fix condition for when members are
specified (<a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0">beeebff</a>
by Timothée Mazzucotelli). [Issue <a
href="https://redirect.github.com/mkdocstrings/python/issues/100">#100</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/100">mkdocstrings/python#100</a>)</li>
<li>Prevent whitespace removal before highlight filter (<a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8">c6f36c0</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full object path in ToC entry (<a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148">9aa758b</a>
by Timothée Mazzucotelli).</li>
<li>Sync templates with insiders, remove useless lines (<a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86">38b317f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.1</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.1">1.5.1</a>
- 2023-08-24</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1">Compare
with 1.5.0</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full path in separate signature since it would appear in
the heading already (<a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f">9e02049</a>
by Timothée Mazzucotelli).</li>
<li>Improve guessing whether an object is public (<a
href="https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d">35eb811</a>
by Timothée Mazzucotelli).</li>
<li>Always sort modules alphabetically as source order wouldn't make
sense (<a
href="https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6">70c81ce</a>
by Timothée Mazzucotelli).</li>
<li>Return anchors as a tuple, not a set, to preserve order (<a
href="https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58">736a2b5</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/crystal/pull/6">Related-to
#mkdocstrings/crystal#6</a></li>
</ul>
<h2>1.5.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.0">1.5.0</a>
- 2023-08-20</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0">Compare
with 1.4.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add support for new Griffe docstring sections: modules, classes, and
functions (methods) (<a
href="https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2">d5337af</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.4.0</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md">mkdocstrings-python's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.6.0">1.6.0</a>
- 2023-08-27</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.2...1.6.0">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add <code>doc-signature</code> CSS class to separate signature code
blocks (<a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba">b6c648f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Add a <code>format_attribute</code> filter, preparing for cross-refs
in attribute signatures (<a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a">8f0ade2</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.2">1.5.2</a>
- 2023-08-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Regression in children template: fix condition for when members are
specified (<a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0">beeebff</a>
by Timothée Mazzucotelli). [Issue <a
href="https://redirect.github.com/mkdocstrings/python/issues/100">#100</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/100">mkdocstrings/python#100</a>)</li>
<li>Prevent whitespace removal before highlight filter (<a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8">c6f36c0</a>
by Timothée Mazzucotelli).</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full object path in ToC entry (<a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148">9aa758b</a>
by Timothée Mazzucotelli).</li>
<li>Sync templates with insiders, remove useless lines (<a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86">38b317f</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.1">1.5.1</a>
- 2023-08-24</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.5.0...1.5.1">Compare
with 1.5.0</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Never show full path in separate signature since it would appear in
the heading already (<a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f">9e02049</a>
by Timothée Mazzucotelli).</li>
<li>Improve guessing whether an object is public (<a
href="https://github.com/mkdocstrings/python/commit/35eb81162582d794f170cd7e8c68f10ecfd8ff9d">35eb811</a>
by Timothée Mazzucotelli).</li>
<li>Always sort modules alphabetically as source order wouldn't make
sense (<a
href="https://github.com/mkdocstrings/python/commit/70c81cebb62366cbfc6124bc84d1563db176afb6">70c81ce</a>
by Timothée Mazzucotelli).</li>
<li>Return anchors as a tuple, not a set, to preserve order (<a
href="https://github.com/mkdocstrings/python/commit/736a2b5e729d25bb184db8d42f2ad01025a5bc58">736a2b5</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/crystal/pull/6">Related-to
#mkdocstrings/crystal#6</a></li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.5.0">1.5.0</a>
- 2023-08-20</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.4.0...1.5.0">Compare
with 1.4.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Add support for new Griffe docstring sections: modules, classes, and
functions (methods) (<a
href="https://github.com/mkdocstrings/python/commit/d5337afdf68fc492b34f749aa69d1da33b49f9c2">d5337af</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.4.0">1.4.0</a>
- 2023-08-18</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.3.0...1.4.0">Compare
with 1.3.0</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mkdocstrings/python/commit/cc3a489b48e0c7f1d158882bbbfc40c86a5d678f"><code>cc3a489</code></a>
chore: Prepare release 1.6.0</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/b6c648f554f2e0dce609afc2a2c1a3b27a4fbeba"><code>b6c648f</code></a>
feat: Add <code>doc-signature</code> CSS class to separate signature
code blocks</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/8f0ade249638ee2f2d446f083c70b6c30799875a"><code>8f0ade2</code></a>
refactor: Add a <code>format_attribute</code> filter, preparing for
cross-refs in attrib...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d56ebcc2b92e3b1513300977600c197edef31989"><code>d56ebcc</code></a>
chore: Prepare release 1.5.2</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/beeebffa36288d1f71d122f78ecd9064b41a75d0"><code>beeebff</code></a>
fix: Regression in children template: fix condition for when members are
spec...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/9aa758bcc42dfcf7c416d87b8f7cd407b7fdf148"><code>9aa758b</code></a>
refactor: Never show full object path in ToC entry</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/38b317f4fc74b583a4788721a5559c51a5a47d86"><code>38b317f</code></a>
refactor: Sync templates with insiders, remove useless lines</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/c6f36c0c9e5141800f8c5c988c9b67720fccccb8"><code>c6f36c0</code></a>
fix: Prevent whitespace removal before highlight filter</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d3eee03892547d2187d3084b99472de9c7337328"><code>d3eee03</code></a>
chore: Prepare release 1.5.1</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/9e0204930cf4dc973ba8eb41c471fc0132e1631f"><code>9e02049</code></a>
refactor: Never show full path in separate signature since it would
appear in...</li>
<li>Additional commits viewable in <a
href="https://github.com/mkdocstrings/python/compare/1.2.1...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mkdocstrings-python&package-manager=pip&previous-version=1.2.1&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@oprypin
Copy link
Member

oprypin commented Oct 25, 2023

This is now released

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.

2 participants