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

fix(deps): update dependency redis to v5 #136

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 10, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
redis (changelog) ^4.0 -> ^5.0.0 age adoption passing confidence

Release Notes

redis/redis-py (redis)

v5.0.1: 5.0.1

Compare Source

Changes

🚀 New Features

  • Provide aclose() / close() for classes requiring lifetime management (#​2898)
  • Add support for ModuleCommands in cluster (#​2951)
  • Add support for multiple values in RPUSHX (#​2949)
  • Add Redis.from_pool() class method, for explicitly owning and closing a ConnectionPool (#​2913)

🐛 Bug Fixes

  • Fixing monitor parsing for messages containing specific substrings (#​2950)
  • Cluster determine slot command name need to be upper (#​2919)
  • Support timeout = 0 in search query (#​2934)
  • Fix async sentinel: add push_request keyword argument to read_response (#​2922)
  • Fix protocol checking for search commands (#​2923)
  • Fix: SentinelManagedConnection.read_response() got an unexpected keyword argument 'push_request' (#​2894)
  • Fix: automatically close connection pool for async Sentinel (#​2900)
  • Save a reference to created async tasks, to avoid tasks potentially disappearing (#​2816)
  • Avoid reference cycling by the garbage collector during response reading (#​2932)

🧰 Maintenance

  • Type hint improvements (#​2952)
  • Replace clear_connect_callbacks with _deregister_connect_callback (#​2955)
  • Async fixes, remove del and other things (#​2870)
  • Add pagination, sorting and grouping examples to search json example (#​2890)
  • Remove process-id checks from asyncio. Asyncio and fork() does not mix. (#​2911)
  • Fix resource usage and cleanup Mocks in the unit tests (#​2936)
  • Remove mentions of tox (#​2929)
  • Add 7.2 to supported Redis versions (#​2896)
  • Fix resource warnings in unit tests (#​2899)
  • Fix typo in redis-stream-example.ipynb (#​2918)
  • Deprecate RedisGraph (#​2927)
  • Fix redis 7.2.0 tests (#​2902)
  • Fix test_scorer (search) (#​2920)

Contributors

We'd like to thank all the contributors who worked on this release!

@​AOrazaev, @​akx, @​anio, @​chayim, @​dvora-h, @​elfkuzco, @​hauntsaninja, @​kristjanvalur, @​meiravgri, @​uglide and @​yangbodong22011

v5.0.0: 5.0.0

Compare Source

What's new?

Triggers and Functions support

Triggers and Functions allow you to execute server-side functions triggered when key values are modified or created in Redis, a stream entry arrival, or explicitly calling them. Simply put, you can replace Lua scripts with easy-to-develop JavaScript or TypeScript code. Move your business logic closer to the data to ensure a lower latency, and forget about updating dependent key values manually in your code.
Try it for yourself with Quick start

Full Redis 7.2 and RESP3 support
Python 3.7 End-of-Life

Python 3.7 has reached its end-of-life (EOL) as of June 2023. This means that starting from this date, Python 3.7 will no longer receive any updates, including security patches, bug fixes, or improvements. If you continue to use Python 3.7 post-EOL, you may expose your projects and systems to potential security vulnerabilities. We ended its support in this version and strongly recommend migrating to Python 3.10.

🐛 Bug Fixes

  • Fix timeout retrying on pipeline execution (#​2812)
  • Fix socket garbage collection (#​2859)

🧰 Maintenance

  • Updating client license to clear, MIT (#​2884)
  • Add py.typed in accordance with PEP-561 (#​2738)
  • Dependabot label change (#​2880)
  • Fix type hints in SearchCommands (#​2817)
  • Add sync modules (except search) tests to cluster CI (#​2850)
  • Fix a duplicate word in CONTRIBUTING.md (#​2848)
  • Fixing doc builds (#​2869)
  • Change cluster docker to edge and enable debug command (#​2853)

Contributors

We'd like to thank all the contributors who worked on this release!

@​JoanFM, @​Ovsyanka83, @​chayim, @​dependabot, @​dependabot[bot], @​dvora-h, @​kristjanvalur, @​kurtmckee, @​pall-j and @​shacharPash


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Sep 10, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
installing v2 tool python v3.12.0
[16:07:37.710] INFO (9): Installing tool python v3.12.0...
linking tool python v3.12.0
Python 3.12.0
pip 23.2.1 from /opt/containerbase/tools/python/3.12.0/lib/python3.12/site-packages/pip (python 3.12)
[16:07:43.606] INFO (9): Installed tool python in 5.8s.
[16:07:43.960] INFO (148): Installing tool poetry v1.6.1...
installing v2 tool poetry v1.6.1
linking tool poetry v1.6.1
Poetry (version 1.6.1)
[16:07:57.051] INFO (148): Installed tool poetry in 13s.
Updating dependencies
Resolving dependencies...

Creating virtualenv mihama-yYlVSdm0-py3.12 in /home/ubuntu/.cache/pypoetry/virtualenvs

Because redis-om (0.2.1) depends on redis (>=3.5.3,<5.0.0)
 and no versions of redis-om match >=0.2,<0.2.1 || >0.2.1,<0.3, redis-om (>=0.2,<0.3) requires redis (>=3.5.3,<5.0.0).
So, because mihama depends on both redis (^5.0.0) and redis-om (^0.2), version solving failed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants