**Version**: 5.0.8 **Description**: #3001 was marked as breaking change and released (for the 5.0-series) in [5.0.8](https://github.com/redis/redis-py/releases/tag/v5.0.8) but is not mentioned in the changelog. Would it be possible to add it there? Example corresponding change: ```python import redis x = redis.Redis() print(repr(x)) ``` displays In 5.0.7: ``` Redis<ConnectionPool<Connection<host=localhost,port=6379,db=0>>> ``` In 5.0.8: ``` <redis.client.Redis(<redis.connection.ConnectionPool(<redis.connection.Connection(host=localhost,port=6379,db=0)>)>)> ```