Change8

Migrating to Redis Python v6.2.0

Version v6.2.0 introduces 1 breaking change. This guide details how to update your code.

Released: 5/28/2025

1
Breaking Changes
3
Migration Steps
3
Affected Symbols

⚠️ Check Your Code

If you use any of these symbols, you need to read this guide:

RedisClusterRedisSSLContextindex_definition

Breaking Changes

Issue #1

Dropped support for Python 3.8; projects must upgrade to Python 3.9 or newer.

Migration Steps

  1. 1
    If your code imports `indexDefinition`, change it to `index_definition`.
  2. 2
    Ensure the `hiredis-py` package is installed if you rely on RESP3 support.
  3. 3
    Review any custom usage of `RedisSSLContext` to confirm the restored default behavior.

Release Summary

This release introduces async RedisCluster enhancements, adds RESP3 support, and drops Python 3.8 support while fixing several bugs.

Need More Details?

View the full release notes and all changes for Redis Python v6.2.0.

View Full Changelog