14
0
forked from pool/python-redis

WIP DO NOT SUBMIT YET (gh#redis/redis-py#2679)

- Update to 5.0.0rc2:
    - RESP3 response-callbacks cleanup (#2841)
    - Change SISMEMBER return type to int by (#2813)
  - rocket New Features
    - RESP3 modules support (#2803)
  - bug Bug Fixes
    - Fixing asyncio import (#2759)
    - Fix sharded pubsub threads issue (#2799)
  - toolbox Maintenance
    - RESP3 tests (#2780) (#2806)
    - RESP3 response callbacks (#2798)
    - Adding RESP3 tests support (#2793)
- Update to 4.6.0:
    - Support JSON.MERGE command (#2761)
    - Support JSON.MSET command (#2766)
  - rocket New Features
    - Extract abstract async connection class (#2734)
    - Add support for WAITAOF (#2760)
    - Introduce OutOfMemoryError exception for Redis write
      command rejections due to OOM errors (#2778)
    - Add WITHSCORE argument to ZRANK (#2758)
  - bug Bug Fixes
    - Fix dead weakref in sentinel connection causing
      ReferenceError (#2767) (#2771)
    - Fix Key Error in parse_xinfo_stream (#2788)
    - Remove unnecessary __del__ handlers (#2755)
    - Added support for missing argument to
      SentinelManagedConnection.read_response() (#2756)
  - toolbox Maintenance
    - Fix type hint for retry_on_error in async cluster (#2804)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-redis?expand=0&rev=74
This commit is contained in:
2023-07-18 15:32:54 +00:00
committed by Git OBS Bridge
parent 96483c6333
commit c0dbe5ea8c
6 changed files with 60 additions and 387 deletions

View File

@@ -1,3 +1,44 @@
-------------------------------------------------------------------
Tue Jul 18 15:13:06 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Update to 5.0.0rc2:
- RESP3 response-callbacks cleanup (#2841)
- Change SISMEMBER return type to int by (#2813)
- rocket New Features
- RESP3 modules support (#2803)
- bug Bug Fixes
- Fixing asyncio import (#2759)
- Fix sharded pubsub threads issue (#2799)
- toolbox Maintenance
- RESP3 tests (#2780) (#2806)
- RESP3 response callbacks (#2798)
- Adding RESP3 tests support (#2793)
- Update to 4.6.0:
- Support JSON.MERGE command (#2761)
- Support JSON.MSET command (#2766)
- rocket New Features
- Extract abstract async connection class (#2734)
- Add support for WAITAOF (#2760)
- Introduce OutOfMemoryError exception for Redis write
command rejections due to OOM errors (#2778)
- Add WITHSCORE argument to ZRANK (#2758)
- bug Bug Fixes
- Fix dead weakref in sentinel connection causing
ReferenceError (#2767) (#2771)
- Fix Key Error in parse_xinfo_stream (#2788)
- Remove unnecessary __del__ handlers (#2755)
- Added support for missing argument to
SentinelManagedConnection.read_response() (#2756)
- toolbox Maintenance
- Fix type hint for retry_on_error in async cluster (#2804)
- Clean up documents and fix some redirects (#2801)
- Add unit tests for the connect method of all Redis
connection classes (#2631)
- Docstring formatting fix (#2796)
- Update to 5.0.0b:
- Add support for sharded pubsub in sync client (#2762)
- Fixed resp3 dict parse response (#2757)
-------------------------------------------------------------------
Sat May 20 12:11:45 UTC 2023 - Andreas Stieger <Andreas.Stieger@gmx.de>