Skip to content
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

Bump redis from 3.1.0 to 3.2.1 #446

Closed
wants to merge 5 commits into from

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jun 6, 2019

Bumps redis from 3.1.0 to 3.2.1.

Changelog

Sourced from redis's changelog.

  • 3.2.1
    • Fix SentinelConnectionPool to work in multiprocess/forked environments.
  • 3.2.0
    • Added support for select.poll to test whether data can be read
      on a socket. This should allow for significantly more connections to
      be used with pubsub. Fixes #486/#1115
    • Attempt to guarentee that the ConnectionPool hands out healthy
      connections. Healthy connections are those that have an established
      socket connection to the Redis server, are ready to accept a command
      and have no data available to read. Fixes #1127/#886
    • Use the socket.IPPROTO_TCP constant instead of socket.SOL_TCP.
      IPPROTO_TCP is available on more interpreters (Jython for instance).
      Thanks @​Junnplus. #1130
    • Fixed a regression introduced in 3.0 that mishandles exceptions not
      derived from the base Exception class. KeyboardInterrupt and
      gevent.timeout notable. Thanks Christian Fersch. #1128/#1129
    • Significant improvements to handing connections with forked processes.
      Parent and child processes no longer trample on each others' connections.
      Thanks to Jay Rolette for the patch and highlighting this issue.
      #504/#732/#784/#863
    • PythonParser no longer closes the associated connection's socket. The
      connection itself will close the socket. #1108/#1085
Commits
  • f87d40c 3.2.1
  • d61a15e remove unneccessary checkpid from SentinelConnectionPool
  • 31519e4 actual 3.2.0
  • b022616 3.2.0
  • 363c05d test all selectors via pytest parameterization
  • 78c181b python2 compat
  • cfa2bc9 attempt to provide only healthy connections from the pool
  • a464459 Merge pull request #1129 from Chronial/feature/fix-except
  • ff17e92 Merge pull request #1130 from Junnplus/socket-patch
  • 6155774 Merge pull request #1131 from Junnplus/fix-typo
  • 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 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 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)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • 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.

Jonathan DEKHTIAR and others added 3 commits January 14, 2019 23:51
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jun 6, 2019
Jonathan DEKHTIAR and others added 2 commits June 6, 2019 23:50
…-4.5.3

Bump coverage from 4.5.2 to 4.5.3
Bumps [redis](https://github.com/andymccurdy/redis-py) from 3.1.0 to 3.2.1.
- [Release notes](https://github.com/andymccurdy/redis-py/releases)
- [Changelog](https://github.com/andymccurdy/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@3.1.0...3.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot changed the base branch from master to dev June 6, 2019 20:51
@codecov
Copy link

codecov bot commented Jun 6, 2019

Codecov Report

Merging #446 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #446   +/-   ##
=======================================
  Coverage   42.66%   42.66%           
=======================================
  Files          52       52           
  Lines        3223     3223           
=======================================
  Hits         1375     1375           
  Misses       1848     1848

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 a5311a3...c6a8493. Read the comment docs.

@codecov
Copy link

codecov bot commented Jun 6, 2019

Codecov Report

Merging #446 into dev will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##              dev     #446   +/-   ##
=======================================
  Coverage   42.66%   42.66%           
=======================================
  Files          52       52           
  Lines        3223     3223           
=======================================
  Hits         1375     1375           
  Misses       1848     1848

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 985b6b3...c6a8493. Read the comment docs.

@coveralls
Copy link

coveralls commented Jun 6, 2019

Coverage Status

Coverage remained the same at 42.662% when pulling c6a8493 on dependabot/pip/redis-3.2.1 into 985b6b3 on dev.

@dependabot-preview
Copy link
Contributor Author

Looks like redis is up-to-date now, so this is no longer needed.

@dependabot-preview dependabot-preview bot deleted the dependabot/pip/redis-3.2.1 branch June 10, 2019 18:23
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.

None yet

2 participants