Change8

Migrating to Redis Python v7.0.0b2

Version v7.0.0b2 introduces 1 breaking change. This guide details how to update your code.

Released: 9/26/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:

MaintNotificationsConfigMaintenancePushNotificationHandlerssl_verify_flags_config

Breaking Changes

Issue #1

Renamed classes and configuration arguments for maintenance push notifications handling during server upgrades; update imports and configuration keys to the new names.

Migration Steps

  1. 1
    Replace any usage of the old maintenance push notification classes and config arguments with the new class names and argument names as documented.
  2. 2
    If you used the previous enabled flag values, adjust code to handle the new 'auto' option in MaintNotificationsConfig.enabled.
  3. 3
    Update any SSL connection setup to use the new ssl_verify_flags_config argument where custom verification flags are needed.

Release Summary

The release adds SSL verification flag configuration and an 'auto' option for maintenance notifications, while renaming related classes and arguments, which requires code updates to maintain compatibility.

Need More Details?

View the full release notes and all changes for Redis Python v7.0.0b2.

View Full Changelog