·
1 commit
to master
since this release
Included commits: 2.12.0...2.13.0
Improvements
- Added TLS support for Redis connections to enable encrypted communication with Redis brokers, introducing
RedisConstants::REDIS_SCHEMEto configure the connection scheme (tcp or tls) andRedisConstants::REDIS_SSL_CA_FILE_PATHto specify the CA certificate path for TLS peer verification. - Introduced
RedisConfig::getScheme()andRedisConfig::getSslCaFilePath()to allow per-project TLS configuration of Redis connections. - Introduced
RedisConstants::REDIS_KEY_PREFIXandRedisConfig::getKeyPrefix()to support Redis ACL key-based access restrictions by prepending a configurable prefix to all Redis keys. - Added
usernameandsslCaFilePathproperties toRedisCredentialsTransferto support Redis ACL authentication and TLS certificate configuration.