-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Merge 5.0 to master #2849
Merge 5.0 to master #2849
Commits on Mar 23, 2023
-
Reorganizing the parsers code, and add support for RESP3 (redis#2574)
* Reorganizing the parsers code * fix build package * fix imports * fix flake8 * add resp to Connection class * core commands * python resp3 parser * pipeline * async resp3 parser * some asymc tests * resp3 parser for async cluster * async commands tests * linters * linters * linters * fix ModuleNotFoundError * fix tests * fix assert_resp_response_in * fix command_getkeys in cluster * fail-fast false * version --------- Co-authored-by: Chayim I. Kirshen <c@kirshen.com>
Configuration menu - View commit details
-
Copy full SHA for 753018e - Browse repository at this point
Copy the full SHA 753018eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0db4eba - Browse repository at this point
Copy the full SHA 0db4ebaView commit details
Commits on Apr 24, 2023
-
Add support for PubSub with RESP3 parser (redis#2721)
* add resp3 pubsub * linters * _set_info_logger func * async pubsun * docstring
Configuration menu - View commit details
-
Copy full SHA for a96a38a - Browse repository at this point
Copy the full SHA a96a38aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5abfe0 - Browse repository at this point
Copy the full SHA f5abfe0View commit details
Commits on May 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f1aa582 - Browse repository at this point
Copy the full SHA f1aa582View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49ed60b - Browse repository at this point
Copy the full SHA 49ed60bView commit details -
Configuration menu - View commit details
-
Copy full SHA for df47761 - Browse repository at this point
Copy the full SHA df47761View commit details
Commits on May 28, 2023
-
Fix parse resp3 dict response: don't use dict comprehension (redis#2757)
* Fix parse respp3 dict response * linters * pin urlib version
Configuration menu - View commit details
-
Copy full SHA for 312118b - Browse repository at this point
Copy the full SHA 312118bView commit details -
* sharded pubsub * sharded pubsub Co-authored-by: Leibale Eidelman <me@leibale.com> * Shrded Pubsub TestPubSubSubscribeUnsubscribe * fix TestPubSubSubscribeUnsubscribe * more tests * linters * TestPubSubSubcommands * fix @leibale comments * linters * fix @chayim comments --------- Co-authored-by: Leibale Eidelman <me@leibale.com>
Configuration menu - View commit details
-
Copy full SHA for f46829c - Browse repository at this point
Copy the full SHA f46829cView commit details -
Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e8fc092 - Browse repository at this point
Copy the full SHA e8fc092View commit details
Commits on Jun 1, 2023
-
* fix command response in resp3 * linters * acl_log & acl_getuser * client_info * test_commands and test_asyncio/test_commands * fix test_command_parser * fix asyncio/test_connection/test_invalid_response * linters * all the tests * push handler sharded pubsub * Use assert_resp_response wherever possible * fix test_xreadgroup * fix cluster_zdiffstore and cluster_zinter * fix review comments * fix review comments * linters
Configuration menu - View commit details
-
Copy full SHA for 326f351 - Browse repository at this point
Copy the full SHA 326f351View commit details
Commits on Jun 4, 2023
-
Fixing asyncio import (redis#2759)
* asyncio import fix * pinning urllib3 to fix CI (redis#2748) * noqa * fixint linters
Configuration menu - View commit details
-
Copy full SHA for 5f49e05 - Browse repository at this point
Copy the full SHA 5f49e05View commit details
Commits on Jun 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e13b239 - Browse repository at this point
Copy the full SHA e13b239View commit details
Commits on Jun 15, 2023
-
RESP3 response callbacks (redis#2798)
* start cleaning * clean sone callbacks * response callbacks * revert redismod-url change * fix async tests * linters * async cluster --------- Co-authored-by: Chayim <chayim@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2a935eb - Browse repository at this point
Copy the full SHA 2a935ebView commit details
Commits on Jun 18, 2023
-
RESP3 modules support (redis#2803)
* start cleaning * clean sone callbacks * response callbacks * modules * tests * finish sync search tests * linters * async modules * linters * revert redismod-url change
Configuration menu - View commit details
-
Copy full SHA for e4faf3a - Browse repository at this point
Copy the full SHA e4faf3aView commit details -
RESP3 fix async tests (redis#2806)
* fix tests * add stralgo callback in resp2 * add callback to acl list in resp2
Configuration menu - View commit details
-
Copy full SHA for adc5116 - Browse repository at this point
Copy the full SHA adc5116View commit details
Commits on Jun 27, 2023
-
Adding RESP3 tests support (redis#2793)
* start cleaning * clean sone callbacks * first phase * tox wrap back * changing cancel format * syntax * lint * docker * contain the docker * tox dev reqs * back to testing * response callbacks * protocol into async conftest * fix for 3.11 invoke * docker changes * fix tests * linters * adding * resp3 tox, until killed * remove tox * tests * requirements.txt * restoring requirements.txt * adding a sleep, hopefully enough time for the cluster dockers to settle * fix search tests * search test, disable uvloop for pypy due to bug * syn * reg * dialect test improvement * sleep+, xfail * tests * resp * flaky search test too * timing * timing for async test * test changes * fix assert_interval_advanced * revert * mark async health_check tests with xfail * change strict to false * fix github actions package validation --------- Co-authored-by: dvora-h <dvora.heller@redis.com>
Configuration menu - View commit details
-
Copy full SHA for 8aba380 - Browse repository at this point
Copy the full SHA 8aba380View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc6dbd8 - Browse repository at this point
Copy the full SHA bc6dbd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d453665 - Browse repository at this point
Copy the full SHA d453665View commit details
Commits on Jul 3, 2023
-
Merge master to 5.0 (redis#2827)
* fix: do not use asyncio's timeout lib before 3.11.2 (redis#2659) There's an issue in asyncio's timeout lib before 3.11.3 that causes async calls to raise `CancelledError`. This is a cpython issue that was fixed in this commit [1] and cherry-picked to previous versions, meaning 3.11.3 will work correctly. Check [2] for more info. [1] python/cpython@04adf2d [2] redis#2633 * UnixDomainSocketConnection missing constructor argument (redis#2630) * removing useless files (redis#2642) * Fix issue 2660: PytestUnraisableExceptionWarning from asycio client (redis#2669) * Fixing cancelled async futures (redis#2666) Co-authored-by: James R T <jamestiotio@gmail.com> Co-authored-by: dvora-h <dvora.heller@redis.com> * Fix async (redis#2673) * Version 4.5.4 (redis#2674) * Really do not use asyncio's timeout lib before 3.11.2 (redis#2699) 4802530 made async-timeout required only on Python 3.11.2 and earlier. However, according to PEP-508, python_version marker is compared to first two numbers of Python version tuple - so it will evaluate to True also on 3.11.3, and install a package as a dependency. * asyncio: Fix memory leak caused by hiredis (redis#2693) (redis#2694) * Update example of Redisearch creating index (redis#2703) When creating index, fields should be passed inside an iterable (e.g. list or tuple) * Improving Vector Similarity Search Example (redis#2661) * update vss docs * add embeddings creation and storage examples * update based on feedback * fix version and link * include more realistic search examples and clean up indices * completely remove initial cap reference --------- Co-authored-by: Chayim <chayim@users.noreply.github.com> * Fix incorrect usage of once flag in async Sentinel (redis#2718) In the execute_command of the async Sentinel, the once flag was being used incorrectly, with its meaning inverted. To fix we just needed to invert the if and else bodies. This isn't being caught by the tests currently because the tests of commands that use this flag do not check their results/effects (for example the "test_ckquorum" test). * Fix topk list example. (redis#2724) * Improve error output for master discovery (redis#2720) Make MasterNotFoundError exception more precise in the case of ConnectionError and TimeoutError to help the user to identify configuration errors Co-authored-by: Marc Schöchlin <marc.schoechlin@flipapp.de> * return response in case of KeyError (redis#2628) * return response in case of KeyError * fix code linters error * fix linters 2 * fix linters 3 * Add WITHSCORES to ZREVRANK Command (redis#2725) * add withscores to zrevrank * change 0 -> 2 * fix errors * split test * Fix `ClusterCommandProtocol` not itself being marked as a protocol (redis#2729) * Fix `ClusterCommandProtocol` not itself being marked as a protocol * Update CHANGES * Fix potential race condition during disconnection (redis#2719) When the disconnect() function is called twice in parallel it is possible that one thread deletes the self._sock reference, while the other thread will attempt to call .close() on it, leading to an AttributeError. This situation can routinely be encountered by closing the connection in a PubSubWorkerThread error handler in a blocking thread (ie. with sleep_time==None), and then calling .close() on the PubSub object. The main thread will then run into the disconnect() function, and the listener thread is woken up by the closure and will race into the disconnect() function, too. This can be fixed easily by copying the object reference before doing the None-check, similar to what we do in the redis.client.close() function. * add "address_remap" feature to RedisCluster (redis#2726) * add cluster "host_port_remap" feature for asyncio.RedisCluster * Add a unittest for asyncio.RedisCluster * Add host_port_remap to _sync_ RedisCluster * add synchronous tests * rename arg to `address_remap` and take and return an address tuple. * Add class documentation * Add CHANGES * nermina changes from NRedisStack (redis#2736) * Updated AWS Elasticache IAM Connection Example (redis#2702) Co-authored-by: Nick Gerow <nick.gerow@enlightedinc.com> * pinning urllib3 to fix CI (redis#2748) * Add RedisCluster.remap_host_port, Update tests for CWE 404 (redis#2706) * Use provided redis address. Bind to IPv4 * Add missing "await" and perform the correct test for pipe eimpty * Wait for a send event, rather than rely on sleep time. Excpect cancel errors. * set delay to 0 except for operation we want to cancel This speeds up the unit tests considerably by eliminating unnecessary delay. * Release resources in test * Fix cluster test to use address_remap and multiple proxies. * Use context manager to manage DelayProxy * Mark failing pipeline tests * lint * Use a common "master_host" test fixture * Update redismodules.rst (redis#2747) Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Add support for cluster myshardid (redis#2704) * feat: adding support for cluster myshardid * lint fix * fix: comment fix and async test * fix: adding version check * fix lint: * linters --------- Co-authored-by: Anuragkillswitch <70265851+Anuragkillswitch@users.noreply.github.com> Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> Co-authored-by: dvora-h <dvora.heller@redis.com> * clean warnings (redis#2731) * fix parse_slowlog_get (redis#2732) * Optionally disable disconnects in read_response (redis#2695) * Add regression tests and fixes for issue redis#1128 * Fix tests for resumable read_response to use "disconnect_on_error" * undo prevision fix attempts in async client and cluster * re-enable cluster test * Suggestions from code review * Add CHANGES * Add client no-touch (redis#2745) * Add client no-touch * Update redis/commands/core.py Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Update test_commands.py Improve test_client_no_touch * Update test_commands.py Add async version test case * Chore remove whitespace Oops --------- Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * fix create single_connection_client from url (redis#2752) * Fix `xadd` allow non negative maxlen (redis#2739) * Fix xadd allow non negative maxlen * Update change log --------- Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Version 4.5.5 (redis#2753) * Kristjan/issue redis#2754: Add missing argument to SentinelManagedConnection.read_response() (redis#2756) * Increase timeout for a test which would hang completely if failing. Timeouts in virtualized CI backends can occasionally fail if too short. * add "disconnect_on_error" argument to SentinelManagedConnection * update Changes * lint * support JSON.MERGE Command (redis#2761) * support JSON.MERGE Command * linters * try with abc instead person * change @skip_ifmodversion_lt to latest ReJSON 2.4.7 * change version * fix test * linters * add async test * Issue redis#2749: Remove unnecessary __del__ handlers (redis#2755) * Remove unnecessary __del__ handlers There normally should be no logic attached to del. Cleanly disconnecting network resources is not needed at that time. * add CHANGES * Add WITHSCORE to ZRANK (redis#2758) * add withscore to zrank with tests * fix test * Fix JSON.MERGE Summary (redis#2786) * Fix JSON.MERGE Summary * linters * Fixed key error in parse_xinfo_stream (redis#2788) * insert newline to prevent sphinx from assuming code block (redis#2796) * Introduce OutOfMemoryError exception for Redis write command rejections due to OOM errors (redis#2778) * expose OutOfMemoryError as explicit exception type - handle "OOM" error code string by raising explicit exception type instance - enables callers to avoid string matching after catching ResponseError * add OutOfMemoryError exception class docstring * Provide more info in the exception docstring * Fix formatting * Again * linters --------- Co-authored-by: Chayim <chayim@users.noreply.github.com> Co-authored-by: Igor Malinovskiy <u.glide@gmail.com> Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Add unit tests for the `connect` method of all Redis connection classes (redis#2631) * tests: move certificate discovery to a separate module * tests: add 'connect' tests for all Redis connection classes --------- Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Fix dead weakref in sentinel connection causing ReferenceError (redis#2767) (redis#2771) * Fix dead weakref in sentinel conn (redis#2767) * Update CHANGES --------- Co-authored-by: Igor Malinovskiy <u.glide@gmail.com> Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * chore(documentation): fix redirects and some small cleanups (redis#2801) * Add waitaof (redis#2760) * Add waitaof * Update test_commands.py add test_waitaof * Update test_commands.py Add test_waitaof * Fix doc string --------- Co-authored-by: Chayim <chayim@users.noreply.github.com> Co-authored-by: Igor Malinovskiy <u.glide@gmail.com> * Extract abstract async connection class (redis#2734) * make 'socket_timeout' and 'socket_connect_timeout' equivalent for TCP and UDS connections * abstract asynio connection in analogy with the synchronous connection --------- Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Fix type hint for retry_on_error in async cluster (redis#2804) * fix(asyncio.cluster): fixup retry_on_error type hint This parameter accepts a list of _classes of Exceptions_, not a list of instantiated Exceptions. Fixup the type hint accordingly. * chore: update changelog --------- Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> * Fix CI (redis#2809) * Support JSON.MSET Command (redis#2766) * support JSON.MERGE Command * linters * try with abc instead person * change @skip_ifmodversion_lt to latest ReJSON 2.4.7 * change version * fix test * linters * add async test * Support JSON.MSET command * trying to run CI * linters * add async test * reminder do delete the integration changes * delete the line from integration * fix the interface * change docstring --------- Co-authored-by: Chayim <chayim@users.noreply.github.com> Co-authored-by: dvora-h <dvora.heller@redis.com> * Version 4.6.0 (redis#2810) * master changes * linters * fix test_cwe_404 cluster test --------- Co-authored-by: Thiago Bellini Ribeiro <hackedbellini@gmail.com> Co-authored-by: woutdenolf <woutdenolf@users.sf.net> Co-authored-by: Chayim <chayim@users.noreply.github.com> Co-authored-by: shacharPash <93581407+shacharPash@users.noreply.github.com> Co-authored-by: James R T <jamestiotio@gmail.com> Co-authored-by: Mirek Długosz <miniopl+github@gmail.com> Co-authored-by: Oran Avraham <252748+oranav@users.noreply.github.com> Co-authored-by: mzdehbashi-github <85902780+mzdehbashi-github@users.noreply.github.com> Co-authored-by: Tyler Hutcherson <tyler.hutcherson@redis.com> Co-authored-by: Felipe Machado <462154+felipou@users.noreply.github.com> Co-authored-by: AYMEN Mohammed <53928879+AYMENJD@users.noreply.github.com> Co-authored-by: Marc Schöchlin <ms-github@256bit.org> Co-authored-by: Marc Schöchlin <marc.schoechlin@flipapp.de> Co-authored-by: Avasam <samuel.06@hotmail.com> Co-authored-by: Markus Gerstel <2102431+Anthchirp@users.noreply.github.com> Co-authored-by: Kristján Valur Jónsson <sweskman@gmail.com> Co-authored-by: Nick Gerow <Nick.G.123@hotmail.com> Co-authored-by: Nick Gerow <nick.gerow@enlightedinc.com> Co-authored-by: Cristian Matache <cristianmatache@hotmail.com> Co-authored-by: Anurag Bandyopadhyay <angbpy@gmail.com> Co-authored-by: Anuragkillswitch <70265851+Anuragkillswitch@users.noreply.github.com> Co-authored-by: Seongchuel Ahn <aciddust20@gmail.com> Co-authored-by: Alibi <aliby.bbb@gmail.com> Co-authored-by: Smit Parmar <smitraj333@gmail.com> Co-authored-by: Brad MacPhee <macphee@gmail.com> Co-authored-by: Igor Malinovskiy <u.glide@gmail.com> Co-authored-by: Shahar Lev <shahar_lev@hotmail.com> Co-authored-by: Vladimir Mihailenco <vladimir.webdev@gmail.com> Co-authored-by: Kevin James <KevinJames@thekev.in>
Configuration menu - View commit details
-
Copy full SHA for f2f8c34 - Browse repository at this point
Copy the full SHA f2f8c34View commit details
Commits on Jul 13, 2023
-
RESP3 response-callbacks cleanup (redis#2841)
* cluenup * sentinel callbacks * move callbacks * fix async cluster tests * _parsers and import fix in tests * linters * make modules callbacks private * fix async search * fix --------- Co-authored-by: Chayim I. Kirshen <c@kirshen.com>
Configuration menu - View commit details
-
Copy full SHA for fb10367 - Browse repository at this point
Copy the full SHA fb10367View commit details
Commits on Jul 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d665dbd - Browse repository at this point
Copy the full SHA d665dbdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bf86aa - Browse repository at this point
Copy the full SHA 7bf86aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 90c0b5b - Browse repository at this point
Copy the full SHA 90c0b5bView commit details