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 Benchmark dependencies #155

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 21, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
arq (changelog) ==0.25.0 -> ==0.26.0 age adoption passing confidence
celery (source, changelog) ==5.3.6 -> ==5.4.0 age adoption passing confidence
dramatiq ==1.16.0 -> ==1.17.0 age adoption passing confidence
redis (changelog) ==5.0.1 -> ==5.0.8 age adoption passing confidence
repid ==1.5.1 -> ==1.5.4 age adoption passing confidence

Release Notes

samuelcolvin/arq (arq)

v0.26.0: (2023-05-01)

Compare Source

No changes since v0.26.0b1.

Full Changelog: python-arq/arq@v0.26.0b1...v0.26.0

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

.. _version-5.4.0rc2:

Bogdanp/dramatiq (dramatiq)

v1.17.0

Compare Source

Added

Changed

  • The watch extras now require Watchdog version 4.0+.

Fixed

redis/redis-py (redis)

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)

v5.0.3: 5.0.3

Compare Source

Changes

🐛 Bug Fixes

  • Fix breaking change: message in LockError is now optional (#​3176)

🧰 Maintenance

  • Bump release-drafter/release-drafter from 5 to 6 (#​3171)
  • Bump rojopolis/spellcheck-github-actions from 0.35.0 to 0.36.0 (#​3172)
  • Remove redundant async-timeout dependency (#​3177)

v5.0.2: 5.0.2

Compare Source

Changes

🚀 New Features

  • Allow to control the minimum SSL version (#​3127)
  • Add modules support to async RedisCluster (#​3115)
  • Adding lock_name to LockError (#​3023)
  • Add GEOSHAPE field type for index creation of RediSearch (#​2957)

🐛 Bug Fixes

  • Fix retry logic for pubsub and pipeline (#​3134)
  • Ignore TypeError on disconnect (within multiprocess) (#​3149)
  • Release already acquired connections on ClusterPipeline, when get_connection raises an exception (#​3133)
  • Fix possible pipeline connections leak (#​3104)
  • Return a copy of the response from cache (#​3106)
  • Fix: HSET unexpectedly mutates the list passed to items (#​3103)
  • Fix acl_genpass with bits (#​3062)
  • Allow the parsing of the asking command to forward original options (#​3012)
  • Fix parsing of FT.PROFILE result (#​3063)
  • Use disable_decoding in async read_response with hiredis parser. (#​3042)
  • Fix return types in json commands (#​3071)
  • Fix Specifying Target Nodes broken hyperlink (#​3072)

🧰 Maintenance

  • Fix incorrect asserts in test and ensure connections are closed (#​3004)
  • Revert stale issue version update (#​3142)
  • Docs: Add timeout parameter for get_message example (#​3129)
  • Bump codecov/codecov-action from 3 to 4 (#​3131)
  • Bump actions/stale from 3 to 9 (#​3132)
  • Fix grammer in BlockingConnectionPool class documentation (#​3120)
  • Updating async-timeout to 4.0.3 (#​3109)
  • Fix type hint of arbitrary argument lists (#​2908)
  • Fix JSON.OBJLEN type hint (#​2966)
  • Fix HDEL type hint (#​3029)
  • Docs: organize cluster mode part of lua scripting (#​3073)
  • Update reported version deprecation in asyncio.client (#​2968)
  • Make the connection callback methods public again, add documentation (#​2980)
  • Update repr of important classes with module name and recommended "< … (#​3001)
  • Typo in advanced features documentation (#​3019)
  • Fix typos in documentation (#​3016
  • Add "sum" to DUPLICATE_POLICY documentation of TS.CREATE, TS.ADD and TS.ALTER (#​3027)
  • Fixed typo in ocsp.py (#​3022)
  • Creating CODEOWNERS for documentation (#​2993)

Contributors

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

@​AYMENJD, @​AniketP04, @​BackflipPenguin, @​ING-XIAOJIAN, @​MrDenkoV, @​Pedram-Parsian, @​TheBlusky, @​ahmedabdou14, @​akx, @​chayim, @​d184230, @​danielzhangau, @​dependabot, @​dependabot[bot], @​dmkulazhenko, @​dvora-h, @​enjoy-binbin, @​hongqn, @​jakob-keller, @​kristjanvalur, @​mattwang44, @​parmenashp, @​poiuj, @​r0ro, @​sjpotter, @​tbbream, @​trkwyk, @​w-miller, @​wKollendorf, @​zakaf, @​zware and @​zxjlm

aleksul/repid (repid)

v1.5.4

Compare Source

What's Changed

Full Changelog: v1.5.3...v1.5.4

v1.5.3

Compare Source

What's Changed

Full Changelog: v1.5.2...v1.5.3

v1.5.2

Compare Source

What's Changed

Full Changelog: v1.5.1...v1.5.2


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

cloudflare-pages bot commented Feb 21, 2024

Deploying repid with  Cloudflare Pages  Cloudflare Pages

Latest commit: 40318ea
Status: ✅  Deploy successful!
Preview URL: https://a5098ba4.repid.pages.dev
Branch Preview URL: https://renovate-benchmark.repid.pages.dev

View logs

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 21, 2024
@renovate renovate bot enabled auto-merge February 21, 2024 18:22
@renovate renovate bot changed the title ⬆️ Update dependency eventlet to v0.35.2 ⬆️ Update Benchmark dependencies Feb 28, 2024
@renovate renovate bot force-pushed the renovate/benchmark branch 3 times, most recently from d38299d to 2869892 Compare March 10, 2024 17:50
@renovate renovate bot force-pushed the renovate/benchmark branch 2 times, most recently from ae5d0ad to 77080f8 Compare March 29, 2024 16:55
@renovate renovate bot force-pushed the renovate/benchmark branch 5 times, most recently from 6c4f565 to ce30cbe Compare April 8, 2024 10:54
@renovate renovate bot force-pushed the renovate/benchmark branch 2 times, most recently from 96cfcf8 to 600ef57 Compare April 23, 2024 17:30
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants