• v1.5.8-hotfix 8898772450

    FTMahringer released this 2026-05-09 14:39:29 +02:00 | 236 commits to main since this release

    Redis Streams API Fix

    Compilation error from wrong Spring Data Redis Stream API usage.

    Error:

    • RedisStreamPublisher lines 52+58: StreamRecords.newRecord().ofMap() returns MapRecord, not ObjectRecord
    • Type variable K,V mismatch — Maven compilation failed

    Fix:

    • Replaced ObjectRecord construction with redisTemplate.opsForStream().add(streamKey, map) directly
    • Removed unused ObjectRecord and StreamRecords imports

    Followup to v1.5.2-dev.

    Downloads