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 required group across 1 directory with 19 updates #316

Merged
merged 2 commits into from
Sep 3, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Updates the requirements on watchfiles, flake8, pydoclint, black, markdown, frequenz-repo-config[lib], mike, mkdocs-include-markdown-plugin, mkdocs-material, mkdocstrings[python], mkdocstrings-python, mypy, types-markdown, pylint, async-solipsism, frequenz-repo-config[extra-lint-examples], hypothesis, pytest and pytest-asyncio to permit the latest version.
Updates watchfiles to 0.24.0

Release notes

Sourced from watchfiles's releases.

v0.24.0 2024-08-28

What's Changed

New Contributors

Full Changelog: samuelcolvin/watchfiles@v0.23.0...v0.24.0

Commits

Updates flake8 from 7.1.0 to 7.1.1

Commits

Updates pydoclint from 0.5.3 to 0.5.6

Release notes

Sourced from pydoclint's releases.

0.5.6

What's Changed

Full Changelog: jsh9/pydoclint@0.5.5...0.5.6

0.5.5

What's Changed

Full Changelog: jsh9/pydoclint@0.5.4...0.5.5

0.5.4

What's Changed

Full Changelog: jsh9/pydoclint@0.5.3...0.5.4

Changelog

Sourced from pydoclint's changelog.

[0.5.6] - 2024-07-17

[0.5.5] - 2024-07-15

  • Fixed

  • Changed

    • Changed the default of --treat-property-methods-as-class-attributes to False to restore backward compatibility
  • Full diff

[0.5.4] - 2024-07-14

  • Added

    • An option --should-document-private-class-attributes (if False, private class attributes should not appear in the docstring)
    • An option --treat-property-methods-as-class-attributes (if True, @property methods are treated like class attributes and need to be documented in the class docstring)
  • Full diff

Commits
  • 94efc5f Stop trying to check folder with names ending in .py (#155)
  • 0247ef5 Improve class attr comparison logic (#154)
  • 0b750d5 Add option to treat property methods as class attributes (#153)
  • 3c39d2e Add an option for private class attributes (#149)
  • See full diff in compare view

Updates black from 24.4.2 to 24.8.0

Release notes

Sourced from black's releases.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Changelog

Sourced from black's changelog.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Commits
  • b965c2a Prepare release 24.8.0 (#4426)
  • 9ccf279 Document find_project_root ignoring pyproject.toml without [tool.black]...
  • 14b6e61 fix: Enhace black efficiently to skip directories listed in .gitignore (#4415)
  • b1c4dd9 fix: respect braces better in f-string parsing (#4422)
  • 4b4ae43 Fix incorrect linenos on fstring tokens with escaped newlines (#4423)
  • 7fa1faf docs: fix the installation command of extra for blackd (#4413)
  • 8827acc Bump sphinx from 7.3.7 to 7.4.0 in /docs (#4404)
  • b0da11d Bump furo from 2024.5.6 to 2024.7.18 in /docs (#4409)
  • 721dff5 fix: avoid formatting backslash strings inside f-strings (#4401)
  • 7e2afc9 Update actions/checkout to v4 to stop node deprecation warnings (#4379)
  • 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 frequenz-repo-config[lib] from 0.9.2 to 0.10.0

Release notes

Sourced from frequenz-repo-config[lib]'s releases.

v0.10.0

Frequenz Repository Configuration Release Notes

Summary

This release includes quite a few enhancements and bug fixes for the cookiecutter template, but most importantly a new script for migrating to new templates, generating the templates is no longer needed for upgrading.

Upgrading

Cookiecutter template

  • A new script for migrating to new templates (instead of regenerating all files) is provided. It can't handle the upgrade 100% automatically, but should make the migration process much easier and less error prone.

    To run it, the simplest way is to fetch it from GitHub and run it directly:

    curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh | sh

    Make sure the version you want to migrate to is correct in the URL.

    For jumping multiple versions you should run the script multiple times, once for each version.

    And remember to follow any manual instructions for each run.

New Features

  • A new GitHub ruleset is provided to configure the merge queue, so branch protection rules are not needed anymore.

Enhancements

  • The generated docs now show the symbol type in the table of contents.

Cookiecutter template

  • The Markdown dependency was bumped so we don't need to add a type: ignore due to incorrect type hints.
  • The generated docs now show the symbol type in the table of contents.
  • The dependecies were updated to the latest versions.
  • Disabled some pylint checks that are already checked by other tools.
  • The generated documentation now uses symlinks for aliases, which allows deep linking when using aliases too.

Bug Fixes

  • The code example extractor relied on a bug in the upstream sybil project that was recently fixed, thus our code also needed to be fixed.

Cookiecutter template

  • Fixed a bug where the pip cache post action fails in the CI workflow because of permissions issues.
  • Make the nox-cross-arch-all job fail if any nox-cross-arch matrix job fails.
  • Fix credentials not being passed to the test-installation job in the CI workflow.

... (truncated)

Changelog

Sourced from frequenz-repo-config[lib]'s changelog.

Frequenz Repository Configuration Release Notes

Summary

This release includes quite a few enhancements and bug fixes for the cookiecutter template, but most importantly a new script for migrating to new templates, generating the templates is no longer needed for upgrading.

Upgrading

Cookiecutter template

  • A new script for migrating to new templates (instead of regenerating all files) is provided. It can't handle the upgrade 100% automatically, but should make the migration process much easier and less error prone.

    To run it, the simplest way is to fetch it from GitHub and run it directly:

    curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh | sh

    Make sure the version you want to migrate to is correct in the URL.

    For jumping multiple versions you should run the script multiple times, once for each version.

    And remember to follow any manual instructions for each run.

New Features

  • A new GitHub ruleset is provided to configure the merge queue, so branch protection rules are not needed anymore.

Enhancements

  • The generated docs now show the symbol type in the table of contents.

Cookiecutter template

  • The Markdown dependency was bumped so we don't need to add a type: ignore due to incorrect type hints.
  • The generated docs now show the symbol type in the table of contents.
  • The dependecies were updated to the latest versions.
  • Disabled some pylint checks that are already checked by other tools.
  • The generated documentation now uses symlinks for aliases, which allows deep linking when using aliases too.

Bug Fixes

  • The code example extractor relied on a bug in the upstream sybil project that was recently fixed, thus our code also needed to be fixed.

Cookiecutter template

  • Fixed a bug where the pip cache post action fails in the CI workflow because of permissions issues.
  • Make the nox-cross-arch-all job fail if any nox-cross-arch matrix job fails.
  • Fix credentials not being passed to the test-installation job in the CI workflow.
  • Make sure credentials are configured for all jobs that check out the repository in the CI workflow.

... (truncated)

Commits
  • bfd45a8 Add pull-requests read permission to the release-notes-check workflow (#289)
  • 6aa6bc0 Prepare for the v0.10.0 release (#290)
  • 297b184 Update version in the template pyproject.toml
  • 632283d Prepare the release notes for v0.10.0 release
  • 1778ff8 Add pull-requests read permission to the release-notes-check workflow
  • 2ac253a Disable the new check-class-attributes check in pydoclint 0.5.3 (#288)
  • 1660756 Disable the new check-class-attributes check in pydoclint 0.5.3
  • 327879b Fix credentials not passed or configured the CI workflow (#286)
  • 6195bc7 Update release notes
  • bef233c Remove the TODOs from the migration
  • Additional commits viewable in compare view

Updates mike from 2.1.2 to 2.1.3

Release notes

Sourced from mike's releases.

v2.1.3

Bug fixes

  • When deploying using a deploy prefix, only delete stale versions of the docs within that prefix
Changelog

Sourced from mike's changelog.

v2.1.3 (2024-08-12)

Bug fixes

  • When deploying using a deploy prefix, only delete stale versions of the docs within that prefix

Commits
  • c4e9608 Update version to 2.1.3
  • 3b19e27 Announce the previous change
  • dd9826a Consult deploy prefix when deleting files during deploy; resolves #227
  • 91cf5ee Properly escape parameters in regex
  • 90cf131 Update version to 2.2.0.dev0
  • See full diff 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.27 to 9.5.34

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.5.34

  • Updated Mermaid.js to version 11 (latest)

Thanks go to @​manselmi for their contributions

mkdocs-material-9.5.33

  • Fixed #7453: Incorrect position of tooltip when sorting table

mkdocs-material-9.5.32

  • Fixed RXSS vulnerability via deep link in search results
  • Added support for fetching latest release from GitLab

Thanks go to @​joaopalmeiro for their contributions

mkdocs-material-9.5.31

  • Fixed #7405: DockerHub missing images > 9.5.27 due to change in Alpine/APK

mkdocs-material-9.5.30

  • Fixed #7380: Navigation icons disappearing on hover in Safari
  • Fixed #7367: Blog readtime computation includes SVG text content

Thanks go to @​sisp for their contributions

mkdocs-material-9.5.29

  • Updated Galician translations
  • Fixed #7362: Annotations in figure captions rendering incorrectly

Thanks go to @​mmontes11 for their contributions

mkdocs-material-9.5.28

  • Fixed #7313: Improved tooltips mounted in sidebar when feature is disabled
Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.5.34 (2024-08-31)

  • Updated Mermaid.js to version 11 (latest)

mkdocs-material-9.5.33 (2024-08-23)

  • Fixed #7453: Incorrect position of tooltip when sorting table

mkdocs-material-9.5.32 (2024-08-19)

  • Fixed RXSS vulnerability via deep link in search results
  • Added support for fetching latest release from GitLab

mkdocs-material-9.5.31+insiders-4.53.12 (2024-08-02)

  • Fixed #7410: Instant previews jump on content tabs with anchor links
  • Fixed #7408: Instant previews jump on content tabs

mkdocs-material-9.5.31 (2024-08-02)

  • Fixed #7405: DockerHub missing images > 9.5.27 due to change in Alpine/APK

mkdocs-material-9.5.30 (2024-07-23)

  • Fixed #7380: Navigation icons disappearing on hover in Safari
  • Fixed #7367: Blog readtime computation includes SVG text content

mkdocs-material-9.5.29 (2024-07-14)

  • Updated Galician translations
  • Fixed #7362: Annotations in figure captions rendering incorrectly

mkdocs-material-9.5.28 (2024-07-02)

  • Fixed #7313: Improved tooltips mounted in sidebar when feature is disabled

mkdocs-material-9.5.27 (2024-06-16)

  • Updated Estonian translations

mkdocs-material-9.5.26 (2024-06-06)

  • Fixed #7232: Tab switches on scroll when linking tabs (9.5.19 regression)
  • Fixed #7230: Blog author avatar broken when referring to local file

mkdocs-material-9.5.25+insiders-4.53.11 (2024-05-27)

  • Fixed projects plugin crashing when serving before building subprojects

mkdocs-material-9.5.25 (2024-05-27)

... (truncated)

Commits

Updates mkdocstrings[python] from 0.25.1 to 0.26.0

Release notes

Sourced from mkdocstrings[python]'s releases.

0.26.0

0.26.0 - 2024-09-02

Compare with 0.25.2

Build

  • Upgrade Python-Markdown lower bound to 3.6 (28565f9 by Timothée Mazzucotelli).

Dependencies

  • Depend on mkdocs-autorefs v1 (33aa573 by Timothée Mazzucotelli).

Features

0.25.2

0.25.2 - 2024-07-25

Compare with 0.25.1

Code Refactoring

  • Give precedence to Markdown heading level (##) (2e5f89e by Timothée Mazzucotelli).
Changelog

Sourced from mkdocstrings[python]'s changelog.

0.26.0 - 2024-09-02

Compare with 0.25.2

Build

  • Upgrade Python-Markdown lower bound to 3.6 (28565f9 by Timothée Mazzucotelli).

Dependencies

  • Depend on mkdocs-autorefs v1 (33aa573 by Timothée Mazzucotelli).

Features

0.25.2 - 2024-07-25

Compare with 0.25.1

Code Refactoring

  • Give precedence to Markdown heading level (##) (2e5f89e by Timothée Mazzucotelli).
Commits
  • b1aa042 chore: Prepare release 0.26.0
  • b63e726 feat: Allow hooking into autorefs when converting Markdown docstrings
  • 3c878b7 chore: Upgrade mkdocs-redirects lower bound to avoid deprecation warning
  • 28565f9 build: Upgrade Python-Markdown lower bound to 3.6
  • 52fad11 style: Format
  • c6ca522 docs: Fix dead link
  • 8041ef3 docs: Update code highlight lines
  • 4787d03 docs: Add FastAPI to "Used by" section in readme
  • 4a47f4f docs: Update handlers lists
  • d01d6f5 docs: Don't auto-highlight inline code
  • Additional commits viewable in compare view

Updates mkdocstrings-python from 1.10.5 to 1.10.9

Release notes

Sourced from mkdocstrings-python's releases.

1.10.9

1.10.9 - 2024-08-30

Compare with 1.10.8

Build

  • Explicitly depend on mkdocs-autorefs to be able to specify lower bound (2299ab5 by Timothée Mazzucotelli).

Code Refactoring

  • Use new autorefs syntax (68cb72f by Timothée Mazzucotelli).

1.10.8

1.10.8 - 2024-08-14

Compare with 1.10.7

Build

  • Depend on Griffe 0.49 (a87dcad by Timothée Mazzucotelli).

1.10.7

1.10.7 - 2024-07-25

Compare with 1.10.6

Packaging

  • Include tests and all relevant files for downstream packaging in source distribution

1.10.6

1.10.6 - 2024-07-25

Compare with 1.10.5

Bug Fixes

  • Fix condition to display members (check all members, not just non-inherited ones) (3d838a9 by Timothée Mazzucotelli).

Code Refactoring

  • Update code for Griffe 0.48 (removing deprecation warnings) (eff10cc by Timothée Mazzucotelli). Issue-173
Changelog

Sourced from mkdocstrings-python's changelog.

1.10.9 - 2024-08-30

Compare with 1.10.8

Build

  • Explicitly depend on mkdocs-autorefs to be able to specify lower bound (2299ab5 by Timothée Mazzucotelli).

Code Refactoring

  • Use new autorefs syntax (68cb72f by Timothée Mazzucotelli).

1.10.8 - 2024-08-14

Compare with 1.10.7

Build

  • Depend on Griffe 0.49 (a87dcad by Timothée Mazzucotelli).

1.10.7 - 2024-07-25

Compare with 1.10.6

Packaging

  • Include tests and all relevant files for downstream packaging in source distribution

1.10.6 - 2024-07-25

Compare with 1.10.5

Bug Fixes

  • Fix condition to display members (check all members, not just non-inherited ones) (3d838a9 by Timothée Mazzucotelli).

Code Refactoring

  • Update code for Griffe 0.48 (removing deprecation warnings) (eff10cc by Timothée Mazzucotelli). Issue-173
Commits
  • 2d59cdb chore: Prepare release 1.10.9
  • 68cb72f refactor: Use new autorefs syntax
  • 2299ab5 build: Explicitly depend on mkdocs-autorefs to be able to specify lower bound
  • 81d698e chore: Clean up check duty
  • a541b5b chore: Prepare release 1.10.8
  • a87dcad build: Depend on Griffe 0.49
  • 41de4d1 chore: Prepare release 1.10.7
  • c49bde8 chore: Template upgrade
  • 0817708 chore: Prepare release 1.10.6
  • eff10cc refactor: Update code for Griffe 0.48 (removing deprecation warnings)
  • Additional commits viewable in compare view

Updates mypy from 1.10.1 to 1.11.2

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.11

We’ve just uploaded mypy 1.11 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Support Python 3.12 Syntax for Generics (PEP 695)

Mypy now supports the new type parameter syntax introduced in Python 3.12 (PEP 695). This feature is still experimental and must be enabled with the --enable-incomplete-feature=NewGenericSyntax flag, or with enable_incomplete_feature = NewGenericSyntax in the mypy configuration file. We plan to enable this by default in the next mypy feature release.

This example demonstrates the new syntax:

# Generic function
def f[T](https://github.com/python/mypy/blob/master/x: T) -> T: ...
reveal_type(f(1))  # Revealed type is 'int'
Generic class
class C[T]:
def init(self, x: T) -> None:
self.x = x
c = C('a')
reveal_type(c.x)  # Revealed type is 'str'
Type alias
type A[T] = C[list[T]]

This feature was contributed by Jukka Lehtosalo.

Support for functools.partial

Mypy now type checks uses of functools.partial. Previously mypy would accept arbitrary arguments.

This example will now produce an error:

from functools import partial
</tr></table> 

... (truncated)

Commits
  • 789f02c Bump version to 1.11.2
  • 917cc75 An alternative fix for a union-like literal string (#17639)
  • 7d805b3 Unwrap TypedDict item types before storing (#17640)
  • 32675dd Revert "Fix Literal strings containing pipe characters" (#17638)
  • 778542b Revert "Fix RawExpressionType.accept crash with --cache-fine-grained" (#1...
  • 14ab742 Bump version to 1.11.2+dev
  • 570b90a Bump version to 1.11
  • b3a102e Fix RawExpressionType.accept crash with --cache-fine-grained (#17588)
  • aec04c7 Fix PEP 604 isinstance caching (#17563)
  • cb44e4d Fix typing.TypeAliasType being undefined on python < 3.12 (#17558)
  • Additional commits viewable in compare view

Updates types-markdown from 3.6.0.20240316 to 3.7.0.20240822

Commits

Updates pylint from 3.2.5 to 3.2.7

Commits

Updates async-solipsism from 0.6 to 0.7

Commits

Updates frequenz-repo-config[extra-lint-examples] from 0.9.2 to 0.10.0

Release notes

Sourced from frequenz-repo-config[extra-lint-examples]'s releases.

v0.10.0

Frequenz Repository Configuration Release Notes

Summary

This release includes quite a few enhancements and bug fixes for the cookiecutter template, but most importantly a new script for migrating to new templates, generating the templates is no longer needed for upgrading.

Upgrading

Cookiecutter template

  • A new script for migrating to new templates (instead of regenerating all files) is provided. It can't handle the upgrade 100% automatically, but should make the migration process much easier and less error prone.

    To run it, the simplest way is to fetch it from GitHub and run it directly:

    curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh | sh

    Make sure the version you want to migrate to is correct in the URL.

    For jumping multiple versions you should run the script multiple times, once for each version.

    And remember to follow any manual instructions for each run.

New Features

  • A new GitHub ruleset is provided to configure the merge queue, so branch protection rules are not needed anymore.

Enhancements

  • The generated docs now show the symbol type in the table of contents.

Cookiecutter template

  • The Markdown dependency was bumped so we don't need to add a type: ignore due to incorrect type hints.
  • The generated docs now show the symbol type in the table of contents.
  • The dependecies were updated to the latest versions.
  • Disabled some pylint checks that are already checked by other tools.
  • The generated documentation now uses symlinks for aliases, which allows deep linking when using aliases too.

Bug Fixes

  • The code example extractor relied on a bug in the upstream sybil project that was recently fixed, thus our code also needed to be fixed.

Cookiecutter template

  • Fixed a bug where the pip cache post action fails in the CI workflow because of permissions issues.
  • Make the nox-cross-arch-all job fail if any nox-cross-arch matrix job fails.
  • Fix credentials not being passed to the test-installation job in the CI workflow.

... (truncated)

Changelog

Sourced from frequenz-repo-config[extra-lint-examples]'s changelog.

Frequenz Repository Configuration Release Notes

Summary

This release includes quite a few enhancements and bug fixes for the cookiecutter template, but most importantly a new script for migrating to new templates, generating the templates is no longer needed for upgrading.

Upgrading

Cookiecutter template

  • A new script for migrating to new templates (instead of regenerating all files) is provided. It can't handle the upgrade 100% automatically, but should make the migration process much easier and less error prone.

    To run it, the simplest way is to fetch it from GitHub and run it directly:

    curl...
    Description has been truncated

Updates the requirements on [watchfiles](https://github.com/samuelcolvin/watchfiles), [flake8](https://github.com/pycqa/flake8), [pydoclint](https://github.com/jsh9/pydoclint), [black](https://github.com/psf/black), [markdown](https://github.com/Python-Markdown/markdown), [frequenz-repo-config[lib]](https://github.com/frequenz-floss/frequenz-repo-config-python), [mike](https://github.com/jimporter/mike), [mkdocs-include-markdown-plugin](https://github.com/mondeja/mkdocs-include-markdown-plugin), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [mkdocstrings-python](https://github.com/mkdocstrings/python), [mypy](https://github.com/python/mypy), [types-markdown](https://github.com/python/typeshed), [pylint](https://github.com/pylint-dev/pylint), [async-solipsism](https://github.com/bmerry/async-solipsism), [frequenz-repo-config[extra-lint-examples]](https://github.com/frequenz-floss/frequenz-repo-config-python), [hypothesis](https://github.com/HypothesisWorks/hypothesis), [pytest](https://github.com/pytest-dev/pytest) and [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version.

Updates `watchfiles` to 0.24.0
- [Release notes](https://github.com/samuelcolvin/watchfiles/releases)
- [Commits](samuelcolvin/watchfiles@v0.15.0...v0.24.0)

Updates `flake8` from 7.1.0 to 7.1.1
- [Commits](PyCQA/flake8@7.1.0...7.1.1)

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

Updates `black` from 24.4.2 to 24.8.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.4.2...24.8.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 `frequenz-repo-config[lib]` from 0.9.2 to 0.10.0
- [Release notes](https://github.com/frequenz-floss/frequenz-repo-config-python/releases)
- [Changelog](https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.10.0/RELEASE_NOTES.md)
- [Commits](frequenz-floss/frequenz-repo-config-python@v0.9.2...v0.10.0)

Updates `mike` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/jimporter/mike/releases)
- [Changelog](https://github.com/jimporter/mike/blob/master/CHANGES.md)
- [Commits](jimporter/mike@v2.1.2...v2.1.3)

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.27 to 9.5.34
- [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.27...9.5.34)

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

Updates `mkdocstrings-python` from 1.10.5 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.5...1.10.9)

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

Updates `types-markdown` from 3.6.0.20240316 to 3.7.0.20240822
- [Commits](https://github.com/python/typeshed/commits)

Updates `pylint` from 3.2.5 to 3.2.7
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.5...v3.2.7)

Updates `async-solipsism` from 0.6 to 0.7
- [Commits](https://github.com/bmerry/async-solipsism/commits)

Updates `frequenz-repo-config[extra-lint-examples]` from 0.9.2 to 0.10.0
- [Release notes](https://github.com/frequenz-floss/frequenz-repo-config-python/releases)
- [Changelog](https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.10.0/RELEASE_NOTES.md)
- [Commits](frequenz-floss/frequenz-repo-config-python@v0.9.2...v0.10.0)

Updates `hypothesis` from 6.104.2 to 6.111.2
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.104.2...hypothesis-python-6.111.2)

Updates `pytest` from 8.2.2 to 8.3.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.2.2...8.3.2)

Updates `pytest-asyncio` from 0.23.7 to 0.24.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.23.7...v0.24.0)

---
updated-dependencies:
- dependency-name: watchfiles
  dependency-type: direct:production
  dependency-group: required
- dependency-name: flake8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: pydoclint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: frequenz-repo-config[lib]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: mike
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: mkdocs-include-markdown-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: mkdocstrings[python]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: mkdocstrings-python
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: types-markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: required
- dependency-name: async-solipsism
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: frequenz-repo-config[extra-lint-examples]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: hypothesis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
- dependency-name: pytest-asyncio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: required
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner September 1, 2024 23:57
@dependabot dependabot bot added the part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) label Sep 1, 2024
@dependabot dependabot bot requested a review from shsms September 1, 2024 23:57
@dependabot dependabot bot added the type:tech-debt Improves the project without visible changes for users label Sep 1, 2024
Signed-off-by: Leandro Lucarella <luca-frequenz@llucax.com>
@llucax llucax self-assigned this Sep 3, 2024
@llucax
Copy link
Contributor

llucax commented Sep 3, 2024

Updated files based on repo-config 0.10.0. Will force-merge when tests pass if there are no other approvals (I can't approve because I pushed last) as this was applied to many other repos already.

@llucax llucax merged commit 6d1769f into v1.x.x Sep 3, 2024
16 checks passed
@llucax llucax deleted the dependabot/pip/required-43f7c74af5 branch September 3, 2024 06:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) type:tech-debt Improves the project without visible changes for users
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant