When using go-redis version 9.15.0 or above, an error is returned: ``` redis.go:464: auto mode fallback: maintnotifications disabled due to handshake error: ERR unknown subcommand 'maint_notifications'. ``` The reason is go-redis call the command in function: https://github.com/redis/go-redis/blob/819f01b489b5b97fb552c247cbd72e9bb7ea311c/commands.go#L525 but Redis does not have the 'client maint_notifications' subcommand. Is this a new Redis command that hasn't been released yet?