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

fix(deps): update all to v5.1.2 #116

Merged
merged 1 commit into from
Oct 18, 2024
Merged

fix(deps): update all to v5.1.2 #116

merged 1 commit into from
Oct 18, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
django (changelog) 5.1.1 -> 5.1.2 age adoption passing confidence
django-bootstrap5 (changelog) 24.2 -> 24.3 age adoption passing confidence
python-dateutil 2.9.0.post0 -> 2.9.0 age adoption passing confidence
ruff (source, changelog) 0.6.5 -> 0.7.0 age adoption passing confidence
timezonefinder (source) 6.5.2 -> 6.5.3 age adoption passing confidence

Release Notes

django/django (django)

v5.1.2

Compare Source

zostera/django-bootstrap5 (django-bootstrap5)

v24.3

Compare Source

dateutil/dateutil (python-dateutil)

v2.9.0

Compare Source

Version 2.9.0 (2024-02-29)

Data updates

  • Updated tzdata version to 2024a. (gh pr #​1342)

Features

  • Made all dateutil submodules lazily imported using PEP 562. On Python 3.7+, things like import dateutil; dateutil.tz.gettz("America/New_York") will now work without explicitly importing dateutil.tz, with the import occurring behind the scenes on first use. The old behavior remains on Python 3.6 and earlier. Fixed by Orson Adams. (gh issue #​771, gh pr #​1007)

Bugfixes

  • Removed a call to datetime.utcfromtimestamp, which is deprecated as of Python 3.12. Reported by Hugo van Kemenade (gh pr #​1284), fixed by Thomas Grainger (gh pr #​1285).

Documentation changes

  • Added note into docs and tests where relativedelta would return last day of the month only if the same day on a different month resolves to a date that doesn't exist. Reported by @​hawkEye-01 (gh issue #​1167). Fixed by @​Mifrill (gh pr #​1168)
astral-sh/ruff (ruff)

v0.7.0

Compare Source

Check out the blog post for a migration guide and overview of the changes!

Breaking changes
  • The pytest rules PT001 and PT023 now default to omitting the decorator parentheses when there are no arguments
    (#​12838, #​13292).
    This was a change that we attempted to make in Ruff v0.6.0, but only partially made due to an error on our part.
    See the blog post for more details.
  • The useless-try-except rule (in our tryceratops category) has been recoded from TRY302 to
    TRY203 (#​13502). This ensures Ruff's code is consistent with
    the same rule in the tryceratops linter.
  • The lint.allow-unused-imports setting has been removed (#​13677). Use
    lint.pyflakes.allow-unused-imports
    instead.
Formatter preview style
  • Normalize implicit concatenated f-string quotes per part (#​13539)
Preview linter features
  • [refurb] implement hardcoded-string-charset (FURB156) (#​13530)
  • [refurb] Count codepoints not bytes for slice-to-remove-prefix-or-suffix (FURB188) (#​13631)
Rule changes
  • [pylint] Mark PLE1141 fix as unsafe (#​13629)
  • [flake8-async] Consider async generators to be "checkpoints" for cancel-scope-no-checkpoint (ASYNC100) (#​13639)
  • [flake8-bugbear] Do not suggest setting parameter strict= to False in B905 diagnostic message (#​13656)
  • [flake8-todos] Only flag the word "TODO", not words starting with "todo" (TD006) (#​13640)
  • [pycodestyle] Fix whitespace-related false positives and false negatives inside type-parameter lists (E231, E251) (#​13704)
  • [flake8-simplify] Stabilize preview behavior for SIM115 so that the rule can detect files
    being opened from a wider range of standard-library functions (#​12959).
CLI
  • Add explanation of fixable in --statistics command (#​13774)
Bug fixes
  • [pyflakes] Allow ipytest cell magic (F401) (#​13745)
  • [flake8-use-pathlib] Fix PTH123 false positive when open is passed a file descriptor (#​13616)
  • [flake8-bandit] Detect patterns from multi line SQL statements (S608) (#​13574)
  • [flake8-pyi] - Fix dropped expressions in PYI030 autofix (#​13727)

v0.6.9

Compare Source

Preview features
  • Fix codeblock dynamic line length calculation for indented docstring examples (#​13523)
  • [refurb] Mark FURB118 fix as unsafe (#​13613)
Rule changes
  • [pydocstyle] Don't raise D208 when last line is non-empty (#​13372)
  • [pylint] Preserve trivia (i.e. comments) in PLR5501 autofix (#​13573)
Configuration
  • [pyflakes] Add allow-unused-imports setting for unused-import rule (F401) (#​13601)
Bug fixes
  • Support ruff discovery in pip build environments (#​13591)
  • [flake8-bugbear] Avoid short circuiting B017 for multiple context managers (#​13609)
  • [pylint] Do not offer an invalid fix for PLR1716 when the comparisons contain parenthesis (#​13527)
  • [pyupgrade] Fix UP043 to apply to collections.abc.Generator and collections.abc.AsyncGenerator (#​13611)
  • [refurb] Fix handling of slices in tuples for FURB118, e.g., x[:, 1] (#​13518)
Documentation
  • Update GitHub Action link to astral-sh/ruff-action (#​13551)

v0.6.8

Compare Source

Preview features
  • Remove unnecessary parentheses around match case clauses (#​13510)
  • Parenthesize overlong if guards in match..case clauses (#​13513)
  • Detect basic wildcard imports in ruff analyze graph (#​13486)
  • [pylint] Implement boolean-chained-comparison (R1716) (#​13435)
Rule changes
  • [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#​13503)
  • [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) (#​13504)
Bug fixes
  • Detect tuples bound to variadic positional arguments i.e. *args (#​13512)
  • Exit gracefully on broken pipe errors (#​13485)
  • Avoid panic when analyze graph hits broken pipe (#​13484)
Performance
  • Reuse BTreeSets in module resolver (#​13440)
  • Skip traversal for non-compound statements (#​13441)

v0.6.7

Compare Source

Preview features
  • Add Python version support to ruff analyze CLI (#​13426)
  • Add exclude support to ruff analyze (#​13425)
  • Fix parentheses around return type annotations (#​13381)
Rule changes
  • [pycodestyle] Fix: Don't autofix if the first line ends in a question mark? (D400) (#​13399)
Bug fixes
  • Respect lint.exclude in ruff check --add-noqa (#​13427)
Performance
  • Avoid tracking module resolver files in Salsa (#​13437)
  • Use forget for module resolver database (#​13438)

v0.6.6

Compare Source

Preview features
  • [refurb] Skip slice-to-remove-prefix-or-suffix (FURB188) when non-trivial slice steps are present (#​13405)
  • Add a subcommand to generate dependency graphs (#​13402)
Formatter
  • Fix placement of inline parameter comments (#​13379)
Server
  • Fix off-by one error in the LineIndex::offset calculation (#​13407)
Bug fixes
  • [fastapi] Respect FastAPI aliases in route definitions (#​13394)
  • [pydocstyle] Respect word boundaries when detecting function signature in docs (#​13388)
Documentation
  • Add backlinks to rule overview linter (#​13368)
  • Fix documentation for editor vim plugin ALE (#​13348)
  • Fix rendering of FURB188 docs (#​13406)
jannikmi/timezonefinder (timezonefinder)

v6.5.3

Compare Source

  • updated the data to 2024b <https://github.com/evansiroky/timezone-boundary-builder/releases/tag/2024b>__.

Configuration

📅 Schedule: Branch creation - "every 2nd week on sunday after 9pm" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from zyv September 1, 2024 22:13
@renovate renovate bot force-pushed the feature/renovate/all branch from 228be95 to 9f09aa1 Compare September 2, 2024 16:45
@renovate renovate bot changed the title fix(deps): update all to v2.9.0 chore(deps): update all to v4.9.0 Sep 2, 2024
@renovate renovate bot force-pushed the feature/renovate/all branch from 9f09aa1 to 99fb2e9 Compare September 3, 2024 15:40
@renovate renovate bot changed the title chore(deps): update all to v4.9.0 fix(deps): update all to v5.1.1 Sep 3, 2024
@renovate renovate bot force-pushed the feature/renovate/all branch from 99fb2e9 to 6bf1a5b Compare September 5, 2024 16:35
@renovate renovate bot force-pushed the feature/renovate/all branch 2 times, most recently from 8e5b315 to 5de9537 Compare September 13, 2024 15:50
@renovate renovate bot changed the title fix(deps): update all to v5.1.1 fix(deps): update dependency python-dateutil to v2.9.0 Sep 14, 2024
@renovate renovate bot force-pushed the feature/renovate/all branch from 5de9537 to 7b75e3d Compare September 17, 2024 15:34
@renovate renovate bot changed the title fix(deps): update dependency python-dateutil to v2.9.0 fix(deps): update all to v24.3 Sep 17, 2024
@renovate renovate bot force-pushed the feature/renovate/all branch 3 times, most recently from 7f52b62 to 60bf71e Compare September 26, 2024 14:42
@renovate renovate bot force-pushed the feature/renovate/all branch 2 times, most recently from 293e49c to 41b95b5 Compare October 8, 2024 16:00
@renovate renovate bot changed the title fix(deps): update all to v24.3 fix(deps): update all to v5.1.2 Oct 8, 2024
@renovate renovate bot force-pushed the feature/renovate/all branch from 41b95b5 to f065abb Compare October 17, 2024 19:28
@renovate renovate bot force-pushed the feature/renovate/all branch from f065abb to befcfff Compare October 18, 2024 07:57
@zyv zyv merged commit c891c4f into master Oct 18, 2024
1 check passed
@zyv zyv deleted the feature/renovate/all branch October 18, 2024 08:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant