fix(deps): update dependency redis to v5.3.0 #96

Merged
kumi merged 2 commits from renovate/redis-5.x-lockfile into main 2025-05-04 13:20:18 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
redis (changelog) dependencies minor 5.2.1 -> 5.3.0

Release Notes

redis/redis-py (redis)

v5.3.0: 5.3.0

Compare Source

Changes

🚀 New Features

Token-based authentication:

  • Added StreamingCredentialProvider interface (#​3445)
  • Extended CredentialProvider class with get_credentials_async method (#​3445)
  • Added event-driven entities (Dispatcher, Listener, Events) (#​3445)

New StreamingCredentialProvider interface was added with an idea to integrate redis-py with credential providers that stream an events that should be handled by given listeners.

Check the documentation for the quick start guide.

CredentialProvider instance creation interface was enhanced. Feel free to check the updated documentation

Other features:

  • Exponential with jitter backoff (#​3550)
  • Adding load balancing strategy configuration to cluster clients(replacement for 'read_from_replicas' config) (#​3563)

⚠️ Deprecations

  • Deprecating unused arguments in connection pools's get_connection functions(#​3517 #​3625)
  • Adding load balancing strategy configuration to cluster clients(replacement for 'read_from_replicas' config) (#​3563)

🐛 Bug Fixes

  • When SlotNotCoveredError is raised, the cluster topology should be reinitialized as part of error handling and retrying of the commands. (#​3621)
  • Fixed Token-based authentication documentation
  • Fixed bug with missing PyJWT dependency (#​3462)
  • Fixed flacky TokenManager test (#​3468)
  • Fix incorrect attribute reuse in redis.connection.CacheProxyConnection (#​3456)
  • Moved self._lock initialisation to Pool constructor (#​3473)
  • Remove decreasing of created connections count when releasing not owned by connection pool connection(fixes issue #​2832). (#​3514)

🧰 Maintenance

  • Updated CredentialProvider test infrastructure (#​3502)
  • Expand type for EncodedT (#​3472)
  • DOC-4423: add TCEs for various command pages (#​3476)
  • DOC-4345 added testable JSON search examples for home page (#​3407)
  • DOC-4796 fixed capped lists example (#​3493)
  • Added unit test fix to improve compatibility with MacOS (#​3486)
  • Added missing type hints (#​3494 #​3495 #​3496 #​3357)
  • Replacing the redis and redis-stack-server images with redis-libs-tests image in test infrastructure (#​3505)

Contributors

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

@​uglide @​woutdenolf @​vladvildanov @​hauntsaninja @​dwdougherty @​patrick91 @​Vulwsztyn @​JimNero009 @​andy-stark-redis @​petyaslavova


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 | Type | Update | Change | |---|---|---|---| | [redis](https://github.com/redis/redis-py) ([changelog](https://github.com/redis/redis-py/releases)) | dependencies | minor | `5.2.1` -> `5.3.0` | --- ### Release Notes <details> <summary>redis/redis-py (redis)</summary> ### [`v5.3.0`](https://github.com/redis/redis-py/releases/tag/v5.3.0): 5.3.0 [Compare Source](https://github.com/redis/redis-py/compare/v5.2.1...v5.3.0) ### Changes #### 🚀 New Features **Token-based authentication:** - Added StreamingCredentialProvider interface ([#&#8203;3445](https://github.com/redis/redis-py/issues/3445)) - Extended CredentialProvider class with get_credentials_async method ([#&#8203;3445](https://github.com/redis/redis-py/issues/3445)) - Added event-driven entities (Dispatcher, Listener, Events) ([#&#8203;3445](https://github.com/redis/redis-py/issues/3445)) New **StreamingCredentialProvider** interface was added with an idea to integrate redis-py with credential providers that stream an events that should be handled by given listeners. Check the [documentation](https://github.com/redis/redis-py/blob/5.3/docs/advanced_features.rst#token-based-authentication) for the quick start guide. CredentialProvider instance creation interface was enhanced. Feel free to check the updated [documentation](https://github.com/redis/redis-py-entraid/blob/main/README.md) **Other features:** - Exponential with jitter backoff ([#&#8203;3550](https://github.com/redis/redis-py/issues/3550)) - Adding load balancing strategy configuration to cluster clients(replacement for 'read_from_replicas' config) ([#&#8203;3563](https://github.com/redis/redis-py/issues/3563)) #### ⚠️ Deprecations - Deprecating unused arguments in connection pools's get_connection functions([#&#8203;3517](https://github.com/redis/redis-py/issues/3517) [#&#8203;3625](https://github.com/redis/redis-py/issues/3625)) - Adding load balancing strategy configuration to cluster clients(replacement for 'read_from_replicas' config) ([#&#8203;3563](https://github.com/redis/redis-py/issues/3563)) #### 🐛 Bug Fixes - When SlotNotCoveredError is raised, the cluster topology should be reinitialized as part of error handling and retrying of the commands. ([#&#8203;3621](https://github.com/redis/redis-py/issues/3621)) - Fixed Token-based authentication documentation - Fixed bug with missing PyJWT dependency ([#&#8203;3462](https://github.com/redis/redis-py/issues/3462)) - Fixed flacky TokenManager test ([#&#8203;3468](https://github.com/redis/redis-py/issues/3468)) - Fix incorrect attribute reuse in redis.connection.CacheProxyConnection ([#&#8203;3456](https://github.com/redis/redis-py/issues/3456)) - Moved self.\_lock initialisation to Pool constructor ([#&#8203;3473](https://github.com/redis/redis-py/issues/3473)) - Remove decreasing of created connections count when releasing not owned by connection pool connection(fixes issue [#&#8203;2832](https://github.com/redis/redis-py/issues/2832)). ([#&#8203;3514](https://github.com/redis/redis-py/issues/3514)) #### 🧰 Maintenance - Updated CredentialProvider test infrastructure ([#&#8203;3502](https://github.com/redis/redis-py/issues/3502)) - Expand type for EncodedT ([#&#8203;3472](https://github.com/redis/redis-py/issues/3472)) - DOC-4423: add TCEs for various command pages ([#&#8203;3476](https://github.com/redis/redis-py/issues/3476)) - DOC-4345 added testable JSON search examples for home page ([#&#8203;3407](https://github.com/redis/redis-py/issues/3407)) - DOC-4796 fixed capped lists example ([#&#8203;3493](https://github.com/redis/redis-py/issues/3493)) - Added unit test fix to improve compatibility with MacOS ([#&#8203;3486](https://github.com/redis/redis-py/issues/3486)) - Added missing type hints ([#&#8203;3494](https://github.com/redis/redis-py/issues/3494) [#&#8203;3495](https://github.com/redis/redis-py/issues/3495) [#&#8203;3496](https://github.com/redis/redis-py/issues/3496) [#&#8203;3357](https://github.com/redis/redis-py/issues/3357)) - Replacing the redis and redis-stack-server images with redis-libs-tests image in test infrastructure ([#&#8203;3505](https://github.com/redis/redis-py/issues/3505)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;uglide](https://github.com/uglide) [@&#8203;woutdenolf](https://github.com/woutdenolf) [@&#8203;vladvildanov](https://github.com/vladvildanov) [@&#8203;hauntsaninja](https://github.com/hauntsaninja) [@&#8203;dwdougherty](https://github.com/dwdougherty) [@&#8203;patrick91](https://github.com/patrick91) [@&#8203;Vulwsztyn](https://github.com/Vulwsztyn) [@&#8203;JimNero009](https://github.com/JimNero009) [@&#8203;andy-stark-redis](https://github.com/andy-stark-redis) [@&#8203;petyaslavova](https://github.com/petyaslavova) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuOCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kumi merged commit de996edbd9 into main 2025-05-04 13:20:18 +00:00
kumi deleted branch renovate/redis-5.x-lockfile 2025-05-04 13:20:19 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
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: PrivateCoffee/quackscape#96
No description provided.