Skip to content

Bump astroid from 2.12.12 to 2.12.13 #404

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

Merged
merged 7 commits into from
Apr 29, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2022

Bumps astroid from 2.12.12 to 2.12.13.

Changelog

Sourced from astroid's changelog.

What's New in astroid 2.12.13?

Release date: 2022-11-19

  • Prevent returning an empty list for ClassDef.slots() when the mro list contains one class & it is not object.

    Refs PyCQA/pylint#5099

  • Prevent a crash when inferring calls to str.format with inferred arguments that would be invalid.

    Closes #1856

  • Infer the length argument of the random.sample function.

    Refs PyCQA/pylint#7706

  • Catch ValueError when indexing some builtin containers and sequences during inference.

    Closes #1843

Commits
  • 8bdec59 Bump astroid to 2.12.13, update changelog
  • d89beaf Move _value2member_map_ changelog back to 2.12.11 (#1874)
  • 0deb805 Fix uncaught ValueError in infer_getitem with zero-step slices (#1844)
  • 5ce40b1 Prevent a crash when inferring calls to str.format with invalid args (#1866)
  • b20dafc Move changelog entries to 2.12.13 (#1863)
  • e1aabb7 Infer the length argument of the random.sample function. (#1862)
  • 7dab003 CI improvements (#1860)
  • a48a915 Prevent returning an empty list for ClassDef.slots() (#1861)
  • 2713ebe Add PyPI deployment environment [ci] (#1855)
  • 8397711 Confirm changes before tbump commit (#1846)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 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)

Bumps [astroid](https://github.com/PyCQA/astroid) from 2.12.12 to 2.12.13.
- [Release notes](https://github.com/PyCQA/astroid/releases)
- [Changelog](https://github.com/PyCQA/astroid/blob/main/ChangeLog)
- [Commits](pylint-dev/astroid@v2.12.12...v2.12.13)

---
updated-dependencies:
- dependency-name: astroid
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 21, 2022
@dependabot dependabot bot requested a review from VadVergasov November 21, 2022 22:17
@VadVergasov VadVergasov merged commit f5d72de into develop Apr 29, 2023
@dependabot dependabot bot deleted the dependabot/pip/develop/astroid-2.12.13 branch April 29, 2023 19:11
VadVergasov added a commit that referenced this pull request Jun 30, 2024
Bumps [astroid](https://github.com/PyCQA/astroid) from 2.12.12 to
2.12.13.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/PyCQA/astroid/blob/main/ChangeLog">astroid's
changelog</a>.</em></p>
<blockquote>
<h1>What's New in astroid 2.12.13?</h1>
<p>Release date: 2022-11-19</p>
<ul>
<li>
<p>Prevent returning an empty list for <code>ClassDef.slots()</code>
when the mro list contains one class &amp; it is not
<code>object</code>.</p>
<p>Refs <a
href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/5099">PyCQA/pylint#5099</a></p>
</li>
<li>
<p>Prevent a crash when inferring calls to <code>str.format</code> with
inferred arguments
that would be invalid.</p>
<p>Closes <a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1856">#1856</a></p>
</li>
<li>
<p>Infer the <code>length</code> argument of the
<code>random.sample</code> function.</p>
<p>Refs <a
href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/7706">PyCQA/pylint#7706</a></p>
</li>
<li>
<p>Catch <code>ValueError</code> when indexing some builtin containers
and sequences during inference.</p>
<p>Closes <a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1843">#1843</a></p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyCQA/astroid/commit/8bdec591f228e7db6a0be66b6ca814227ff50001"><code>8bdec59</code></a>
Bump astroid to 2.12.13, update changelog</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/d89beaf29e4605795f5631822a4ea7f151f672e6"><code>d89beaf</code></a>
Move <code>_value2member_map_</code> changelog back to 2.12.11 (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1874">#1874</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/0deb805ca41173bde50e287d697b58a56b7828a8"><code>0deb805</code></a>
Fix uncaught ValueError in infer_getitem with zero-step slices (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1844">#1844</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/5ce40b1c5a6106b8dd4e5207927535938e2e2120"><code>5ce40b1</code></a>
Prevent a crash when inferring calls to <code>str.format</code> with
invalid args (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1866">#1866</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/b20dafce1007def9f4b0e247c834a834b7bbd4fb"><code>b20dafc</code></a>
Move changelog entries to 2.12.13 (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1863">#1863</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/e1aabb7b6a8354439a4cdb3a8ae96795ded89192"><code>e1aabb7</code></a>
Infer the <code>length</code> argument of the <code>random.sample</code>
function. (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1862">#1862</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/7dab003a6a5a26275ad3619fcca7600c66859c87"><code>7dab003</code></a>
CI improvements (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1860">#1860</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/a48a9152dbb732562e42bd6c9cb79ef086c1088a"><code>a48a915</code></a>
Prevent returning an empty list for <code>ClassDef.slots()</code> (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1861">#1861</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/2713ebe40cbd6dff33fd46890a264224b9150fa2"><code>2713ebe</code></a>
Add PyPI deployment environment [ci] (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1855">#1855</a>)</li>
<li><a
href="https://github.com/PyCQA/astroid/commit/8397711ad0b5fa6bd20f4150e6fea17e4d1d43e6"><code>8397711</code></a>
Confirm changes before tbump commit (<a
href="https://github-redirect.dependabot.com/PyCQA/astroid/issues/1846">#1846</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/PyCQA/astroid/compare/v2.12.12...v2.12.13">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astroid&package-manager=pip&previous-version=2.12.12&new-version=2.12.13)](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 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>
Co-authored-by: Vadzim Verhasau <vadim.vergasov2003@gmail.com>
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 python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant