Skip to content

chore(deps): Bump redis from 3.4.1 to 3.5.3 #52

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jun 23, 2020

Bumps redis from 3.4.1 to 3.5.3.

Changelog

Sourced from redis's changelog.

  • (in development)
    • Restore try/except clauses to del methods. These will be removed in 4.0 when more explicit resource management if enforced. #1339
    • Update the master_address when Sentinels promote a new master. #847
    • Update SentinelConnectionPool to not forcefully disconnect other in-use connections which can negatively affect threaded applications. #1345
  • 3.5.2 (May 14, 2020)
    • Tune the locking in ConnectionPool.get_connection so that the lock is not held while waiting for the socket to establish and validate the TCP connection.
  • 3.5.1 (May 9, 2020)
  • 3.5.0 (April 29, 2020)
    • Removed exception trapping from del methods. redis-py objects that hold various resources implement del cleanup methods to release those resources when the object goes out of scope. This provides a fallback for when these objects aren't explicitly closed by user code. Prior to this change any errors encountered in closing these resources would be hidden from the user. Thanks @jdufresne. #1281
    • Expanded support for connection strings specifying a username connecting to pre-v6 servers. #1274
    • Optimized Lock's blocking_timeout and sleep. If the lock cannot be acquired and the sleep value would cause the loop to sleep beyond blocking_timeout, fail immediately. Thanks @clslgrnc. #1263
    • Added support for passing Python memoryviews to Redis command args that expect strings or bytes. The memoryview instance is sent directly to the socket such that there are zero copies made of the underlying data during command packing. Thanks @Cody-G. #1265, #1285
    • HSET command now can accept multiple pairs. HMSET has been marked as deprecated now. Thanks to @laixintao #1271
    • Don't manually DISCARD when encountering an ExecAbortError. Thanks @nickgaya, #1300/#1301
    • Reset the watched state of pipelines after calling exec. This saves a roundtrip to the server by not having to call UNWATCH within Pipeline.reset(). Thanks @nickgaya, #1299/#1302
    • Added the KEEPTTL option for the SET command. Thanks @laixintao #1304/#1280
    • Added the MEMORY STATS command. #1268
    • Lock.extend() now has a new option, replace_ttl. When False (the default), Lock.extend() adds the additional_time to the lock's existing TTL. When replace_ttl=True, the lock's existing TTL is replaced with the value of additional_time.
    • Add testing and support for PyPy.
Commits
  • 2c9f41f 3.5.3
  • e06af2a SentinelConnectionPool plays better with threaded applications.
  • 7973bd9 changelog
  • e78d7a0 [sentinel] update master address if it changes. (#847)
  • afb3b81 Restore try/except in del methods
  • 7c0a67a 3.5.2
  • 32a5840 Tune the locking in ConnectionPool.get_connection
  • fa37b8b 3.5.1
  • a7559fe Fix for HSET argument validation to allow any non-None key
  • 252c840 Python 2 compatibility note
  • Additional commits viewable in compare view

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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @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:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jun 23, 2020
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from 1a31032 to aa1b384 Compare June 23, 2020 02:49
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from aa1b384 to d46c70a Compare July 18, 2020 00:31
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from d46c70a to e9a0a23 Compare July 27, 2020 23:50
@codecov-commenter
Copy link

codecov-commenter commented Jul 27, 2020

Codecov Report

Merging #52 (877b8c4) into master (97a9303) will decrease coverage by 1.07%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #52      +/-   ##
==========================================
- Coverage   96.86%   95.78%   -1.08%     
==========================================
  Files          26       26              
  Lines        1021     1021              
  Branches       57       57              
==========================================
- Hits          989      978      -11     
- Misses         30       40      +10     
- Partials        2        3       +1     
Impacted Files Coverage Δ
ynab_sdk/utils/clients/cached_client.py 53.12% <0.00%> (-31.25%) ⬇️
ynab_sdk/utils/configurations/cached.py 70.00% <0.00%> (-5.00%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 97a9303...877b8c4. Read the comment docs.

@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch 2 times, most recently from d4b85fa to 2943536 Compare August 2, 2020 00:07
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from 2943536 to 09a0569 Compare August 9, 2020 22:55
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch 2 times, most recently from 6c1ea45 to 0f1281f Compare August 24, 2020 23:34
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from 0f1281f to aceecb5 Compare September 1, 2020 00:22
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from aceecb5 to 1caabd2 Compare March 9, 2021 01:38
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from 1caabd2 to b208737 Compare April 28, 2021 13:24
@dependabot-preview dependabot-preview bot force-pushed the dependabot/pip/redis-3.5.3 branch from b208737 to 877b8c4 Compare July 15, 2021 06:09
@codeclimate
Copy link

codeclimate bot commented Jul 15, 2021

Code Climate has analyzed commit 877b8c4 and detected 0 issues on this pull request.

View more on Code Climate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant