Hello! Redis 8.2 supports 2 new advanced stream entry management commands: 1. XDELEX: https://redis.io/docs/latest/commands/xdelex/ 2. XACKDEL: https://redis.io/docs/latest/commands/xackdel/ These new commands are already supported in Lettuce (Since [Release 6.8.0](https://github.com/redis/lettuce/releases/tag/6.8.0.RELEASE)) and Jedis (Since [Release 6.1.0](https://github.com/redis/jedis/releases/tag/v6.1.0)) Feature request: Support these commands in Spring Data Redis's [stream operations](https://docs.spring.io/spring-data/redis/reference/api/java/org/springframework/data/redis/core/ReactiveStreamOperations.html), similar to the existing: acknowledge and delete methods. In addition, expand [XADD](https://redis.io/docs/latest/commands/xadd/) and [XTRIM](https://redis.io/docs/latest/commands/xtrim/) commands to support new supported options since Redis 8.2: - KEEPREF - DELREF - ACKED