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

Update all non-major dependencies #182

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 20, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
celery (source, changelog) 5.3.6 -> 5.4.0 age adoption passing confidence dependencies minor
django-crispy-forms (changelog) 2.1 -> 2.3 age adoption passing confidence dependencies minor
django-debug-toolbar (changelog) 4.3.0 -> 4.4.6 age adoption passing confidence dependencies minor
django-markdownify 0.9.3 -> 0.9.5 age adoption passing confidence dependencies patch
dnspython 2.6.1 -> 2.7.0 age adoption passing confidence dependencies minor
eventlet (changelog) ^0.35.1 -> ^0.37.0 age adoption passing confidence dependencies minor
faker (changelog) 24.4.0 -> 24.14.1 age adoption passing confidence dev minor
font-awesome (source) 6.5.1 -> 6.6.0 age adoption passing confidence minor
markdownify ^0.11.6 -> ^0.13.0 age adoption passing confidence dependencies minor
psycopg2-binary (source, changelog) 2.9.9 -> 2.9.10 age adoption passing confidence dependencies patch
python 3.11.0 -> 3.13.0 age adoption passing confidence minor
redis (changelog) 5.0.3 -> 5.2.0 age adoption passing confidence dependencies minor
ruff (source, changelog) ^0.2.2 -> ^0.7.0 age adoption passing confidence dev minor
whitenoise (changelog) 6.6.0 -> 6.7.0 age adoption passing confidence dependencies minor

Release Notes

celery/celery (celery)

v5.4.0

Compare Source

=====

:release-date: 2024-04-17
:release-by: Tomer Nosrati

Celery v5.4.0 and v5.3.x have consistently focused on enhancing the overall QA, both internally and externally.
This effort led to the new pytest-celery v1.0.0 release, developed concurrently with v5.3.0 & v5.4.0.

This release introduces two significant QA enhancements:

  • Smoke Tests: A new layer of automatic tests has been added to Celery's standard CI. These tests are designed to handle production scenarios and complex conditions efficiently. While new contributions will not be halted due to the lack of smoke tests, we will request smoke tests for advanced changes where appropriate.
  • Standalone Bug Report Script <https://docs.celeryq.dev/projects/pytest-celery/en/latest/userguide/celery-bug-report.html>_: The new pytest-celery plugin now allows for encapsulating a complete Celery dockerized setup within a single pytest script. Incorporating these into new bug reports will enable us to reproduce reported bugs deterministically, potentially speeding up the resolution process.

Contrary to the positive developments above, there have been numerous reports about issues with the Redis broker malfunctioning
upon restarts and disconnections. Our initial attempts to resolve this were not successful (#​8796).
With our enhanced QA capabilities, we are now prepared to address the core issue with Redis (as a broker) again.

The rest of the changes for this release are grouped below, with the changes from the latest release candidate listed at the end.

Changes

- Add a Task class specialised for Django (#&#8203;8491)
- Add Google Cloud Storage (GCS) backend (#&#8203;8868)
- Added documentation to the smoke tests infra (#&#8203;8970)
- Added a checklist item for using pytest-celery in a bug report (#&#8203;8971)
- Bugfix: Missing id on chain (#&#8203;8798)
- Bugfix: Worker not consuming tasks after Redis broker restart (#&#8203;8796)
- Catch UnicodeDecodeError when opening corrupt beat-schedule.db (#&#8203;8806)
- chore(ci): Enhance CI with `workflow_dispatch` for targeted debugging and testing (#&#8203;8826)
- Doc: Enhance "Testing with Celery" section (#&#8203;8955)
- Docfix: pip install celery[sqs] -> pip install "celery[sqs]" (#&#8203;8829)
- Enable efficient `chord` when using dynamicdb as backend store (#&#8203;8783)
- feat(daemon): allows daemonization options to be fetched from app settings (#&#8203;8553)
- Fix DeprecationWarning: datetime.datetime.utcnow() (#&#8203;8726)
- Fix recursive result parents on group in middle of chain (#&#8203;8903)
- Fix typos and grammar (#&#8203;8915)
- Fixed version documentation tag from #&#8203;8553 in configuration.rst (#&#8203;8802)
- Hotfix: Smoke tests didn't allow customizing the worker's command arguments, now it does (#&#8203;8937)
- Make custom remote control commands available in CLI (#&#8203;8489)
- Print safe_say() to stdout for non-error flows (#&#8203;8919)
- Support moto 5.0 (#&#8203;8838)
- Update contributing guide to use ssh upstream url (#&#8203;8881)
- Update optimizing.rst (#&#8203;8945)
- Updated concurrency docs page. (#&#8203;8753)

Dependencies Updates
  • Bump actions/setup-python from 4 to 5 (#​8701)
  • Bump codecov/codecov-action from 3 to 4 (#​8831)
  • Bump isort from 5.12.0 to 5.13.2 (#​8772)
  • Bump msgpack from 1.0.7 to 1.0.8 (#​8885)
  • Bump mypy from 1.8.0 to 1.9.0 (#​8898)
  • Bump pre-commit to 3.6.1 (#​8839)
  • Bump pre-commit/action from 3.0.0 to 3.0.1 (#​8835)
  • Bump pytest from 8.0.2 to 8.1.1 (#​8901)
  • Bump pytest-celery to v1.0.0 (#​8962)
  • Bump pytest-cov to 5.0.0 (#​8924)
  • Bump pytest-order from 1.2.0 to 1.2.1 (#​8941)
  • Bump pytest-subtests from 0.11.0 to 0.12.1 (#​8896)
  • Bump pytest-timeout from 2.2.0 to 2.3.1 (#​8894)
  • Bump python-memcached from 1.59 to 1.61 (#​8776)
  • Bump sphinx-click from 4.4.0 to 5.1.0 (#​8774)
  • Update cryptography to 42.0.5 (#​8869)
  • Update elastic-transport requirement from <=8.12.0 to <=8.13.0 (#​8933)
  • Update elasticsearch requirement from <=8.12.1 to <=8.13.0 (#​8934)
  • Upgraded Sphinx from v5.3.0 to v7.x.x (#​8803)

Changes since 5.4.0rc2

- Update elastic-transport requirement from <=8.12.0 to <=8.13.0 (#&#8203;8933)
- Update elasticsearch requirement from <=8.12.1 to <=8.13.0 (#&#8203;8934)
- Hotfix: Smoke tests didn't allow customizing the worker's command arguments, now it does (#&#8203;8937)
- Bump pytest-celery to 1.0.0rc3 (#&#8203;8946)
- Update optimizing.rst (#&#8203;8945)
- Doc: Enhance "Testing with Celery" section (#&#8203;8955)
- Bump pytest-celery to v1.0.0 (#&#8203;8962)
- Bump pytest-order from 1.2.0 to 1.2.1 (#&#8203;8941)
- Added documentation to the smoke tests infra (#&#8203;8970)
- Added a checklist item for using pytest-celery in a bug report (#&#8203;8971)
- Added changelog for v5.4.0 (#&#8203;8973)
- Bump version: 5.4.0rc2 → 5.4.0 (#&#8203;8974)

.. _version-5.4.0rc2:
django-crispy-forms/django-crispy-forms (django-crispy-forms)

v2.3

Compare Source

  • Fixed a bug in AccordionGroup rendering then it gets an unexpected css class active.

v2.2

Compare Source

  • Added support for Django 5.1.
  • Allowed pass through of context when rendering a Fieldset layout object.
jazzband/django-debug-toolbar (django-debug-toolbar)

v4.4.6

Compare Source

What's Changed

Full Changelog: django-commons/django-debug-toolbar@4.4.5...4.4.6

v4.4.5

Compare Source

What's Changed

Full Changelog: django-commons/django-debug-toolbar@4.4.4...4.4.5

v4.4.4

Compare Source

What's Changed

New Contributors

Full Changelog: django-commons/django-debug-toolbar@4.4.3...4.4.4

v4.4.3

Compare Source

What's Changed

New Contributors

Full Changelog: django-commons/django-debug-toolbar@4.4.2...4.4.3

v4.4.2

Compare Source

What's Changed

Full Changelog: django-commons/django-debug-toolbar@4.4.1...4.4.2

v4.4.1

Compare Source

What's changed

See changelog for 4.4.1

PRs merged

Full Changelog: django-commons/django-debug-toolbar@4.4...4.4.1

v4.4.0

Compare Source

erwinmatijsen/django-markdownify (django-markdownify)

v0.9.5

Compare Source

v0.9.4

Compare Source

rthalley/dnspython (dnspython)

v2.7.0: dnspython 2.7.0

Compare Source

See What's New for details.

The minimum supported version of Python is 3.9.

My thanks to the many people who have contributed to this release. Also thanks to my co-maintainers: Tomáš Křížek, Petr Špaček, and Brian Wellington.

eventlet/eventlet (eventlet)

v0.37.0

Compare Source

v0.36.1

Compare Source

v0.36.0

Compare Source

joke2k/faker (faker)

v24.14.1

Compare Source

  • Include type stubs in release.

v24.14.0

Compare Source

v24.13.0

Compare Source

v24.12.0

Compare Source

  • Remove offensive word from pl_PL lorem provider. Thanks @​Rey092.

v24.11.0

Compare Source

v24.10.0

Compare Source

  • Update list of first_name_* and last_name in pt_BR PersonProvider. Thanks @​dclobato.

v24.9.0

Compare Source

v24.8.0

Compare Source

  • Fix wrong pricetag format in ru_RU locale. Thanks @​Pandede.

v24.7.1

Compare Source

  • Fix previous release issue.

v24.7.0

Compare Source

v24.6.0

Compare Source

v24.5.0

Compare Source

FortAwesome/Font-Awesome (font-awesome)

v6.6.0

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

v6.5.2

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

matthewwithanm/python-markdownify (markdownify)

v0.13.1

Compare Source

What's Changed

Full Changelog: matthewwithanm/python-markdownify@0.13.0...0.13.1

v0.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: matthewwithanm/python-markdownify@0.12.1...0.13.0

v0.12.1: Fix wrong version

Compare Source

redis/redis-py (redis)

v5.2.0: 5.2.0

Compare Source

Changes

🚀 New Features

  • Extend AggregateRequest with scorer argument (#​3409)

🧰 Maintenance

  • Pin pytest-profiling version due to the bug (#​3417)

Contributors

We'd like to thank all the contributors who worked on this release!

@​uglide @​rbs333 @​vladvildanov @​dwdougherty

v5.1.1: 5.1.1

Compare Source

Changes

5.1.1

🐛 Bug Fixes
  • Fixed return type for Redis Set commands to be Set instead of List (#​3399)
  • Fixed bug with partial Hiredis availability (#​3400)
  • Fixed bug with async pipeline and cluster fails with some commands (#​3402)

5.1.0

🚀 New Features
How to start with Client-side caching?
  1. Install redis-py 5.1.0
  2. Use the following code snippet:
r = Redis(protocol=3, cache_config=CacheConfig())

cache = r.get_cache()
r.set("foo", "bar")

### get key from redis and save in local cache
print(r.get("foo"))

### get key from local cache
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

### change key in redis (cause invalidation)
r.set("foo", "barbar")

### Retrieves a new value from server and cache it
print(r.get("foo"))

### Make sure that new value was cached
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

Check documentation to get more examples

🔥 Breaking Changes
  • Timeseries insertion filters for close samples (#​3228)
  • Enhanced classes string representation (#​3001)
  • Partial clean up of Python 3.7 compatibility (#​2928)
  • Handle Redis Set data type as Python list to avoid a limitations with nested dictionaries (#​3324)

Contributors

We'd like to thank all the contributors who worked on this release!

@​vladvildanov @​dmaier-redislabs @​vineethvkumar @​ramchandra-st @​RafalBielickiIM @​jules-ch

v5.1.0: 5.1.0

Compare Source

Changes

🚀 New Features

How to start with Client-side caching?
  1. Install redis-py 5.1.0
  2. Use the following code snippet:
r = Redis(protocol=3, cache_config=CacheConfig())

cache = r.get_cache()
r.set("foo", "bar")

### get key from redis and save in local cache
print(r.get("foo"))

### get key from local cache
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

### change key in redis (cause invalidation)
r.set("foo", "barbar")

### Retrieves a new value from server and cache it
print(r.get("foo"))

### Make sure that new value was cached
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

Check documentation to get more examples

🔥 Breaking Changes

  • Timeseries insertion filters for close samples (#​3228)
  • Enhanced classes string representation (#​3001)
  • Partial clean up of Python 3.7 compatibility (#​2928)
  • Handle RESP3 sets as Python lists (#​3324)

🐛 Bug Fixes

  • Handle RESP3 sets as Python lists (#​3324)
  • Prevent async ClusterPipeline instances from becoming "false-y" (#​3068)
  • Add hostname field to _parse_node_line (#​3343)
  • More docs fixes (#​3326)
  • Delete the first-defined (and thus "duplicate") Script class (#​3333)
  • Catch a known DeprecationWarning when calling .close() (#​3335)
  • Add missed redismod at test_commands.py (#​3369)

🧰 Maintenance

Contributors

We'd like to thank all the contributors who worked on this release!

@​AYMENJD, @​AniketP04, @​BackflipPenguin, @​ING-XIAOJIAN, @​MrDenkoV, @​Pedram-Parsian, @​TheBlusky, @​TomerHekmati, @​Wh1isper, @​Zaczero, @​ahmedabdou14, @​akx, @​andy-stark-redis, @​catap, @​chayim, @​d184230, @​danielzhangau, @​daveisfera, @​dependabot, @​dependabot[bot], @​dkuser, @​dmaier-redislabs, @​dmkulazhenko, @​dudizimber, @​dvora-h, @​dwdougherty, @​enjoy-binbin, @​gerzse, @​hongqn, @​jakob-keller, @​kristjanvalur, @​kurtmckee, @​matrey, @​mattwang44, @​max-muoto, @​parmenashp, @​poiuj, @​r0ro, @​sjpotter, @​tbbream, @​trkwyk, @​uglide, @​vladvildanov, @​w-miller, @​wKollendorf, @​willfrey, @​willianmrs, @​zakaf, @​zware and @​zxjlm

v5.0.8: 5.0.8

Compare Source

Changes

  • Resolve some docs warnings (#​3322)
  • Add missing type hints for retry.py (#​3250)

🔥 Breaking Changes

  • Timeseries insertion filters for close samples (#​3228)

🚀 New Features

  • Hash field expiration commands (#​3218)
  • Support the MAXAGE option for CLIENT KILL (#​3187)
  • Support NOVALUES parameter for HSCAN (#​3157)
  • Document XREAD of last message (+) (#​3187)
  • Support missing/empty values in search (#​3231)
  • Timeseries insertion filters for close samples (#​3228)

🧰 Maintenance

  • Add extra tests for GEO search (#​3244)
  • Test special characters escaping in search (#​3276)

🐛 Bug Fixes

  • Decode search results at field level (#​3309)

v5.0.7: 5.0.7

Compare Source

Changes

🐛 Bug Fixes

  • None UnixDomainSocket timeout (#​3293)

🧰 Maintenance

  • Updated redis version to represent latest available build (#​3296)

Contributors

We'd like to thank all the contributors who worked on this release!

@​vladvildanov @​dmaier-redislabs

v5.0.6: 5.0.6

Compare Source

Changes
🐛 Bug Fixes
  • Handle lists in the response of INFO

v5.0.5: 5.0.5

Compare Source

Changes

🐛 Bug Fixes

  • Fix parsing of INFO response (#​3265)

v5.0.4: 5.0.4

Compare Source

Changes

🐛 Bug Fixes

  • Make it possible to customize SSL ciphers (#​3212)
astral-sh/ruff (ruff)

v0.7.1

Compare Source

Preview features
  • Fix E221 and E222 to flag missing or extra whitespace around == operator (#​13890)
  • Formatter: Alternate quotes for strings inside f-strings in preview (#​13860)
  • Formatter: Join implicit concatenated strings when they fit on a line (#​13663)
  • [pylint] Restrict iteration-over-set to only work on sets of literals (PLC0208) (#​13731)
Rule changes
  • [flake8-type-checking] Support auto-quoting when annotations contain quotes (#​11811)
Server
  • Avoid indexing the workspace for single-file mode (#​13770)
Bug fixes
  • Make ARG002 compatible with EM101 when raising NotImplementedError (#​13714)
Other changes
  • Introduce more Docker tags for Ruff (similar to uv) (#​13274)

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

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 changed the title Update dependency eventlet to ^0.34.0 Update all non-major dependencies Dec 21, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d645686 to 7dbadfd Compare January 3, 2024 16:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9d3d757 to d701762 Compare January 12, 2024 17:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from bda82a2 to 29deb70 Compare January 23, 2024 07:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from bd95187 to 5e43e10 Compare February 3, 2024 15:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from e85dd24 to 7110157 Compare February 9, 2024 12:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 9e5cadf to b18ccf4 Compare February 19, 2024 16:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d4d90f1 to 1be6d77 Compare March 4, 2024 11:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e3a6cd7 to b81f8f6 Compare June 6, 2024 10:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from acb9185 to a6d7988 Compare June 19, 2024 18:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ed7be6a to 855692e Compare June 27, 2024 15:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from b3c4318 to 0a64db2 Compare July 10, 2024 14:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a86a12c to 9e7884a Compare July 20, 2024 18:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ed0dc6a to 3c4364c Compare July 30, 2024 15:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3c4364c to 6086926 Compare August 7, 2024 21:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6086926 to 7b3ebf1 Compare August 15, 2024 15:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 13086cd to eb330dd Compare September 12, 2024 11:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b8697c8 to f2d56e1 Compare October 4, 2024 15:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e5f05fb to 60b2b66 Compare October 8, 2024 00:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b3455bc to 1b22a39 Compare October 17, 2024 19:45
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.

0 participants