repid icon indicating copy to clipboard operation
repid copied to clipboard

⬆️ Update Benchmark dependencies

Open renovate[bot] opened this issue 1 year ago • 1 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
arq (changelog) ==0.25.0 -> ==0.26.1 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
eventlet (changelog) ==0.35.1 -> ==0.37.0 age adoption passing confidence
redis (changelog) ==5.0.1 -> ==5.1.0 age adoption passing confidence
repid ==1.5.1 -> ==1.5.4 age adoption passing confidence
uvloop ==0.19.0 -> ==0.20.0 age adoption passing confidence

Release Notes

samuelcolvin/arq (arq)

v0.26.1: (2023-08-29)

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/python-arq/arq/compare/v0.26.0...v0.26.1

v0.26.0: (2023-05-01)

Compare Source

No changes since v0.26.0b1.

Full Changelog: https://github.com/samuelcolvin/arq/compare/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 (#&#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:
Bogdanp/dramatiq (dramatiq)

v1.17.0

Compare Source

Added
Changed
  • The watch extras now require Watchdog version 4.0+.
Fixed
eventlet/eventlet (eventlet)

v0.37.0

Compare Source

v0.36.1

Compare Source

v0.36.0

Compare Source

v0.35.2

Compare Source

redis/redis-py (redis)

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)

🐛 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)

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: https://github.com/aleksul/repid/compare/v1.5.3...v1.5.4

v1.5.3

Compare Source

What's Changed

Full Changelog: https://github.com/aleksul/repid/compare/v1.5.2...v1.5.3

v1.5.2

Compare Source

What's Changed

Full Changelog: https://github.com/aleksul/repid/compare/v1.5.1...v1.5.2

MagicStack/uvloop (uvloop)

v0.20.0

Compare Source

Changes

Fixes


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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[bot] avatar Feb 21 '24 18:02 renovate[bot]

Deploying repid with  Cloudflare Pages  Cloudflare Pages

Latest commit: fbad3c0
Status: ✅  Deploy successful!
Preview URL: https://6ed31d87.repid.pages.dev
Branch Preview URL: https://renovate-benchmark.repid.pages.dev

View logs