SpamExperts / pyzor

Pyzor is a Python implementation of a spam-blocking networked system that use spam signatures to identify them.
GNU General Public License v2.0
139 stars 31 forks source link

Bump redis from 3.2.1 to 3.3.0 #82

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps redis from 3.2.1 to 3.3.0.

Changelog *Sourced from [redis's changelog](https://github.com/andymccurdy/redis-py/blob/master/CHANGES).* > * 3.3.0 > * Resolve a race condition with the PubSubWorkerThread. [#1150](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1150) > * Cleanup socket read error messages. Thanks Vic Yu. [#1159](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1159) > * Cleanup the Connection's selector correctly. Thanks Bruce Merry. [#1153](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1153) > * Added a Monitor object to make working with MONITOR output easy. > Thanks Roey Prat [#1033](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1033) > * Internal cleanup: Removed the legacy Token class which was necessary > with older version of Python that are no longer supported. [#1066](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1066) > * Response callbacks are now case insensitive. This allows users that > call Redis.execute_command() directly to pass lower-case command > names and still get reasonable respones. [#1168](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1168) > * Added support for hiredis-py 1.0.0 encoding error support. This should > make the PythonParser and the HiredisParser behave identically > when encountering encoding errors. Thanks Brian Candler. [#1161](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1161)/[#1162](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1162) > * All authentication errors now properly raise AuthenticationError. > AuthenticationError is now a subclass of ConnectionError, which will > cause the connection to be disconnected and cleaned up appropriately. > [#923](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/923) > * Add READONLY and READWRITE commands. Thanks [@​theodesp](https://github.com/theodesp). [#1114](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1114) > * Remove selectors in favor of nonblocking sockets. Selectors had > issues in some environments including eventlet and gevent. This should > resolve those issues with no other side effects. > * Fixed an issue with XCLAIM and previously claimed but not removed > messages. Thanks [@​thomdask](https://github.com/thomdask). [#1192](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1192)/[#1191](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1191) > * Allow for single connection client instances. These instances > are not thread safe but offer other benefits including a subtle > performance increase. > * Added extensive health checks that keep the connections lively. > Passing the "health_check_interval=N" option to the Redis client class > or to a ConnectionPool ensures that a round trip PING/PONG is successful > before any command if the underlying connection has been idle for more > than N seconds. ConnectionErrors and TimeoutErrors are automatically > retried once for health checks. > * Changed the PubSubWorkerThread to use a threading.Event object rather > than a boolean to control the thread's life cycle. Thanks Timothy > Rule. [#1194](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1194)/[#1195](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1195). > * Fixed a bug in Pipeline error handling that would incorrectly retry > ConnectionErrors.
Commits - [`0de7c82`](https://github.com/andymccurdy/redis-py/commit/0de7c82028b81f025424df92620b31d6567e175e) clearer language in docs - [`d9227fe`](https://github.com/andymccurdy/redis-py/commit/d9227fe40c572e75a9699e23c56e337a24d40cfb) update readme with health_check_interval option - [`06b6113`](https://github.com/andymccurdy/redis-py/commit/06b6113de1f19b9cd90a65600c1291e0dcc46a24) version 3.3.0 - [`9e4c1ff`](https://github.com/andymccurdy/redis-py/commit/9e4c1fffe6466d6246e5d2f15e49759f73880d18) Pipelines shouldn't retry ConnectionErrors implicitly - [`6ce11f1`](https://github.com/andymccurdy/redis-py/commit/6ce11f130d3bd7106e4879db70d77c5708d2898e) Add an Event parameter to PubSubWorkerThread and run_in_thread so ([#1195](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1195)) - [`f60b2b0`](https://github.com/andymccurdy/redis-py/commit/f60b2b07caba276b9308340b8ea06e5844f3f0ab) PING/PONG health checks - [`0984b10`](https://github.com/andymccurdy/redis-py/commit/0984b102264b2600a6534ad8fef6f4cab44b4ecc) Ability to create a client that uses a single connection - [`6e23760`](https://github.com/andymccurdy/redis-py/commit/6e23760fefbdf27ec941a2c3ae1ec2657875ac31) Fix typo in README and CHANGELOG ([#1133](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1133)) - [`088c0ab`](https://github.com/andymccurdy/redis-py/commit/088c0ab359e6f52954c955a08356e32bb7687ae9) Updates README.rst with svg badge ([#1182](https://github-redirect.dependabot.com/andymccurdy/redis-py/issues/1182)) - [`5faed95`](https://github.com/andymccurdy/redis-py/commit/5faed95b3b248d7d076298afd357a042cf916757) Handle removed claimed messages without an exception - Additional commits viewable in [compare view](https://github.com/andymccurdy/redis-py/compare/3.2.1...3.3.0)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
dependabot-preview[bot] commented 5 years ago

Superseded by #83.