mjpieters / aiolimiter

An efficient implementation of a rate limiter for asyncio.
https://aiolimiter.readthedocs.io/en/latest/
MIT License
488 stars 21 forks source link

chore(deps-dev): bump towncrier from 23.11.0 to 24.7.0 #262

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps towncrier from 23.11.0 to 24.7.0.

Release notes

Sourced from towncrier's releases.

Towncrier 24.7.0 (2024-07-31)

Features

  • towncrier build now handles removing news fragments which are not part of the git repository. For example, uncommitted or unstaged files. (#357)

  • Inferring the version of a Python package now tries to use the metadata of the installed package before importing the package explicitly (which only looks for [package].__version__). (#432)

  • If no filename is given when doing towncrier create, interactively ask for the issue number and fragment type (and then launch an interactive editor for the fragment content).

    Now by default, when creating a fragment it will be appended with the filename option's extension (unless an extension is explicitly provided). For example, towncrier create 123.feature will create news/123.feature.rst. This can be changed in configuration file by setting add_extension = false.

    A new line is now added by default to the end of the fragment contents. This can be reverted in the configuration file by setting add_newline = false. (#482)

  • The temporary file towncrier create creates now uses the correct .rst or .md extension, which may help your editor with with syntax highlighting. (#594)

  • Running towncrier will now traverse back up directories looking for the configuration file. (#601)

  • The towncrier create action now uses sections defined in your config (either interactively, or via the new --section option). (#603)

  • News fragments are now sorted by issue number even if they have non-digit characters.

    For example:

    - some issue ([gh-3](https://github.com/twisted/towncrier/issues/3), [gh-10](https://github.com/twisted/towncrier/issues/10))
    - another issue ([gh-4](https://github.com/twisted/towncrier/issues/4))
    - yet another issue ([gh-11](https://github.com/twisted/towncrier/issues/11))
    

    The sorting algorithm groups the issues first by non-text characters and then by number. (#608)

  • The title_format configuration option now uses a markdown format for markdown templates. (#610)

  • newsfragment categories can now be marked with check = false, causing them to be ignored in towncrier check (#617)

  • towncrier check will now fail if any news fragments have invalid filenames.

    Added a new configuration option called ignore that allows you to specify a list of filenames that should be ignored. If this is set, towncrier build will also fail if any filenames are invalid, except for those in the list. (#622)

Bugfixes

  • Add explicit encoding to read_text. (#561)
  • The default Markdown template now renders a title containing the release version and date, even when the name configuration is left empty. (#587)
  • Orphan news fragments, fragments not associated with an issue, consisting of only digits (e.g. '+12345678.feature') now retain their leading marker character. (#588)
  • Orphan news fragments, fragments not associated with an issue, will now still show in categories that are marked to not show content, since they do not have an issue number to show. (#612)

Improved Documentation

  • Clarify version discovery behavior. (#432, #602)
  • The tutorial now introduces the <span

... (truncated)

Changelog

Sourced from towncrier's changelog.

Towncrier 24.7.0 (2024-07-31)

No changes since the previous release candidate.

Features

  • towncrier build now handles removing news fragments which are not part of the git repository. For example, uncommitted or unstaged files. ([#357](https://github.com/twisted/towncrier/issues/357) <https://github.com/twisted/towncrier/issues/357>_)

  • Inferring the version of a Python package now tries to use the metadata of the installed package before importing the package explicitly (which only looks for [package].__version__). ([#432](https://github.com/twisted/towncrier/issues/432) <https://github.com/twisted/towncrier/issues/432>_)

  • If no filename is given when doing towncrier create, interactively ask for the issue number and fragment type (and then launch an interactive editor for the fragment content).

    Now by default, when creating a fragment it will be appended with the filename option's extension (unless an extension is explicitly provided). For example, towncrier create 123.feature will create news/123.feature.rst. This can be changed in configuration file by setting add_extension = false.

    A new line is now added by default to the end of the fragment contents. This can be reverted in the configuration file by setting add_newline = false. ([#482](https://github.com/twisted/towncrier/issues/482) <https://github.com/twisted/towncrier/issues/482>_)

  • The temporary file towncrier create creates now uses the correct .rst or .md extension, which may help your editor with with syntax highlighting. ([#594](https://github.com/twisted/towncrier/issues/594) <https://github.com/twisted/towncrier/issues/594>_)

  • Running towncrier will now traverse back up directories looking for the configuration file. ([#601](https://github.com/twisted/towncrier/issues/601) <https://github.com/twisted/towncrier/issues/601>_)

  • The towncrier create action now uses sections defined in your config (either interactively, or via the new --section option). ([#603](https://github.com/twisted/towncrier/issues/603) <https://github.com/twisted/towncrier/issues/603>_)

  • News fragments are now sorted by issue number even if they have non-digit characters.

    For example::

    - some issue ([gh-3](https://github.com/twisted/towncrier/issues/3), [gh-10](https://github.com/twisted/towncrier/issues/10))
    - another issue ([gh-4](https://github.com/twisted/towncrier/issues/4))
    - yet another issue ([gh-11](https://github.com/twisted/towncrier/issues/11))
    

    The sorting algorithm groups the issues first by non-text characters and then by number. ([#608](https://github.com/twisted/towncrier/issues/608) <https://github.com/twisted/towncrier/issues/608>_)

  • The title_format configuration option now uses a markdown format for markdown templates. ([#610](https://github.com/twisted/towncrier/issues/610) <https://github.com/twisted/towncrier/issues/610>_)

  • newsfragment categories can now be marked with check = false, causing them to be ignored in towncrier check ([#617](https://github.com/twisted/towncrier/issues/617) <https://github.com/twisted/towncrier/issues/617>_)

  • towncrier check will now fail if any news fragments have invalid filenames.

    Added a new configuration option called ignore that allows you to specify a list of filenames that should be ignored. If this is set, towncrier build will also fail if any filenames are invalid, except for those in the list. ([#622](https://github.com/twisted/towncrier/issues/622) <https://github.com/twisted/towncrier/issues/622>_)

Bugfixes

  • Add explicit encoding to read_text. ([#561](https://github.com/twisted/towncrier/issues/561) <https://github.com/twisted/towncrier/issues/561>_)
  • The default Markdown template now renders a title containing the release version and date, even when the name configuration is left empty. ([#587](https://github.com/twisted/towncrier/issues/587) <https://github.com/twisted/towncrier/issues/587>_)
  • Orphan news fragments, fragments not associated with an issue, consisting of only digits (e.g. '+12345678.feature') now retain their leading marker character. ([#588](https://github.com/twisted/towncrier/issues/588) <https://github.com/twisted/towncrier/issues/588>_)
  • Orphan news fragments, fragments not associated with an issue, will now still show in categories that are marked to not show content, since they do not have an issue number to show. ([#612](https://github.com/twisted/towncrier/issues/612) <https://github.com/twisted/towncrier/issues/612>_)

Improved Documentation

  • Clarify version discovery behavior. ([#432](https://github.com/twisted/towncrier/issues/432) <https://github.com/twisted/towncrier/issues/432>, [#602](https://github.com/twisted/towncrier/issues/602) <https://github.com/twisted/towncrier/issues/602>)
  • The tutorial now introduces the filename option in the appropriate paragraph and mentions its default value. ([#586](https://github.com/twisted/towncrier/issues/586) <https://github.com/twisted/towncrier/issues/586>_)
  • Add docs to explain how towncrier create +.feature.rst (orphan fragments) works. ([#589](https://github.com/twisted/towncrier/issues/589) <https://github.com/twisted/towncrier/issues/589>_)

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
sonarcloud[bot] commented 1 month ago

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code

See analysis details on SonarCloud

codecov[bot] commented 1 month ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 100.00%. Comparing base (9f18d68) to head (c332a62). Report is 1 commits behind head on master.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #262 +/- ## ========================================= Coverage 100.00% 100.00% ========================================= Files 2 2 Lines 61 61 Branches 6 6 ========================================= Hits 61 61 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

dependabot[bot] commented 1 month ago

Superseded by #263.