Update dependency redis to v5.0.1 #161

Merged
Xefir merged 1 commits from renovate/redis-5.x into master 2023-09-28 07:29:17 +00:00
Owner

This PR contains the following updates:

Package Update Change
redis (changelog) patch ==5.0.0 -> ==5.0.1

Release Notes

redis/redis-py (redis)

v5.0.1: 5.0.1

Compare Source

Changes

🚀 New Features

  • Provide aclose() / close() for classes requiring lifetime management (#​2898)
  • Add support for ModuleCommands in cluster (#​2951)
  • Add support for multiple values in RPUSHX (#​2949)
  • Add Redis.from_pool() class method, for explicitly owning and closing a ConnectionPool (#​2913)

🐛 Bug Fixes

  • Fixing monitor parsing for messages containing specific substrings (#​2950)
  • Cluster determine slot command name need to be upper (#​2919)
  • Support timeout = 0 in search query (#​2934)
  • Fix async sentinel: add push_request keyword argument to read_response (#​2922)
  • Fix protocol checking for search commands (#​2923)
  • Fix: SentinelManagedConnection.read_response() got an unexpected keyword argument 'push_request' (#​2894)
  • Fix: automatically close connection pool for async Sentinel (#​2900)
  • Save a reference to created async tasks, to avoid tasks potentially disappearing (#​2816)
  • Avoid reference cycling by the garbage collector during response reading (#​2932)

🧰 Maintenance

  • Type hint improvements (#​2952)
  • Replace clear_connect_callbacks with _deregister_connect_callback (#​2955)
  • Async fixes, remove del and other things (#​2870)
  • Add pagination, sorting and grouping examples to search json example (#​2890)
  • Remove process-id checks from asyncio. Asyncio and fork() does not mix. (#​2911)
  • Fix resource usage and cleanup Mocks in the unit tests (#​2936)
  • Remove mentions of tox (#​2929)
  • Add 7.2 to supported Redis versions (#​2896)
  • Fix resource warnings in unit tests (#​2899)
  • Fix typo in redis-stream-example.ipynb (#​2918)
  • Deprecate RedisGraph (#​2927)
  • Fix redis 7.2.0 tests (#​2902)
  • Fix test_scorer (search) (#​2920)

Contributors

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

@​AOrazaev, @​akx, @​anio, @​chayim, @​dvora-h, @​elfkuzco, @​hauntsaninja, @​kristjanvalur, @​meiravgri, @​uglide and @​yangbodong22011


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.

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


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [redis](https://github.com/redis/redis-py) ([changelog](https://github.com/redis/redis-py/releases)) | patch | `==5.0.0` -> `==5.0.1` | --- ### Release Notes <details> <summary>redis/redis-py (redis)</summary> ### [`v5.0.1`](https://github.com/redis/redis-py/releases/tag/v5.0.1): 5.0.1 [Compare Source](https://github.com/redis/redis-py/compare/v5.0.0...v5.0.1) ### Changes #### 🚀 New Features - Provide aclose() / close() for classes requiring lifetime management ([#&#8203;2898](https://github.com/redis/redis-py/issues/2898)) - Add support for `ModuleCommands` in cluster ([#&#8203;2951](https://github.com/redis/redis-py/issues/2951)) - Add support for multiple values in `RPUSHX` ([#&#8203;2949](https://github.com/redis/redis-py/issues/2949)) - Add `Redis.from_pool()` class method, for explicitly owning and closing a ConnectionPool ([#&#8203;2913](https://github.com/redis/redis-py/issues/2913)) #### 🐛 Bug Fixes - Fixing monitor parsing for messages containing specific substrings ([#&#8203;2950](https://github.com/redis/redis-py/issues/2950)) - Cluster determine slot command name need to be upper ([#&#8203;2919](https://github.com/redis/redis-py/issues/2919)) - Support timeout = 0 in search query ([#&#8203;2934](https://github.com/redis/redis-py/issues/2934)) - Fix async sentinel: add `push_request` keyword argument to `read_response` ([#&#8203;2922](https://github.com/redis/redis-py/issues/2922)) - Fix protocol checking for search commands ([#&#8203;2923](https://github.com/redis/redis-py/issues/2923)) - Fix: SentinelManagedConnection.read_response() got an unexpected keyword argument 'push_request' ([#&#8203;2894](https://github.com/redis/redis-py/issues/2894)) - Fix: automatically close connection pool for async Sentinel ([#&#8203;2900](https://github.com/redis/redis-py/issues/2900)) - Save a reference to created async tasks, to avoid tasks potentially disappearing ([#&#8203;2816](https://github.com/redis/redis-py/issues/2816)) - Avoid reference cycling by the garbage collector during response reading ([#&#8203;2932](https://github.com/redis/redis-py/issues/2932)) #### 🧰 Maintenance - Type hint improvements ([#&#8203;2952](https://github.com/redis/redis-py/issues/2952)) - Replace `clear_connect_callbacks` with `_deregister_connect_callback` ([#&#8203;2955](https://github.com/redis/redis-py/issues/2955)) - Async fixes, remove **del** and other things ([#&#8203;2870](https://github.com/redis/redis-py/issues/2870)) - Add pagination, sorting and grouping examples to search json example ([#&#8203;2890](https://github.com/redis/redis-py/issues/2890)) - Remove process-id checks from asyncio. Asyncio and fork() does not mix. ([#&#8203;2911](https://github.com/redis/redis-py/issues/2911)) - Fix resource usage and cleanup Mocks in the unit tests ([#&#8203;2936](https://github.com/redis/redis-py/issues/2936)) - Remove mentions of tox ([#&#8203;2929](https://github.com/redis/redis-py/issues/2929)) - Add 7.2 to supported Redis versions ([#&#8203;2896](https://github.com/redis/redis-py/issues/2896)) - Fix resource warnings in unit tests ([#&#8203;2899](https://github.com/redis/redis-py/issues/2899)) - Fix typo in redis-stream-example.ipynb ([#&#8203;2918](https://github.com/redis/redis-py/issues/2918)) - Deprecate RedisGraph ([#&#8203;2927](https://github.com/redis/redis-py/issues/2927)) - Fix redis 7.2.0 tests ([#&#8203;2902](https://github.com/redis/redis-py/issues/2902)) - Fix test_scorer (search) ([#&#8203;2920](https://github.com/redis/redis-py/issues/2920)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;AOrazaev](https://github.com/AOrazaev), [@&#8203;akx](https://github.com/akx), [@&#8203;anio](https://github.com/anio), [@&#8203;chayim](https://github.com/chayim), [@&#8203;dvora-h](https://github.com/dvora-h), [@&#8203;elfkuzco](https://github.com/elfkuzco), [@&#8203;hauntsaninja](https://github.com/hauntsaninja), [@&#8203;kristjanvalur](https://github.com/kristjanvalur), [@&#8203;meiravgri](https://github.com/meiravgri), [@&#8203;uglide](https://github.com/uglide) and [@&#8203;yangbodong22011](https://github.com/yangbodong22011) </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDkuMiIsInVwZGF0ZWRJblZlciI6IjM2LjEwOS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
Xefir added 1 commit 2023-09-27 06:41:14 +00:00
books / flake8 (push) Successful in 50s Details
books / docker (push) Successful in 1m29s Details
books / pypi (push) Has been skipped Details
150ed78b70
Update dependency redis to v5.0.1
Xefir merged commit 534a49df0b into master 2023-09-28 07:29:17 +00:00
Xefir deleted branch renovate/redis-5.x 2023-09-28 07:29:17 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Xefir/PyNyaaTa#161
No description provided.