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

Bump the dependencies group in /.config with 9 updates #405

Merged
merged 2 commits into from
Dec 29, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2024

Bumps the dependencies group in /.config with 9 updates:

Package From To
astroid 3.3.7 3.3.8
charset-normalizer 3.4.0 3.4.1
coverage 7.6.9 7.6.10
griffe 1.5.1 1.5.4
mkdocstrings-python 1.12.2 1.13.0
pydoclint 0.5.13 0.5.14
pylint 3.3.2 3.3.3
pymdown-extensions 10.12 10.13
urllib3 2.2.3 2.3.0

Updates astroid from 3.3.7 to 3.3.8

Changelog

Sourced from astroid's changelog.

What's New in astroid 3.3.8?

Release date: 2024-12-23

  • Fix inability to import collections.abc in python 3.13.1. The reported fixes in astroid 3.3.6 and 3.3.7 did not actually fix this issue.

    Closes pylint-dev/pylint#10112

Commits
  • d52799b Bump astroid to 3.3.8, update changelog
  • 68714df [Backport maintenance/3.3.x] Another attempt at fixing the collections.abc ...
  • 7cfbad1 Skip flaky recursion test on PyPy (#2661) (#2663)
  • See full diff in compare view

Updates charset-normalizer from 3.4.0 to 3.4.1

Release notes

Sourced from charset-normalizer's releases.

Version 3.4.1

🚀 We're still raising awareness around HTTP/2, and HTTP/3!

Did you know that Internet Explorer 11 shipped with an optional HTTP/2 support back in 2013? also libcurl did ship it in 2014[...] Using Requests today is the rough equivalent of using EOL Windows 8! We promptly invite Python developers to look at the first drop-in replacement for Requests, namely Niquests. Ship with native WebSocket, SSE, Happy Eyeballs, DNS over HTTPS, and so on[...] All of this while remaining compatible with all Requests prior plug-ins / add-ons.

It leverages charset-normalizer in a better way! Check it out, you will gain up to being 3X faster and get a real/respectable support with it.

3.4.1 (2024-12-24)

Changed

  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8

Added

  • pre-commit configuration.
  • noxfile.

Removed

  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.

Fixed

  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+
Changelog

Sourced from charset-normalizer's changelog.

3.4.1 (2024-12-24)

Changed

  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8

Added

  • pre-commit configuration.
  • noxfile.

Removed

  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.

Fixed

  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+
Commits
  • ffdf7f5 🔧 fix long description content-type inferred as rst instead of md
  • c7197b7 📝 fix changelog entries (#582)
  • c390e1f Merge pull request #581 from jawah/refresh-part-2
  • f9d6b8c 🔒 add CODEOWNERS
  • 7ce1ef1 🔧 use ubuntu-22.04 for cibuildwheel in continuous deployment workflow
  • deed205 🔧 update LICENSE copyright
  • f11f571 🔧 include noxfile in sdist
  • 1ec7c06 🔧 update changelog
  • 14b4649 🐛 output(...) replace declarative mark using non iana compliant encoding ...
  • 1b06bc0 Merge branch 'refresh-part-2' of github.com:jawah/charset_normalizer into ref...
  • Additional commits viewable in compare view

Updates coverage from 7.6.9 to 7.6.10

Changelog

Sourced from coverage's changelog.

Version 7.6.10 — 2024-12-26

  • Fix: some descriptions of missing branches in HTML and LCOV reports were incorrect when multi-line statements were involved (issue 1874_ and issue 1875_). These are now fixed.

  • Fix: Python 3.14 defers evaluation of annotations <pep649_>_ by moving them into separate code objects. That code is rarely executed, so coverage.py would mark them as missing, as reported in issue 1908_. Now they are ignored by coverage automatically.

  • Fixed an obscure and mysterious problem on PyPy 3.10 seemingly involving mocks, imports, and trace functions: issue 1902_. To be honest, I don't understand the problem or the solution, but git bisect helped find it, and now it's fixed.

  • Docs: re-wrote the :ref:subprocess page to put multiprocessing first and to highlight the correct use of :class:multiprocessing.Pool <python:multiprocessing.pool.Pool>.

.. _issue 1874: nedbat/coveragepy#1874 .. _issue 1875: nedbat/coveragepy#1875 .. _issue 1902: nedbat/coveragepy#1902 .. _issue 1908: nedbat/coveragepy#1908 .. _pep649: https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations

.. _changes_7-6-9:

Commits
  • f0dcf65 docs: sample HTML for 7.6.10
  • 0f26f35 docs: prep for 7.6.10
  • 81c5e43 docs: rewrite the subprocess page
  • 878410c chore: make doc_upgrade
  • f1d320d chore: make upgrade
  • 67f1440 debug: this condition is never true. really?
  • c85eaba fix: multi-line statements no longer confuse branch target descriptions. #187...
  • 73e58fa refactor: clarify the code that fixes with-statement exits
  • e16c9cc typo: backslask
  • 865fd7f chore: bump the action-dependencies group with 4 updates (#1909)
  • Additional commits viewable in compare view

Updates griffe from 1.5.1 to 1.5.4

Release notes

Sourced from griffe's releases.

1.5.4

1.5.4 - 2024-12-26

Compare with 1.5.3

Bug Fixes

  • Append trailing comma to length-1 tuples (4fccca7 by Timothée Mazzucotelli). Issue-343

Performance Improvements

  • Avoid dictionary creation when accessing members of non-classes with subscript syntax (0279998 by Timothée Mazzucotelli).

1.5.3

1.5.3 - 2024-12-26

Compare with 1.5.2

Code Refactoring

  • Stop caching objects' inherited members, aliases' members and inherited members, classes' resolved bases (e8db3a2 by Timothée Mazzucotelli). Issue-346

1.5.2

1.5.2 - 2024-12-26

Compare with 1.5.1

Bug Fixes

  • Always resolve aliases when checking APIs (0b4f0da by Timothée Mazzucotelli).
  • Don't use same branch name when creating a worktree (6d6c996 by Timothée Mazzucotelli). Issue-337
  • Fetch attribute annotations from inherited members too when parsing docstrings (88fb6b6 by Timothée Mazzucotelli). Issue-mkdocstrings/python#175
Changelog

Sourced from griffe's changelog.

1.5.4 - 2024-12-26

Compare with 1.5.3

Bug Fixes

  • Append trailing comma to length-1 tuples (4fccca7 by Timothée Mazzucotelli). Issue-343

Performance Improvements

  • Avoid dictionary creation when accessing members of non-classes with subscript syntax (0279998 by Timothée Mazzucotelli).

1.5.3 - 2024-12-26

Compare with 1.5.2

Code Refactoring

  • Stop caching objects' inherited members, aliases' members and inherited members, classes' resolved bases (e8db3a2 by Timothée Mazzucotelli). Issue-346

1.5.2 - 2024-12-26

Compare with 1.5.1

Bug Fixes

  • Always resolve aliases when checking APIs (0b4f0da by Timothée Mazzucotelli).
  • Don't use same branch name when creating a worktree (6d6c996 by Timothée Mazzucotelli). Issue-337
  • Fetch attribute annotations from inherited members too when parsing docstrings (88fb6b6 by Timothée Mazzucotelli). Issue-mkdocstrings/python#175
Commits
  • a2f320f chore: Prepare release 1.5.4
  • 4fccca7 fix: Append trailing comma to length-1 tuples
  • 410a392 chore: Allow perf sections in changelog
  • eea0af1 chore: Update comment
  • 0279998 perf: Avoid dictionary creation when accessing members of non-classes with su...
  • 8dd5749 chore: Prepare release 1.5.3
  • e8db3a2 refactor: Stop caching objects' inherited members, aliases' members and inher...
  • daadc60 chore: Prepare release 1.5.2
  • 53b4db1 docs: Add "see also" sections to docstrings
  • e2e0983 ci: Remove annotation from enum values to satisfy mypy
  • Additional commits viewable in compare view

Updates mkdocstrings-python from 1.12.2 to 1.13.0

Release notes

Sourced from mkdocstrings-python's releases.

1.13.0

1.13.0 - 2024-12-26

Compare with 1.12.2

Features

  • Allow using Ruff to format signatures and attribute values (d67215c by dm). PR-216

Bug Fixes

  • Respect show_signature_annotations option for attribute signatures in headings (e93d166 by Timothée Mazzucotelli). Issue-griffe-pydantic#9
  • Handle __init__ overloads when merging into class (af6fab3 by Timothée Mazzucotelli). Issue-212
  • Actually check if a module is public when rendering auto-generated summary table for modules (3bf55b2 by Timothée Mazzucotelli). Issue-203
  • Never render line numbers for signatures and attribute values (a669f1c by Timothée Mazzucotelli). Issue-192
  • Respect highlight's linenums config for pycon examples in docstrings (53eb82a by Timothée Mazzucotelli). [Related-to-#192](mkdocstrings/python#192)
  • Fix normalization of extension paths on the annoying operating system and Python 3.13 (101a6dc by Timothée Mazzucotelli).
  • Don't merge parent __init__ docstring into class docstring if such inherited method wasn't selected through the inherited_members configuration option (6c5b5c3 by Timothée Mazzucotelli). Issue-189

Code Refactoring

Changelog

Sourced from mkdocstrings-python's changelog.

1.13.0 - 2024-12-26

Compare with 1.12.2

Features

  • Allow using Ruff to format signatures and attribute values (d67215c by dm). PR-216

Bug Fixes

  • Respect show_signature_annotations option for attribute signatures in headings (e93d166 by Timothée Mazzucotelli). Issue-griffe-pydantic#9
  • Handle __init__ overloads when merging into class (af6fab3 by Timothée Mazzucotelli). Issue-212
  • Actually check if a module is public when rendering auto-generated summary table for modules (3bf55b2 by Timothée Mazzucotelli). Issue-203
  • Never render line numbers for signatures and attribute values (a669f1c by Timothée Mazzucotelli). Issue-192
  • Respect highlight's linenums config for pycon examples in docstrings (53eb82a by Timothée Mazzucotelli). [Related-to-#192](mkdocstrings/python#192)
  • Fix normalization of extension paths on the annoying operating system and Python 3.13 (101a6dc by Timothée Mazzucotelli).
  • Don't merge parent __init__ docstring into class docstring if such inherited method wasn't selected through the inherited_members configuration option (6c5b5c3 by Timothée Mazzucotelli). Issue-189

Code Refactoring

Commits
  • 941d0e5 chore: Prepare release 1.13.0
  • c8f1a77 tests: Add templates rendenring tests using inline-snapshot
  • e493663 tests: Refactor fixtures and helpers
  • 0d953e3 chore: Template upgrade
  • ec4d2cc chore: Template upgrade
  • d67215c feat: Allow using Ruff to format signatures and attribute values
  • c4506f0 refactor: Render * and ** outside of cross-references in signatures
  • cea4996 docs: Mention mkdocstrings-python-xref
  • e93d166 fix: Respect show_signature_annotations option for attribute signatures in ...
  • af6fab3 fix: Handle __init__ overloads when merging into class
  • Additional commits viewable in compare view

Updates pydoclint from 0.5.13 to 0.5.14

Release notes

Sourced from pydoclint's releases.

0.5.14

What's Changed

Full Changelog: jsh9/pydoclint@0.5.13...0.5.14

Changelog

Sourced from pydoclint's changelog.

[0.5.14] - 2024-12-26

  • Changed

    • Added DOC002 (syntax error) to handle cases where there are syntax errors in the Python file
    • Replaced invisible and zero-width characters with empty strings so that Python's AST can correctly parse the files
    • Added end-to-end test (essentially an integration test)
  • Fixed

    • A bug in ast.assign
  • Full diff

Commits

Updates pylint from 3.3.2 to 3.3.3

Commits

Updates pymdown-extensions from 10.12 to 10.13

Release notes

Sourced from pymdown-extensions's releases.

10.13

  • NEW: Snippets: Allow multiple line numbers or line number blocks separated by ,.
  • NEW: Snippets: Allow using a negative index for number start indexes and end indexes. Negative indexes are converted to positive indexes based on the number of lines in the snippet.
  • FIX: Snippets: Properly capture empty newline at end of file.
  • FIX: Snippets: Fix issue where when non sections of files are included, section labels are not stripped.
  • FIX: BetterEm: Fixes for complex cases.
  • FIX: Blocks: More consistent handling of empty newlines in block processor extensions.
Commits

Updates urllib3 from 2.2.3 to 2.3.0

Release notes

Sourced from urllib3's releases.

2.3.0

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Features

  • Added HTTPResponse.shutdown() to stop any ongoing or future reads for a specific response. It calls shutdown(SHUT_RD) on the underlying socket. This feature was sponsored by LaunchDarkly. (urllib3/urllib3#2868)
  • Added support for JavaScript Promise Integration on Emscripten. This enables more efficient WebAssembly requests and streaming, and makes it possible to use in Node.js if you launch it as node --experimental-wasm-stack-switching. (urllib3/urllib3#3400)
  • Added the proxy_is_tunneling property to HTTPConnection and HTTPSConnection. (urllib3/urllib3#3285)
  • Added pickling support to NewConnectionError and NameResolutionError. (urllib3/urllib3#3480)

Bugfixes

  • Fixed an issue in debug logs where the HTTP version was rendering as "HTTP/11" instead of "HTTP/1.1". (urllib3/urllib3#3489)

Deprecations and Removals

Full Changelog: urllib3/urllib3@2.2.3...2.3.0

Changelog

Sourced from urllib3's changelog.

2.3.0 (2024-12-22)

Features

  • Added HTTPResponse.shutdown() to stop any ongoing or future reads for a specific response. It calls shutdown(SHUT_RD) on the underlying socket. This feature was sponsored by LaunchDarkly <https://opencollective.com/urllib3/contributions/815307>. ([#2868](https://github.com/urllib3/urllib3/issues/2868) <https://github.com/urllib3/urllib3/issues/2868>)
  • Added support for JavaScript Promise Integration on Emscripten. This enables more efficient WebAssembly requests and streaming, and makes it possible to use in Node.js if you launch it as node --experimental-wasm-stack-switching. ([#3400](https://github.com/urllib3/urllib3/issues/3400) <https://github.com/urllib3/urllib3/issues/3400>__)
  • Added the proxy_is_tunneling property to HTTPConnection and HTTPSConnection. ([#3285](https://github.com/urllib3/urllib3/issues/3285) <https://github.com/urllib3/urllib3/issues/3285>__)
  • Added pickling support to NewConnectionError and NameResolutionError. ([#3480](https://github.com/urllib3/urllib3/issues/3480) <https://github.com/urllib3/urllib3/issues/3480>__)

Bugfixes

  • Fixed an issue in debug logs where the HTTP version was rendering as "HTTP/11" instead of "HTTP/1.1". ([#3489](https://github.com/urllib3/urllib3/issues/3489) <https://github.com/urllib3/urllib3/issues/3489>__)

Deprecations and Removals

  • Removed support for Python 3.8. ([#3492](https://github.com/urllib3/urllib3/issues/3492) <https://github.com/urllib3/urllib3/issues/3492>__)
Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group in /.config with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [astroid](https://github.com/pylint-dev/astroid) | `3.3.7` | `3.3.8` |
| [charset-normalizer](https://github.com/jawah/charset_normalizer) | `3.4.0` | `3.4.1` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.9` | `7.6.10` |
| [griffe](https://github.com/mkdocstrings/griffe) | `1.5.1` | `1.5.4` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.12.2` | `1.13.0` |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.13` | `0.5.14` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.2` | `3.3.3` |
| [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) | `10.12` | `10.13` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.2.3` | `2.3.0` |


Updates `astroid` from 3.3.7 to 3.3.8
- [Release notes](https://github.com/pylint-dev/astroid/releases)
- [Changelog](https://github.com/pylint-dev/astroid/blob/main/ChangeLog)
- [Commits](pylint-dev/astroid@v3.3.7...v3.3.8)

Updates `charset-normalizer` from 3.4.0 to 3.4.1
- [Release notes](https://github.com/jawah/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.4.0...3.4.1)

Updates `coverage` from 7.6.9 to 7.6.10
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.9...7.6.10)

Updates `griffe` from 1.5.1 to 1.5.4
- [Release notes](https://github.com/mkdocstrings/griffe/releases)
- [Changelog](https://github.com/mkdocstrings/griffe/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/griffe@1.5.1...1.5.4)

Updates `mkdocstrings-python` from 1.12.2 to 1.13.0
- [Release notes](https://github.com/mkdocstrings/python/releases)
- [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python@1.12.2...1.13.0)

Updates `pydoclint` from 0.5.13 to 0.5.14
- [Release notes](https://github.com/jsh9/pydoclint/releases)
- [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md)
- [Commits](jsh9/pydoclint@0.5.13...0.5.14)

Updates `pylint` from 3.3.2 to 3.3.3
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.2...v3.3.3)

Updates `pymdown-extensions` from 10.12 to 10.13
- [Release notes](https://github.com/facelessuser/pymdown-extensions/releases)
- [Commits](facelessuser/pymdown-extensions@10.12...10.13)

Updates `urllib3` from 2.2.3 to 2.3.0
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.2.3...2.3.0)

---
updated-dependencies:
- dependency-name: astroid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: coverage
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: griffe
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocstrings-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydoclint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pymdown-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 29, 2024 02:41
@dependabot dependabot bot added dependabot-deps-updates Pull requests that update a dependency file skip-changelog Can be missed from the changelog. labels Dec 29, 2024
@ansibuddy ansibuddy enabled auto-merge (squash) December 29, 2024 02:41
@abhikdps abhikdps disabled auto-merge December 29, 2024 09:12
@ansibuddy ansibuddy enabled auto-merge (squash) December 29, 2024 09:13
@abhikdps abhikdps disabled auto-merge December 29, 2024 09:13
@abhikdps abhikdps merged commit e330ea1 into main Dec 29, 2024
69 checks passed
@abhikdps abhikdps deleted the dependabot/pip/dot-config/dependencies-53ebd4eebc branch December 29, 2024 09:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependabot-deps-updates Pull requests that update a dependency file skip-changelog Can be missed from the changelog.
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants