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 development-dependencies group across 1 directory with 22 updates #949

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 31, 2024

Bumps the development-dependencies group with 22 updates in the /config/requirements directory:

Package From To
aiohappyeyeballs 2.3.5 2.4.0
aiohttp 3.10.2 3.10.5
cattrs 23.2.3 24.1.0
certifi 2024.7.4 2024.8.30
djlint 1.34.1 1.35.2
griffe 0.48.0 1.2.0
idna 3.7 3.8
ipython 8.26.0 8.27.0
markdown 3.6 3.7
mkdocs 1.6.0 1.6.1
mkdocs-autorefs 1.0.1 1.1.0
mkdocs-include-markdown-plugin 6.2.1 6.2.2
mkdocs-material 9.5.31 9.5.33
mkdocstrings-python 1.10.7 1.10.9
model-bakery 1.19.1 1.19.5
mypy 1.11.1 1.11.2
paginate 0.5.6 0.5.7
ruff 0.5.7 0.6.3
ruff-lsp 0.0.54 0.0.55
watchdog 4.0.1 5.0.0
wcmatch 8.5.2 9.0
yarl 1.9.4 1.9.6

Updates aiohappyeyeballs from 2.3.5 to 2.4.0

Release notes

Sourced from aiohappyeyeballs's releases.

v2.4.0 (2024-08-19)

Documentation

  • docs: fix a trivial typo in README.md (#84) (f5ae7d4)

Feature

  • feat: add support for python 3.13 (#86) (4f2152f)

v2.3.7 (2024-08-17)

Fix

  • fix: correct classifier for license Python-2.0.1 (#83) (186be05)

v2.3.6 (2024-08-16)

Fix

  • fix: adjust license to Python-2.0.1 (#82) (30a2dc5)
Changelog

Sourced from aiohappyeyeballs's changelog.

v2.4.0 (2024-08-19)

Feature

Documentation

v2.3.7 (2024-08-17)

Fix

  • Correct classifier for license python-2.0.1 (#83) (186be05)

v2.3.6 (2024-08-16)

Fix

Commits

Updates aiohttp from 3.10.2 to 3.10.5

Release notes

Sourced from aiohttp's releases.

3.10.5

Bug fixes

  • Fixed :meth:aiohttp.ClientResponse.json() not setting status when :exc:aiohttp.ContentTypeError is raised -- by :user:bdraco.

    Related issues and pull requests on GitHub: #8742.

Miscellaneous internal changes

  • Improved performance of the WebSocket reader -- by :user:bdraco.

    Related issues and pull requests on GitHub: #8736, #8747.


3.10.4

Bug fixes

  • Fixed decoding base64 chunk in BodyPartReader -- by :user:hyzyla.

    Related issues and pull requests on GitHub: #3867.

  • Fixed a race closing the server-side WebSocket where the close code would not reach the client -- by :user:bdraco.

    Related issues and pull requests on GitHub: #8680.

  • Fixed unconsumed exceptions raised by the WebSocket heartbeat -- by :user:bdraco.

    If the heartbeat ping raised an exception, it would not be consumed and would be logged as an warning.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.10.5 (2024-08-19)

Bug fixes

  • Fixed :meth:aiohttp.ClientResponse.json() not setting status when :exc:aiohttp.ContentTypeError is raised -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:8742.

Miscellaneous internal changes

  • Improved performance of the WebSocket reader -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:8736, :issue:8747.


3.10.4 (2024-08-17)

Bug fixes

  • Fixed decoding base64 chunk in BodyPartReader -- by :user:hyzyla.

    Related issues and pull requests on GitHub: :issue:3867.

  • Fixed a race closing the server-side WebSocket where the close code would not reach the client -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:8680.

... (truncated)

Commits

Updates cattrs from 23.2.3 to 24.1.0

Release notes

Sourced from cattrs's releases.

24.1.0

  • Potentially breaking: Unstructuring hooks for typing.Any are consistent now: values are unstructured using their runtime type. Previously this behavior was underspecified and inconsistent, but followed this rule in the majority of cases. Reverting old behavior is very dependent on the actual case; ask on the issue tracker if in doubt. (#473)
  • Minor change: Heterogeneous tuples are now unstructured into tuples instead of lists by default; this is significantly faster and widely supported by serialization libraries. (#486)
  • Minor change: cattrs.gen.make_dict_structure_fn will use the value for the prefer_attrib_converters parameter from the given converter by default now. If you're using this function directly, the old behavior can be restored by passing in the desired values explicitly. (#527 #528)
  • Introduce BaseConverter.get_structure_hook and BaseConverter.get_unstructure_hook methods. (#432 #472)
  • BaseConverter.register_structure_hook, BaseConverter.register_unstructure_hook, BaseConverter.register_unstructure_hook_factory and BaseConverter.register_structure_hook_factory can now be used as decorators and have gained new features. See here and here for more details. (#487)
  • Introduce and document the cattrs.cols module for better collection customizations. (#504 #540)
  • Enhance the cattrs.cols.is_mapping predicate function to also cover virtual subclasses of abc.Mapping. This enables map classes from libraries such as immutables or sortedcontainers to structure out-of-the-box. (#555 #556)
  • Introduce the msgspec preconf converter <cattrs.preconf.msgspec>. Only JSON is supported for now, with other formats supported by msgspec to come later. (#481)
  • The default union handler now properly takes renamed fields into account. (#472)
  • The default union handler now also handles dataclasses. (#426 #477)
  • Add support for PEP 695 type aliases. (#452)
  • Add support for PEP 696 TypeVars with defaults. (#512)
  • Add support for named tuples with type metadata (typing.NamedTuple). (#425 #491)
  • Add support for optionally un/unstructuring named tuples using dictionaries. (#425 #549)
  • The include_subclasses strategy now fetches the member hooks from the converter (making use of converter defaults) if overrides are not provided, instead of generating new hooks with no overrides. (#429 #472)
  • The preconf make_converter factories are now correctly typed. (#481)
  • The orjson preconf converter now passes through dates and datetimes to orjson while unstructuring, greatly improving speed. (#463)
  • cattrs.gen generators now attach metadata to the generated functions, making them introspectable. (#472)
  • Structure hook factories in cattrs.gen now handle recursive classes better. (#540)
  • The tagged union strategy now leaves the tags in the payload unless forbid_extra_keys is set. (#533 #534)
  • More robust support for Annotated and NotRequired in TypedDicts.

... (truncated)

Changelog

Sourced from cattrs's changelog.

24.1.0 (2024-08-28)

  • Potentially breaking: Unstructuring hooks for typing.Any are consistent now: values are unstructured using their runtime type. Previously this behavior was underspecified and inconsistent, but followed this rule in the majority of cases. Reverting old behavior is very dependent on the actual case; ask on the issue tracker if in doubt. (#473)
  • Minor change: Heterogeneous tuples are now unstructured into tuples instead of lists by default; this is significantly faster and widely supported by serialization libraries. (#486)
  • Minor change: {py:func}cattrs.gen.make_dict_structure_fn will use the value for the prefer_attrib_converters parameter from the given converter by default now. If you're using this function directly, the old behavior can be restored by passing in the desired values explicitly. (#527 #528)
  • Introduce {meth}BaseConverter.get_structure_hook and {meth}BaseConverter.get_unstructure_hook methods. (#432 #472)
  • {meth}BaseConverter.register_structure_hook, {meth}BaseConverter.register_unstructure_hook, {meth}BaseConverter.register_unstructure_hook_factory and {meth}BaseConverter.register_structure_hook_factory can now be used as decorators and have gained new features. See here and here for more details. (#487)
  • Introduce and document the {mod}cattrs.cols module for better collection customizations. (#504 #540)
  • Enhance the {func}cattrs.cols.is_mapping predicate function to also cover virtual subclasses of abc.Mapping. This enables map classes from libraries such as immutables or sortedcontainers to structure out-of-the-box. (#555 #556)
  • Introduce the msgspec {mod}preconf converter <cattrs.preconf.msgspec>. Only JSON is supported for now, with other formats supported by msgspec to come later. (#481)
  • The default union handler now properly takes renamed fields into account. (#472)
  • The default union handler now also handles dataclasses. (#426 #477)
  • Add support for PEP 695 type aliases. (#452)
  • Add support for PEP 696 TypeVars with defaults. (#512)
  • Add support for named tuples with type metadata (typing.NamedTuple). (#425 #491)
  • Add support for optionally un/unstructuring named tuples using dictionaries. (#425 #549)
  • The include_subclasses strategy now fetches the member hooks from the converter (making use of converter defaults) if overrides are not provided, instead of generating new hooks with no overrides. (#429 #472)
  • The preconf make_converter factories are now correctly typed. (#481)
  • The {class}orjson preconf converter <cattrs.preconf.orjson.OrjsonConverter> now passes through dates and datetimes to orjson while unstructuring, greatly improving speed. (#463)
  • {mod}cattrs.gen generators now attach metadata to the generated functions, making them introspectable. (#472)
  • Structure hook factories in {mod}cattrs.gen now handle recursive classes better. (#540)
  • The tagged union strategy now leaves the tags in the payload unless forbid_extra_keys is set. (#533 #534)

... (truncated)

Commits

Updates certifi from 2024.7.4 to 2024.8.30

Commits

Updates djlint from 1.34.1 to 1.35.2

Release notes

Sourced from djlint's releases.

v1.35.2

  • Unpin dependencies upper bounds.
  • Use min(cpu_count, files_count, 4) workers. Use a thread instead of a process if only one worker will be used. This gives the best performance and low resource usage.
  • Refactor the code.
  • Fix max attribute length with longer regex custom html tags (#884)
  • Fix Jinja formatting issues (#715)
  • Fix: not detecting tabs as a valid seperation between tags (#813)
  • Fix: Add ignore for sms links (#815)
  • Fix: Allow attributes on (#830)

v1.34.2

1.34.2 (2024-08-28)

Bug Fixes

  • max attribute length with longer regex custom html tags (#884) (a8e3835)
Changelog

Sourced from djlint's changelog.

[1.35.2] - 2024-08-29

  • Fix npm publishing

[1.35.1] - 2024-08-29

  • Fix npm publishing

[1.35.0] - 2024-08-29

  • Unpin dependencies upper bounds.
  • Use min(cpu_count, files_count, 4) workers. Use a thread instead of a process if only one worker will be used. This gives the best performance and low resource usage.
  • Refactor the code.
  • Fix max attribute length with longer regex custom html tags (#884)
  • Fix Jinja formatting issues (#715)
  • Fix: not detecting tabs as a valid seperation between tags (#813)
  • Fix: Add ignore for sms links (#815)
  • Fix: Allow attributes on (#830)
Commits

Updates griffe from 0.48.0 to 1.2.0

Release notes

Sourced from griffe's releases.

1.2.0

1.2.0 - 2024-08-23

Compare with 1.1.1

Features

  • Support attribute syntax in __all__ values (ad99794 by Timothée Mazzucotelli). Issue-316

1.1.1

1.1.1 - 2024-08-20

Compare with 1.1.0

Bug Fixes

  • Pre-emptively expand __all__ values and wildcard imports before firing the on_package_loaded event (21b3780 by Timothée Mazzucotelli).

1.1.0

1.1.0 - 2024-08-17

Compare with 1.0.0

Features

  • Add on_wildcard_expansion event (c6bc6fa by Timothée Mazzucotelli). Issue-282
  • Add on_alias event (a760a8c by Timothée Mazzucotelli). Issue-282
  • Pass loader to on_package_loaded hooks (7f82dc3 by Timothée Mazzucotelli).

1.0.0

1.0.0 - 2024-08-15

Compare with 0.49.0

V1! 🚀 🔥 🌈

Breaking changes

Highlights:

  • Extensions inherit from Extension, (VisitorExtension and InspectorExtension are removed)
  • Members are serialized (as_dict/JSON) as a dictionary instead of a list
  • All objects are available in the top-level griffe module, nowhere else

Removed objects:

  • all modules under the griffe package
  • the griffe.DocstringWarningCallable class
  • the griffe.When class
  • the griffe.ExtensionType type

... (truncated)

Changelog

Sourced from griffe's changelog.

1.2.0 - 2024-08-23

Compare with 1.1.1

Features

  • Support attribute syntax in __all__ values (ad99794 by Timothée Mazzucotelli). Issue-316

1.1.1 - 2024-08-20

Compare with 1.1.0

Bug Fixes

  • Pre-emptively expand __all__ values and wildcard imports before firing the on_package_loaded event (21b3780 by Timothée Mazzucotelli).

1.1.0 - 2024-08-17

Compare with 1.0.0

Features

  • Add on_wildcard_expansion event (c6bc6fa by Timothée Mazzucotelli). Issue-282
  • Add on_alias event (a760a8c by Timothée Mazzucotelli). Issue-282
  • Pass loader to on_package_loaded hooks (7f82dc3 by Timothée Mazzucotelli).

1.0.0 - 2024-08-15

Compare with 0.49.0

V1! 🚀 🔥 🌈

Breaking changes

Highlights:

  • Extensions inherit from Extension, (VisitorExtension and InspectorExtension are removed)
  • Members are serialized (as_dict/JSON) as a dictionary instead of a list
  • All objects are available in the top-level griffe module, nowhere else

Removed objects:

  • all modules under the griffe package
  • the griffe.DocstringWarningCallable class
  • the griffe.When class
  • the griffe.ExtensionType type
  • the griffe.InspectorExtension class
  • the griffe.VisitorExtension class
  • the griffe.HybridExtension extension
  • the griffe.patch_logger function

... (truncated)

Commits
  • 58eb9f4 chore: Prepare release 1.2.0
  • 6e8b3c3 docs: Summarize API in the top-level module docstring
  • e5fa798 ci: Quality
  • 22be256 docs: Don't render same API objects in multiple places
  • ad99794 feat: Support attribute syntax in __all__ values
  • 86cda59 tests: Clean up tests
  • 551b6e7 chore: Prepare release 1.1.1
  • 02706fc chore: Revert debug message about objects exposed from external modules
  • 97f3613 ci: Enable more Ruff rules
  • 21b3780 fix: Pre-emptively expand __all__ values and wildcard imports before firing...
  • Additional commits viewable in compare view

Updates idna from 3.7 to 3.8

Release notes

Sourced from idna's releases.

v3.8

What's Changed

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Full Changelog: kjd/idna@v3.7...v3.8

Changelog

Sourced from idna's changelog.

3.8 (2024-08-23) ++++++++++++++++

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Commits
  • 784c6f4 Release v3.8
  • 28c7c9e Typo fix
  • a2b41c3 Pin remainder of Github Actions flagged in code scanning
  • 1f613c5 More Github Action dependency pinning
  • a87e2b6 Update OSSF scorecard to latest version
  • 12d4dd1 Merge pull request #182 from kjd/github-pypi-actions
  • e1a1541 Pin Github Actions dependencies
  • c109d3a Merge branch 'master' into github-pypi-actions
  • f8a8de4 Do not try to build/send packages to TestPyPI for now
  • 613bdde Update regexp to move global flag to start of expression
  • Additional commits viewable in compare view

Updates ipython from 8.26.0 to 8.27.0

Commits
  • 82690a0 release 8.27.0
  • 7af1c01 Whats new 8.27 (#14508)
  • ef9d41e Whats new 8.27
  • 5c8bc51 Fix completion in indented lines dropping prefix when jedi is disabled (#14474)
  • 6bde8f6 Don't force matplotlib backend names to be lowercase (#14475)
  • d5762c1 Fix showing SystemExit exception raise inside except handler (#14503)
  • 82eba44 Fix some tests on Python 3.13 RC1 (#14504)
  • 2e34c77 Autoformat with darker
  • 44bffab Relax string checks in test_pinfo_docstring_dynamic
  • 7ea81cd Fix test_decorator_skip_with_breakpoint() on Python 3.13
  • Additional commits viewable in compare view

Updates markdown from 3.6 to 3.7

Release notes

Sourced from markdown's releases.

Release 3.7

Changed

Refactor abbr Extension

A new AbbrTreeprocessor has been introduced, which replaces the now deprecated AbbrInlineProcessor. Abbreviation processing now happens after Attribute Lists, avoiding a conflict between the two extensions (#1460).

The AbbrPreprocessor class has been renamed to AbbrBlockprocessor, which better reflects what it is. AbbrPreprocessor has been deprecated.

A call to Markdown.reset() now clears all previously defined abbreviations.

Abbreviations are now sorted by length before executing AbbrTreeprocessor to ensure that multi-word abbreviations are implemented even if an abbreviation exists for one of those component words. (#1465)

Abbreviations without a definition are now ignored. This avoids applying abbr tags to text without a title value.

Added an optional glossary configuration option to the abbreviations extension. This provides a simple and efficient way to apply a dictionary of abbreviations to every page.

Abbreviations can now be disabled by setting their definition to "" or ''. This can be useful when using the glossary option.

Fixed

  • Fixed links to source code on GitHub from the documentation (#1453).
Changelog

Sourced from markdown's changelog.

[3.7] -- 2024-08-16

Changed

Refactor abbr Extension

A new AbbrTreeprocessor has been introduced, which replaces the now deprecated AbbrInlineProcessor. Abbreviation processing now happens after Attribute Lists, avoiding a conflict between the two extensions (#1460).

The AbbrPreprocessor class has been renamed to AbbrBlockprocessor, which better reflects what it is. AbbrPreprocessor has been deprecated.

A call to Markdown.reset() now clears all previously defined abbreviations.

Abbreviations are now sorted by length before executing AbbrTreeprocessor to ensure that multi-word abbreviations are implemented even if an abbreviation exists for one of those component words. (#1465)

Abbreviations without a definition are now ignored. This avoids applying abbr tags to text without a title value.

Added an optional glossary configuration option to the abbreviations extension. This provides a simple and efficient way to apply a dictionary of abbreviations to every page.

Abbreviations can now be disabled by setting their definition to "" or ''. This can be useful when using the glossary option.

Fixed

  • Fixed links to source code on GitHub from the documentation (#1453).
Commits
  • da03cd6 Bump version to 3.7
  • bd836a1 Update griffe_extensions to support Griffe v 1.0.
  • 33359fa Abbr Extension: Definition Sorting and Glossary storage
  • ec8c305 Refactor abbr Extension
  • 993b57b Fixed links to source code on GitHub from the documentation
  • See full diff in compare view

Updates mkdocs from 1.6.0 to 1.6.1

Release notes

Sourced from mkdocs's releases.

1.6.1

Version 1.6.1 (Friday 30th August, 2024)

Fixed

  • Fix build error when environment variable SOURCE_DATE_EPOCH=0 is set. #3795
  • Fix build error when mkdocs_theme.yml config is empty. #3700
  • Support python -W and PYTHONWARNINGS instead of overriding the configuration. #3809
  • Support running with Docker under strict mode, by removing 0.0.0.0 dev server warning. #3784
  • Drop unnecessary changefreq from sitemap.xml. #3629
  • Fix JavaScript console error when closing menu dropdown. #3774
  • Fix JavaScript console error that occur on repeated clicks. #3730
  • Fix JavaScript console error that can occur on dropdown selections. #3694

Added

  • Added translations for Dutch. #3804
  • Added and updated translations for Chinese (Simplified). #3684
Commits

Updates mkdocs-autorefs from 1.0.1 to 1.1.0

Release notes

Sourced from mkdocs-autorefs's releases.

1.1.0

1.1.0 - 2024-08-20

Compare with 1.0.1

Deprecations

  • AUTO_REF_RE is renamed AUTOREF_RE (and updated for an improved version of fix_refs)
  • AutoRefInlineProcessor is renamed AutorefsInlineProcessor

Features

Bug Fixes

  • Only log "Markdown anchors feature enabled" once (1c9bda1 by Timothée Mazzucotelli). Issue-44

Code Refactoring

  • Use a custom autoref HTML tag (e142023 by Timothée Mazzucotelli). PR-48
  • Rename AutoRefInlineProcessor to AutorefsInlineProcessor (ffcaa01 by Timothée Mazzucotelli).
  • Attach name to processors for easier retrieval (036b825 by Timothée Mazzucotelli).
Changelog

Sourced from mkdocs-autorefs's changelog.

1.1.0 - 2024-08-20

Compare with 1.0.1

Deprecations

  • AUTO_REF_RE is renamed AUTOREF_RE (and updated for an improved version of fix_refs)
  • AutoRefInlineProcessor is renamed AutorefsInlineProcessor

Features

Bug Fixes

  • Only log "Markdown anchors feature enabled" once (1c9bda1 by Timothée Mazzucotelli). Issue-44

Code Refactoring

  • Use a custom autoref HTML tag (e142023 by Timothée Mazzucotelli). PR-48
  • Rename AutoRefInlineProcessor to AutorefsInlineProcessor (ffcaa01 by Timothée Mazzucotelli).
  • Attach name to processors for easier retrieval (036b825 by Timothée Mazzucotelli).
Commits
  • 8b43e88 chore: Prepare release 1.1.0
  • 57998bf chore: Template upgrade
  • 1c9bda1 fix: Only log "Markdown anchors feature enabled" once
  • 4f896a5 docs: Fix typo
  • c630354 feat: Warn when multiple URLs are found for the same identifier
  • e142023 refactor: Use a custom autoref HTML tag
  • 44605ec chore: Template upgrade
  • ffcaa01 refactor: Rename AutoRefInlineProcessor to AutorefsInlineProcessor
  • ae87ff7 tests: Increase minimum pymdown-extensions version required
  • 531fbad chore: Template upgrade
  • Additional commits viewable in compare view

Updates mkdocs-include-markdown-plugin from 6.2.1 to 6.2.2

Release notes

Sourced from mkdocs-include-markdown-plugin's releases.

v6.2.2

Enhancements

  • Add official support for Python 3.13.
  • Relax wcmatch dependency.
Commits

Updates mkdocs-material from 9.5.31 to 9.5.33

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.5.33

  • Fixed

…dates

Bumps the development-dependencies group with 22 updates in the /config/requirements directory:

| Package | From | To |
| --- | --- | --- |
| [aiohappyeyeballs](https://github.com/aio-libs/aiohappyeyeballs) | `2.3.5` | `2.4.0` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.2` | `3.10.5` |
| [cattrs](https://github.com/python-attrs/cattrs) | `23.2.3` | `24.1.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
| [djlint](https://github.com/djlint/djLint) | `1.34.1` | `1.35.2` |
| [griffe](https://github.com/mkdocstrings/griffe) | `0.48.0` | `1.2.0` |
| [idna](https://github.com/kjd/idna) | `3.7` | `3.8` |
| [ipython](https://github.com/ipython/ipython) | `8.26.0` | `8.27.0` |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.6` | `3.7` |
| [mkdocs](https://github.com/mkdocs/mkdocs) | `1.6.0` | `1.6.1` |
| [mkdocs-autorefs](https://github.com/mkdocstrings/autorefs) | `1.0.1` | `1.1.0` |
| [mkdocs-include-markdown-plugin](https://github.com/mondeja/mkdocs-include-markdown-plugin) | `6.2.1` | `6.2.2` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.31` | `9.5.33` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.10.7` | `1.10.9` |
| [model-bakery](https://github.com/model-bakers/model_bakery) | `1.19.1` | `1.19.5` |
| [mypy](https://github.com/python/mypy) | `1.11.1` | `1.11.2` |
| [paginate](https://github.com/Signum/paginate) | `0.5.6` | `0.5.7` |
| [ruff](https://github.com/astral-sh/ruff) | `0.5.7` | `0.6.3` |
| [ruff-lsp](https://github.com/astral-sh/ruff-lsp) | `0.0.54` | `0.0.55` |
| [watchdog](https://github.com/gorakhargosh/watchdog) | `4.0.1` | `5.0.0` |
| [wcmatch](https://github.com/facelessuser/wcmatch) | `8.5.2` | `9.0` |
| [yarl](https://github.com/aio-libs/yarl) | `1.9.4` | `1.9.6` |



Updates `aiohappyeyeballs` from 2.3.5 to 2.4.0
- [Release notes](https://github.com/aio-libs/aiohappyeyeballs/releases)
- [Changelog](https://github.com/aio-libs/aiohappyeyeballs/blob/main/CHANGELOG.md)
- [Commits](aio-libs/aiohappyeyeballs@v2.3.5...v2.4.0)

Updates `aiohttp` from 3.10.2 to 3.10.5
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.10.2...v3.10.5)

Updates `cattrs` from 23.2.3 to 24.1.0
- [Release notes](https://github.com/python-attrs/cattrs/releases)
- [Changelog](https://github.com/python-attrs/cattrs/blob/main/HISTORY.md)
- [Commits](python-attrs/cattrs@v23.2.3...v24.1.0)

Updates `certifi` from 2024.7.4 to 2024.8.30
- [Commits](certifi/python-certifi@2024.07.04...2024.08.30)

Updates `djlint` from 1.34.1 to 1.35.2
- [Release notes](https://github.com/djlint/djLint/releases)
- [Changelog](https://github.com/djlint/djLint/blob/master/CHANGELOG.md)
- [Commits](djlint/djLint@v1.34.1...v1.35.2)

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

Updates `idna` from 3.7 to 3.8
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.7...v3.8)

Updates `ipython` from 8.26.0 to 8.27.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.26.0...8.27.0)

Updates `markdown` from 3.6 to 3.7
- [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.6...3.7)

Updates `mkdocs` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/mkdocs/mkdocs/releases)
- [Commits](mkdocs/mkdocs@1.6.0...1.6.1)

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

Updates `mkdocs-include-markdown-plugin` from 6.2.1 to 6.2.2
- [Release notes](https://github.com/mondeja/mkdocs-include-markdown-plugin/releases)
- [Commits](mondeja/mkdocs-include-markdown-plugin@v6.2.1...v6.2.2)

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

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

Updates `model-bakery` from 1.19.1 to 1.19.5
- [Release notes](https://github.com/model-bakers/model_bakery/releases)
- [Changelog](https://github.com/model-bakers/model_bakery/blob/main/CHANGELOG.md)
- [Commits](model-bakers/model_bakery@1.19.1...1.19.5)

Updates `mypy` from 1.11.1 to 1.11.2
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.1...v1.11.2)

Updates `paginate` from 0.5.6 to 0.5.7
- [Changelog](https://github.com/Pylons/paginate/blob/master/CHANGELOG.txt)
- [Commits](Pylons/paginate@0.5.6...0.5.7)

Updates `ruff` from 0.5.7 to 0.6.3
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.5.7...0.6.3)

Updates `ruff-lsp` from 0.0.54 to 0.0.55
- [Release notes](https://github.com/astral-sh/ruff-lsp/releases)
- [Commits](astral-sh/ruff-lsp@v0.0.54...v0.0.55)

Updates `watchdog` from 4.0.1 to 5.0.0
- [Release notes](https://github.com/gorakhargosh/watchdog/releases)
- [Changelog](https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst)
- [Commits](gorakhargosh/watchdog@v4.0.1...v5.0.0)

Updates `wcmatch` from 8.5.2 to 9.0
- [Release notes](https://github.com/facelessuser/wcmatch/releases)
- [Commits](facelessuser/wcmatch@8.5.2...9.0)

Updates `yarl` from 1.9.4 to 1.9.6
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.9.4...v1.9.6)

---
updated-dependencies:
- dependency-name: aiohappyeyeballs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: aiohttp
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: cattrs
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: certifi
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: djlint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: griffe
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: idna
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: markdown
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mkdocs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mkdocs-autorefs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mkdocs-include-markdown-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mkdocstrings-python
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: model-bakery
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: paginate
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ruff-lsp
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: watchdog
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: wcmatch
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: yarl
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 31, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 31, 2024

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

@dependabot dependabot bot closed this Aug 31, 2024
@dependabot dependabot bot deleted the dependabot/pip/config/requirements/development-dependencies-7ac5677e7a branch August 31, 2024 14:36
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.

0 participants