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 dev group in /.config with 29 updates #226

Closed
wants to merge 2 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 7, 2023

Bumps the dev group in /.config with 29 updates:

Package From To
cryptography 41.0.4 41.0.7
exceptiongroup 1.1.3 1.2.0
importlib-resources 5.0.7 6.1.1
packaging 23.1 23.2
babel 2.12.1 2.13.1
certifi 2023.7.22 2023.11.17
charset-normalizer 3.2.0 3.3.2
click-help-colors 0.9.2 0.9.4
griffe 0.36.4 0.38.1
idna 3.4 3.6
importlib-metadata 6.8.0 7.0.0
jsonschema 4.19.1 4.20.0
jsonschema-specifications 2023.7.1 2023.11.2
markdown 3.4.4 3.5.1
markdown-exec 1.6.0 1.7.0
mkdocs-material 9.4.2 9.5.0
mkdocs-material-extensions 1.2 1.3.1
mkdocstrings 0.23.0 0.24.0
mkdocstrings-python 1.7.1 1.7.5
pillow 10.0.1 10.1.0
pipdeptree 2.13.0 2.13.1
platformdirs 3.10.0 4.1.0
pygments 2.16.1 2.17.2
pymdown-extensions 10.3 10.5
referencing 0.30.2 0.32.0
regex 2023.8.8 2023.10.3
rich 13.6.0 13.7.0
rpds-py 0.10.6 0.13.2
urllib3 2.0.5 2.1.0

Updates cryptography from 41.0.4 to 41.0.7

Changelog

Sourced from cryptography's changelog.

41.0.7 - 2023-11-27


* Fixed compilation when using LibreSSL 3.8.2.

.. _v41-0-6:

41.0.6 - 2023-11-27

  • Fixed a null-pointer-dereference and segfault that could occur when loading certificates from a PKCS#7 bundle. Credit to pkuzco for reporting the issue. CVE-2023-49083

.. _v41-0-5:

41.0.5 - 2023-10-24


* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.4.
* Added a function to support an upcoming ``pyOpenSSL`` release.

.. _v41-0-4:

Commits

Updates exceptiongroup from 1.1.3 to 1.2.0

Release notes

Sourced from exceptiongroup's releases.

1.2.0

  • Added special monkeypatching if Apport has overridden sys.excepthook so it will format exception groups correctly (PR by John Litborn)
  • Added a backport of contextlib.suppress() from Python 3.12.1 which also handles suppressing exceptions inside exception groups
  • Fixed bare raise in a handler reraising the original naked exception rather than an exception group which is what is raised when you do a raise in an except* handler
Changelog

Sourced from exceptiongroup's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

1.2.0

  • Added special monkeypatching if Apport <https://github.com/canonical/apport>_ has overridden sys.excepthook so it will format exception groups correctly (PR by John Litborn)
  • Added a backport of contextlib.suppress() from Python 3.12.1 which also handles suppressing exceptions inside exception groups
  • Fixed bare raise in a handler reraising the original naked exception rather than an exception group which is what is raised when you do a raise in an except* handler

1.1.3

  • catch() now raises a TypeError if passed an async exception handler instead of just giving a RuntimeWarning about the coroutine never being awaited. (#66, PR by John Litborn)
  • Fixed plain raise statement in an exception handler callback to work like a raise in an except* block
  • Fixed new exception group not being chained to the original exception when raising an exception group from exceptions raised in handler callbacks
  • Fixed type annotations of the derive(), subgroup() and split() methods to match the ones in typeshed

1.1.2

  • Changed handling of exceptions in exception group handler callbacks to not wrap a single exception in an exception group, as per CPython issue 103590 <https://github.com/python/cpython/issues/103590>_

1.1.1

  • Worked around CPython issue [#98778](https://github.com/agronholm/exceptiongroup/issues/98778) <https://github.com/python/cpython/issues/98778>_, urllib.error.HTTPError(..., fp=None) raises KeyError on unknown attribute access, on affected Python versions. (PR by Zac Hatfield-Dodds)

1.1.0

  • Backported upstream fix for gh-99553 (custom subclasses of BaseExceptionGroup that also inherit from Exception should not be able to wrap base exceptions)
  • Moved all initialization code to __new__() (thus matching Python 3.11 behavior)

1.0.4

  • Fixed regression introduced in v1.0.3 where the code computing the suggestions would

... (truncated)

Commits
  • 4e2df21 Added the release version
  • f7c00cf Backported contextlib.suppress from Python 3.12.1 (#95)
  • 1ede26f Enabled pyupgrade ruff rules
  • 767e62b Eliminated pyupgrade and black in favor of ruff/ruff-format
  • d025269 Fixed bare raise in a handler not raising an exception group
  • 4357e11 Updated the checkout action to the latest version
  • e299167 [pre-commit.ci] pre-commit autoupdate (#94)
  • 4e4e879 [pre-commit.ci] pre-commit autoupdate (#92)
  • 27a2963 [pre-commit.ci] pre-commit autoupdate (#90)
  • fae9d9a Monkeypatch Apport excepthook (#88)
  • Additional commits viewable in compare view

Updates importlib-resources from 5.0.7 to 6.1.1

Changelog

Sourced from importlib-resources's changelog.

v6.1.1

Bugfixes

v6.1.0

Features

  • MultiplexedPath now expects Traversable paths. String arguments to MultiplexedPath are now deprecated.

Bugfixes

  • Enabled support for resources in namespace packages in zip files. (#287)

v6.0.1

Bugfixes

  • Restored Apache license. (#285)

v6.0.0

Deprecations and Removals

  • Removed legacy functions deprecated in 5.3. (#80)

v5.13.0

Features

  • Require Python 3.8 or later.

... (truncated)

Commits

Updates packaging from 23.1 to 23.2

Release notes

Sourced from packaging's releases.

23.2

What's Changed

New Contributors

Full Changelog: pypa/packaging@23.1...23.2

Changelog

Sourced from packaging's changelog.

23.2 - 2023-10-01


* Document calendar-based versioning scheme (:issue:`716`)
* Enforce that the entire marker string is parsed (:issue:`687`)
* Requirement parsing no longer automatically validates the URL (:issue:`120`)
* Canonicalize names for requirements comparison (:issue:`644`)
* Introduce ``metadata.Metadata`` (along with ``metadata.ExceptionGroup`` and ``metadata.InvalidMetadata``; :issue:`570`)
* Introduce the ``validate`` keyword parameter to ``utils.normalize_name()`` (:issue:`570`)
* Introduce ``utils.is_normalized_name()`` (:issue:`570`)
* Make ``utils.parse_sdist_filename()`` and ``utils.parse_wheel_filename()``
  raise ``InvalidSdistFilename`` and ``InvalidWheelFilename``, respectively,
  when the version component of the name is invalid
Commits
  • b3a5d7d Bump for release
  • d7ce40d Fix code blocks in CHANGELOG.md (#724)
  • 524b701 parse_{sdist,wheel}_filename: don't raise InvalidVersion (#721)
  • b509bef Typing annotations fixed (#723)
  • 0206c39 Bump pip version to avoid known vulnerabilities (#720)
  • 7023537 fix: Update copyright date for docs (#713)
  • 39786bb Document use of calendar-based versioning scheme (#717)
  • c1346df fix: Detect when a platform is 32-bit more accurately (#711)
  • 7e68d82 Correct rST syntax in CHANGELOG.rst (#709)
  • 61e6efb Support enriched metadata in packaging.metadata (#686)
  • Additional commits viewable in compare view

Updates babel from 2.12.1 to 2.13.1

Release notes

Sourced from babel's releases.

Version 2.13.1

What's Changed

New Contributors

Full Changelog: python-babel/babel@v2.13.0...v2.13.1


PyPI: https://pypi.org/project/Babel/2.13.1/

v2.13.0

PyPI: https://pypi.org/project/Babel/2.13.0/

Upcoming deprecation

  • This version, Babel 2.13, is the last version of Babel to support Python 3.7. Babel 2.14 will require Python 3.8 or newer.

(This changelog is auto-generated by GitHub; please see CHANGES.rst for a less verbose listing.)

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from babel's changelog.

Version 2.13.1

This is a patch release to fix a few bugs.

Fixes


* Fix a typo in ``_locales_to_names`` by @Dl84 in :gh:`1038` (issue :gh:`1037`)
* Fix ``setuptools`` dependency for Python 3.12 by @opryprin in :gh:`1033`

Version 2.13.0

Upcoming deprecation

  • This version, Babel 2.13, is the last version of Babel to support Python 3.7. Babel 2.14 will require Python 3.8 or newer.

Features


* Add flag to ignore POT-Creation-Date for updates by @joeportela in :gh:`999`
* Support 't' specifier in keywords by @jeanas in :gh:`1015`
* Add f-string parsing for Python 3.12 (PEP 701) by @encukou in :gh:`1027`

Fixes


* Various typing-related fixes by @akx in :gh:`979`, in :gh:`978`, :gh:`981`,  :gh:`983`
* babel.messages.catalog: deduplicate _to_fuzzy_match_key logic by @akx in :gh:`980`
* Freeze format_time() tests to a specific date to fix test failures by @mgorny in :gh:`998`
* Spelling and grammar fixes by @scop in :gh:`1008`
* Renovate lint tools by @akx in :gh:`1017`, :gh:`1028`
* Use SPDX license identifier by @vargenau in :gh:`994`
* Use aware UTC datetimes internally by @scop in :gh:`1009`

New Contributors
</code></pre>
<ul>
<li><a href="https://github.com/mgorny&quot;&gt;&lt;code&gt;@​mgorny&lt;/code&gt;&lt;/a> made their first contribution in :gh:<code>998</code></li>
<li><a href="https://github.com/vargenau&quot;&gt;&lt;code&gt;@​vargenau&lt;/code&gt;&lt;/a> made their first contribution in :gh:<code>994</code></li>
<li><a href="https://github.com/joeportela&quot;&gt;&lt;code&gt;@​joeportela&lt;/code&gt;&lt;/a> made their first contribution in :gh:<code>999</code></li>
<li><a href="https://github.com/encukou&quot;&gt;&lt;code&gt;@​encukou&lt;/code&gt;&lt;/a> made their first contribution in :gh:<code>1027</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/python-babel/babel/commit/65de3dcf2dc217d6135eff999dc87a3861065e8d&quot;&gt;&lt;code&gt;65de3dc&lt;/code&gt;&lt;/a> Prepare for 2.13.1 release</li>
<li><a href="https://github.com/python-babel/babel/commit/139dc11baeb3bbd3bcbb900abb3519e71521a3f7&quot;&gt;&lt;code&gt;139dc11&lt;/code&gt;&lt;/a> Fix _locales_to_names: Call str() on the parameter variable instead of the mo...</li>
<li><a href="https://github.com/python-babel/babel/commit/eeb2feb13f7273636d2214dbdb3fb780d9b4fa4f&quot;&gt;&lt;code&gt;eeb2feb&lt;/code&gt;&lt;/a> Depend on setuptools since Python 3.12</li>
<li><a href="https://github.com/python-babel/babel/commit/76677eacd10cc35bea0a11ec1d2f0566cadd4066&quot;&gt;&lt;code&gt;76677ea&lt;/code&gt;&lt;/a> Prepare for 2.13.0 release</li>
<li><a href="https://github.com/python-babel/babel/commit/fb6ab5fa6685c98433a9d558de2a3e76fbe54f83&quot;&gt;&lt;code&gt;fb6ab5f&lt;/code&gt;&lt;/a> Renovate CI &amp; tools (<a href="https://redirect.github.com/python-babel/babel/issues/1028&quot;&gt;#1028&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/python-babel/babel/commit/72bccffc7c35f07ec8bf97ff90079d51fc4da012&quot;&gt;&lt;code&gt;72bccff&lt;/code&gt;&lt;/a> Add f-string parsing for Python 3.12 (PEP 701) (<a href="https://redirect.github.com/python-babel/babel/issues/1027&quot;&gt;#1027&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/python-babel/babel/commit/6fc07a27c00cc67e32a5e5e610fe8a9a0b3756f1&quot;&gt;&lt;code&gt;6fc07a2&lt;/code&gt;&lt;/a> Support 't' specifier in keywords (<a href="https://redirect.github.com/python-babel/babel/issues/1015&quot;&gt;#1015&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/python-babel/babel/commit/9ef53c6a6ab5fc604b58ccb19dc63ebcf8edd28b&quot;&gt;&lt;code&gt;9ef53c6&lt;/code&gt;&lt;/a> Add flag to ignore POT-Creation-Date for updates (<a href="https://redirect.github.com/python-babel/babel/issues/999&quot;&gt;#999&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/python-babel/babel/commit/1747d2230a0294a07c99563cf50fb95a37b6ac0f&quot;&gt;&lt;code&gt;1747d22&lt;/code&gt;&lt;/a> Use aware UTC datetimes internally (<a href="https://redirect.github.com/python-babel/babel/issues/1009&quot;&gt;#1009&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/python-babel/babel/commit/95a0ea818f5d555ab4bad0ae7722971934b4a193&quot;&gt;&lt;code&gt;95a0ea8&lt;/code&gt;&lt;/a> Use SPDX license identifier: BSD-3-Clause (<a href="https://redirect.github.com/python-babel/babel/issues/994&quot;&gt;#994&lt;/a&gt;)&lt;/li>
<li>Additional commits viewable in <a href="https://github.com/python-babel/babel/compare/v2.12.1...v2.13.1&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Updates certifi from 2023.7.22 to 2023.11.17

Commits
  • 515962b Merge pull request #252 from certifi/create-pull-request/patch
  • 28b2a0d 2023.11.17
  • 7ccda9f Bump actions/checkout from 4.1.0 to 4.1.1 (#251)
  • 5e4bb9e Bump actions/setup-python from 4.7.0 to 4.7.1 (#248)
  • 610354f Bump actions/checkout from 4.0.0 to 4.1.0 (#247)
  • 2d98c76 Bump actions/upload-artifact from 3.1.2 to 3.1.3 (#246)
  • 7f0e639 ci: add minimal permissions to workflows bump.yml and release.yml (#245)
  • 600713d Bump actions/checkout from 3.6.0 to 4.0.0 (#244)
  • 0435b2a Bump actions/checkout from 3.5.3 to 3.6.0 (#242)
  • 25ea83a Fix bash
  • Additional commits viewable in compare view

Updates charset-normalizer from 3.2.0 to 3.3.2

Release notes

Sourced from charset-normalizer's releases.

Version 3.3.2

3.3.2 (2023-10-31)

Fixed

  • Unintentional memory usage regression when using large payloads that match several encodings (#376)
  • Regression on some detection cases showcased in the documentation (#371)

Added

  • Noise (md) probe that identifies malformed Arabic representation due to the presence of letters in isolated form (credit to my wife, thanks!)

Version 3.3.1

3.3.1 (2023-10-22)

Changed

  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

Release 3.3.0

3.3.0 (2023-09-30)

Added

  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encodings that are supported by Python but unlisted in encoding.aliases as they have no alias (#323)

Removed

  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant

Changed

  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8

Fixed

  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#350)
Changelog

Sourced from charset-normalizer's changelog.

3.3.2 (2023-10-31)

Fixed

  • Unintentional memory usage regression when using large payload that match several encoding (#376)
  • Regression on some detection case showcased in the documentation (#371)

Added

  • Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife)

3.3.1 (2023-10-22)

Changed

  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

3.3.0 (2023-09-30)

Added

  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encoding that are supported by Python but unlisted in encoding.aliases as they have no alias (#323)

Removed

  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant

Changed

  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8

Fixed

  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#350)
Commits
  • 79dce48 :bug: Regression on some detection case showcased in the documentation (#371)...
  • a4b9b01 Bump github/codeql-action from 2.22.4 to 2.22.5 (#375)
  • dcc01cc Bump ossf/scorecard-action from 2.3.0 to 2.3.1 (#374)
  • 9cd402c Bump pytest from 7.4.2 to 7.4.3 (#373)
  • e274dcc :bug: Fix unintentional memory usage regression when using large payload that...
  • 07f3041 :arrow_up: Bump github/codeql-action from 2.22.3 to 2.22.4 (#370)
  • 5208644 :bookmark: Release 3.3.1 (#367)
  • 66966f1 :sparkle: Improve the detection around some cases (#366)
  • 49653a6 :arrow_up: Bump actions/setup-python from 4.7.0 to 4.7.1 (#359)
  • f6a66ed :arrow_up: Bump pypa/cibuildwheel from 2.16.0 to 2.16.2 (#361)
  • Additional commits viewable in compare view

Updates click-help-colors from 0.9.2 to 0.9.4

Changelog

Sourced from click-help-colors's changelog.

[0.9.4]

  • Add py.typed to package data in setup.py. PR [#24](https://github.com/click-contrib/click-help-colors/issues/24) <https://github.com/click-contrib/click-help-colors/pull/24>_

[0.9.3]

  • Add type hints. PR [#22](https://github.com/click-contrib/click-help-colors/issues/22) <https://github.com/click-contrib/click-help-colors/pull/22>_
Commits

Updates griffe from 0.36.4 to 0.38.1

Release notes

Sourced from griffe's releases.

0.38.1

0.38.1 - 2023-12-06

Compare with 0.38.0

Bug Fixes

0.38.0

0.38.0 - 2023-11-13

Compare with 0.37.0

Features

  • Allow passing load parameters to the temporary package visit helper (3a7854f by Timothée Mazzucotelli).

0.37.0

0.37.0 - 2023-11-12

Compare with 0.36.9

Deprecations

  • The loader load_module method was renamed load, Its module parameter was renamed objspec and is now positional-only. This method always returned the specified object, not just modules, so it made more sense to rename it load and to rename the parameter specifying the object. Old usages (load_module and module=...) will continue to work for some time (a few months, a year, more), and will emit deprecation warnings.

Features

Bug Fixes

Code Refactoring

  • Rename loader load_module method to load (2bfe206 by Timothée Mazzucotelli).

0.36.9

0.36.9 - 2023-10-27

... (truncated)

Changelog

Sourced from griffe's changelog.

0.38.1 - 2023-12-06

Compare with 0.38.0

Bug Fixes

0.38.0 - 2023-11-13

Compare with 0.37.0

Features

  • Allow passing load parameters to the temporary package visit helper (3a7854f by Timothée Mazzucotelli).

0.37.0 - 2023-11-12

Compare with 0.36.9

Deprecations

  • The loader load_module method was renamed load, Its module parameter was renamed objspec and is now positional-only. This method always returned the specified object, not just modules, so it made more sense to rename it load and to rename the parameter specifying the object. Old usages (load_module and module=...) will continue to work for some time (a few months, a year, more), and will emit deprecation warnings.

Features

Bug Fixes

Code Refactoring

  • Rename loader load_module method to load (2bfe206 by Timothée Mazzucotelli).

0.36.9 - 2023-10-27

Compare with 0.36.8

Bug Fixes

... (truncated)

Commits
  • 0a370bf chore: Prepare release 0.38.1
  • 4e67d8f fix: Support absolute Windows paths for extensions
  • 839c8cc chore: Prepare release 0.38.0
  • 3a7854f feat: Allow passing load parameters to the temporary package visit helper
  • 5becf73 chore: Prepare release 0.37.0
  • 8b11d77 feat: Add option to warn about unknown parameters in Sphinx docstrings
  • 6598582 Merge branch 'main' of github.com:mkdocstrings/griffe
  • bed0b40 chore: Minimize failing cases in fuzz duty
  • dfffa4b fix: Report attributes who lost their value as "unset"
  • 6daee65 chore: Post-merge lint
  • Additional commits viewable in compare view

Updates idna from 3.4 to 3.6

Changelog

Sourced from idna's changelog.

3.6 (2023-11-25) ++++++++++++++++

  • Fix regression to include tests in source distribution.

3.5 (2023-11-24) ++++++++++++++++

  • Update to Unicode 15.1.0
  • String codec name is now "idna2008" as overriding the system codec "idna" was not working.
  • Fix typing error for codec encoding
  • "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly.
  • Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives.
  • Added security reporting protocol for project

Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release.

Commits

Updates importlib-metadata from 6.8.0 to 7.0.0

Changelog

Sourced from importlib-metadata's changelog.

v7.0.0

Deprecations and Removals

  • Removed EntryPoint a...

    Description has been truncated

@dependabot dependabot bot requested a review from a team as a code owner December 7, 2023 18:38
@dependabot dependabot bot requested review from cristianonicolai and Qalthos and removed request for a team December 7, 2023 18:38
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 7, 2023

The following labels could not be found: dependabot-deps-updates.

Bumps the dev group in /.config with 29 updates:

| Package | From | To |
| --- | --- | --- |
| [cryptography](https://github.com/pyca/cryptography) | `41.0.4` | `41.0.7` |
| [exceptiongroup](https://github.com/agronholm/exceptiongroup) | `1.1.3` | `1.2.0` |
| [importlib-resources](https://github.com/python/importlib_resources) | `5.0.7` | `6.1.1` |
| [packaging](https://github.com/pypa/packaging) | `23.1` | `23.2` |
| [babel](https://github.com/python-babel/babel) | `2.12.1` | `2.13.1` |
| [certifi](https://github.com/certifi/python-certifi) | `2023.7.22` | `2023.11.17` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.2.0` | `3.3.2` |
| [click-help-colors](https://github.com/click-contrib/click-help-colors) | `0.9.2` | `0.9.4` |
| [griffe](https://github.com/mkdocstrings/griffe) | `0.36.4` | `0.38.1` |
| [idna](https://github.com/kjd/idna) | `3.4` | `3.6` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `6.8.0` | `7.0.0` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.19.1` | `4.20.0` |
| [jsonschema-specifications](https://github.com/python-jsonschema/jsonschema-specifications) | `2023.7.1` | `2023.11.2` |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.4.4` | `3.5.1` |
| [markdown-exec](https://github.com/pawamoy/markdown-exec) | `1.6.0` | `1.7.0` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.4.2` | `9.5.0` |
| [mkdocs-material-extensions](https://github.com/facelessuser/mkdocs-material-extensions) | `1.2` | `1.3.1` |
| [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings) | `0.23.0` | `0.24.0` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.7.1` | `1.7.5` |
| [pillow](https://github.com/python-pillow/Pillow) | `10.0.1` | `10.1.0` |
| [pipdeptree](https://github.com/tox-dev/pipdeptree) | `2.13.0` | `2.13.1` |
| [platformdirs](https://github.com/platformdirs/platformdirs) | `3.10.0` | `4.1.0` |
| [pygments](https://github.com/pygments/pygments) | `2.16.1` | `2.17.2` |
| [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) | `10.3` | `10.5` |
| [referencing](https://github.com/python-jsonschema/referencing) | `0.30.2` | `0.32.0` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2023.8.8` | `2023.10.3` |
| [rich](https://github.com/Textualize/rich) | `13.6.0` | `13.7.0` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.10.6` | `0.13.2` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.0.5` | `2.1.0` |


Updates `cryptography` from 41.0.4 to 41.0.7
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@41.0.4...41.0.7)

Updates `exceptiongroup` from 1.1.3 to 1.2.0
- [Release notes](https://github.com/agronholm/exceptiongroup/releases)
- [Changelog](https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst)
- [Commits](agronholm/exceptiongroup@1.1.3...1.2.0)

Updates `importlib-resources` from 5.0.7 to 6.1.1
- [Release notes](https://github.com/python/importlib_resources/releases)
- [Changelog](https://github.com/python/importlib_resources/blob/main/NEWS.rst)
- [Commits](python/importlib_resources@v5.0.7...v6.1.1)

Updates `packaging` from 23.1 to 23.2
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@23.1...23.2)

Updates `babel` from 2.12.1 to 2.13.1
- [Release notes](https://github.com/python-babel/babel/releases)
- [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst)
- [Commits](python-babel/babel@v2.12.1...v2.13.1)

Updates `certifi` from 2023.7.22 to 2023.11.17
- [Commits](certifi/python-certifi@2023.07.22...2023.11.17)

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

Updates `click-help-colors` from 0.9.2 to 0.9.4
- [Changelog](https://github.com/click-contrib/click-help-colors/blob/master/CHANGES.rst)
- [Commits](click-contrib/click-help-colors@0.9.2...0.9.4)

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

Updates `idna` from 3.4 to 3.6
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.4...v3.6)

Updates `importlib-metadata` from 6.8.0 to 7.0.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v6.8.0...v7.0.0)

Updates `jsonschema` from 4.19.1 to 4.20.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.19.1...v4.20.0)

Updates `jsonschema-specifications` from 2023.7.1 to 2023.11.2
- [Release notes](https://github.com/python-jsonschema/jsonschema-specifications/releases)
- [Commits](python-jsonschema/jsonschema-specifications@v2023.07.1...v2023.11.2)

Updates `markdown` from 3.4.4 to 3.5.1
- [Release notes](https://github.com/Python-Markdown/markdown/releases)
- [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md)
- [Commits](Python-Markdown/markdown@3.4.4...3.5.1)

Updates `markdown-exec` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/pawamoy/markdown-exec/releases)
- [Changelog](https://github.com/pawamoy/markdown-exec/blob/main/CHANGELOG.md)
- [Commits](pawamoy/markdown-exec@1.6.0...1.7.0)

Updates `mkdocs-material` from 9.4.2 to 9.5.0
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.4.2...9.5.0)

Updates `mkdocs-material-extensions` from 1.2 to 1.3.1
- [Release notes](https://github.com/facelessuser/mkdocs-material-extensions/releases)
- [Changelog](https://github.com/facelessuser/mkdocs-material-extensions/blob/master/changelog.md)
- [Commits](facelessuser/mkdocs-material-extensions@1.2...1.3.1)

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

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

Updates `pillow` from 10.0.1 to 10.1.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@10.0.1...10.1.0)

Updates `pipdeptree` from 2.13.0 to 2.13.1
- [Release notes](https://github.com/tox-dev/pipdeptree/releases)
- [Changelog](https://github.com/tox-dev/pipdeptree/blob/main/CHANGES.md)
- [Commits](tox-dev/pipdeptree@2.13.0...2.13.1)

Updates `platformdirs` from 3.10.0 to 4.1.0
- [Release notes](https://github.com/platformdirs/platformdirs/releases)
- [Changelog](https://github.com/platformdirs/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@3.10.0...4.1.0)

Updates `pygments` from 2.16.1 to 2.17.2
- [Release notes](https://github.com/pygments/pygments/releases)
- [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES)
- [Commits](pygments/pygments@2.16.1...2.17.2)

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

Updates `referencing` from 0.30.2 to 0.32.0
- [Release notes](https://github.com/python-jsonschema/referencing/releases)
- [Changelog](https://github.com/python-jsonschema/referencing/blob/main/docs/changes.rst)
- [Commits](python-jsonschema/referencing@v0.30.2...v0.32.0)

Updates `regex` from 2023.8.8 to 2023.10.3
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](mrabarnett/mrab-regex@2023.8.8...2023.10.3)

Updates `rich` from 13.6.0 to 13.7.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.6.0...v13.7.0)

Updates `rpds-py` from 0.10.6 to 0.13.2
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.10.6...v0.13.2)

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

---
updated-dependencies:
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: exceptiongroup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: importlib-resources
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: packaging
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: babel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: click-help-colors
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: griffe
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: jsonschema-specifications
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: markdown-exec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: mkdocs-material-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: mkdocstrings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: mkdocstrings-python
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: pipdeptree
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: platformdirs
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: pygments
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: pymdown-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: referencing
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: rpds-py
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 10, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 10, 2023
@dependabot dependabot bot deleted the dependabot/pip/dot-config/dev-d003c141d6 branch December 10, 2023 02:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

1 participant