Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

redis-6.2.6-150400.1.5 RPM for aarch64

From OpenSuSE Leap 15.4 for aarch64

Name: redis Distribution: SUSE Linux Enterprise 15
Version: 6.2.6 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150400.1.5 Build date: Sun May 8 01:22:06 2022
Group: Unspecified Build host: ibs-arm-1
Size: 4441131 Source RPM: redis-6.2.6-150400.1.5.src.rpm
Packager: https://www.suse.com/
Url: https://redis.io
Summary: Persistent key-value database
redis is an advanced key-value store. It is similar to memcached but the dataset
is not volatile, and values can be strings, exactly like in memcached,
but also lists, sets, and ordered sets. All this data types can be manipulated
with atomic operations to push/pop elements, add/remove elements, perform server
side union, intersection, difference between sets, and so forth. Redis supports
different kind of sorting abilities.

Provides

Requires

License

BSD-3-Clause

Changelog

* Mon Nov 15 2021 jsegitz@suse.com
  - Added hardening to systemd service(s) (bsc#1181400). Modified:
    * redis-sentinel@.service
    * redis@.service
* Mon Oct 04 2021 michael@stroeder.com
  - redis 6.2.6 with security fixes for
    * Security fixes:
    - CVE-2021-41099: Integer to heap buffer overflow handling certain string
      commands and network payloads, when proto-max-bulk-len is manually configured
      to a non-default, very large value (boo#1191299)
    - CVE-2021-32762: Integer to heap buffer overflow issue in redis-cli and
      redis-sentinel parsing large multi-bulk replies on some older and less common
      platforms (boo#1191300)
    - CVE-2021-32687: Integer to heap buffer overflow with intsets, when
      set-max-intset-entries is manually configured to a non-default, very large
      value (boo#1191302)
    - CVE-2021-32675: Denial Of Service when processing RESP request payloads with
      a large number of elements on many connections (boo#1191303)
    - CVE-2021-32672: Random heap reading issue with Lua Debugger (boo#1191304)
    - CVE-2021-32628: Integer to heap buffer overflow handling ziplist-encoded
      data types, when configuring a large, non-default value for
      hash-max-ziplist-entries, hash-max-ziplist-value, zset-max-ziplist-entries
      or zset-max-ziplist-value (boo#1191305)
    - CVE-2021-32627: Integer to heap buffer overflow issue with streams, when
      configuring a non-default, large value for proto-max-bulk-len and
      client-query-buffer-limit (boo#1191305)
    - CVE-2021-32626: Specially crafted Lua scripts may result with Heap buffer
      overflow (boo#1191306)
    * Bug fixes that involve behavior changes:
    - GEO* STORE with empty source key deletes the destination key and return 0
      Previously it would have returned an empty array like the non-STORE variant.
    - PUBSUB NUMPAT replies with number of patterns rather than number of subscriptions
      This actually changed in 6.2.0 but was overlooked and omitted from the release notes.
    * Bug fixes that are only applicable to previous releases of Redis 6.2:
    - Fix CLIENT PAUSE, used an old timeout from previous PAUSE
    - Fix CLIENT PAUSE in a replica would mess the replication offset
    - Add some missing error statistics in INFO errorstats
    * Other bug fixes:
    - Fix incorrect reply of COMMAND command key positions for MIGRATE command
    - Fix appendfsync to always guarantee fsync before reply, on MacOS and FreeBSD (kqueue)
    - Fix the wrong misdetection of sync_file_range system call, affecting performance
    * CLI tools:
    - When redis-cli received ASK response, it didn't handle it
    * Improvements:
    - Add latency monitor sample when key is deleted via lazy expire
    - Sanitize corrupt payload improvements
    - Delete empty keys when loading RDB file or handling a RESTORE command
* Thu Jul 22 2021 andreas.stieger@gmx.de
  - redis 6.2.5:
    * CVE-2021-32761: Fix integer overflow in BITFIELD on 32-bit
      boo#1188598
    * Change reply type for ZPOPMAX/MIN with count in RESP3 to nested
      array
    * Was using a flat array like in RESP2 instead of a nested array
      like ZRANGE does.
    * Fix reply type for HRANDFIELD and ZRANDMEMBER when key is
      missing
    * Was using a null array instead of an empty array
    * Fix reply type for ZRANGESTORE when source key is missing
    * Was using an empty array like ZRANGE instead of 0 (used in the
      STORE variant)
    * redis-cli cluster import command may issue wrong MIGRATE command,
      sending COPY instead of REPLACE (#8945)
    * redis-cli --rdb fixes when using "-" to write to stdout
    * redis-cli support for RESP3 set type in CSV and RAW output
    * ad Module API for getting current command name
    * Fix RM_StringTruncate when newlen is 0
    * Fix CLIENT UNBLOCK crashing modules without timeout callback
    * Further developer visible bug fixes
* Wed Jun 02 2021 andreas.stieger@gmx.de
  - redis 6.2.4:
    * CVE-2021-32625: An integer overflow bug could be exploited by
      using the STRALGO LCS command to cause remote remote code
      execution (boo#1186722)
    * Fix crash after a diskless replication fork child is terminated
    * Fix redis-benchmark crash on unsupported configs
    * Fix crash in UNLINK on a stream key with deleted consumer groups
    * SINTERSTORE: Add missing keyspace del event when none of the
      sources exist
    * Sentinel: Fix CONFIG SET of empty string
      sentinel-user/sentinel-pass configs
    * Enforce client output buffer soft limit when no traffic
    * Hide AUTH passwords in MIGRATE command from slowlog
* Fri May 21 2021 jengelh@inai.de
  - Move sysctl file to /usr/lib/sysctl.d, so that it can be
    overridden by an admin in /etc.
* Tue May 04 2021 michael@stroeder.com
  - redis 6.2.3
    * CVE-2021-29477: Integer overflow in STRALGO LCS command (boo#1185729)
    * CVE-2021-29478: Integer overflow in COPY command for large intsets (boo#1185730)
    * Fix memory leak in moduleDefragGlobals
    * Fix memory leak when doing lazy freeing client tracking table
    * Block abusive replicas from sending command that could assert and crash redis
    * Use a monotonic clock to check for Lua script timeout
    * redis-cli: Do not use unix socket when we got redirected in cluster mode
    * Fix RM_GetClusterNodeInfo() to correctly populate master id
* Tue Apr 20 2021 andreas.stieger@gmx.de
  - Usage of OPENSSL_INIT_ATFORK in tls.c raises the minimum version
    of OpenSSL 1.1.x to 1.1.1, say so in spec
* Tue Apr 20 2021 michael@stroeder.com
  - redis 6.2.2
    Bug fixes for regressions in previous releases of Redis 6.2:
    * Fix BGSAVE, AOFRW, and replication slowdown due to child reporting CoW (#8645)
    * Fix short busy loop when a timer event is about to fire (#8764)
    * Fix default user, overwritten and reset users losing Pub/Sub channel permissions (#8723)
    * Fix config rewrite with an empty save config resulting in default save values (#8719)
    * Fix not starting on alpine/libmusl without IPv6 (#8655)
    * Fix issues with propagation and MULTI/EXEC in modules (#8617)
    * Several issues around nested calls and thread-safe contexts
    Bug fixes that are only applicable to previous releases of Redis 6.2:
    * ACL Pub/Sub channels permission handling for save/load scenario (#8794)
    * Fix early rejection of PUBLISH inside MULTI-EXEC transaction (#8534)
    * Fix missing SLOWLOG records for blocked commands (#8632)
    * Allow RESET command during busy scripts (#8629)
    * Fix some error replies that were not counted on stats (#8659)
    Bug fixes:
    * Add a timeout mechanism for replicas stuck in fullsync (#8762)
    * Process HELLO command even if the default user has no permissions (#8633)
    * Client issuing a long-running script and using a pipeline, got disconnected (#8715)
    * Fix script kill to work also on scripts that use pcall (#8661)
    * Fix list-compress-depth may compress more node than required (#8311)
    * Fix redis-cli handling of rediss:// URL scheme (#8705)
    * Cluster: Skip unnecessary check which may prevent failure detection (#8585)
    * Cluster: Fix hang manual failover when replica just started (#8651)
    * Sentinel: Fix info-refresh time field before sentinel gets a first response (#8567)
    * Sentinel: Fix possible crash on failed connection attempt (#8627)
    * Systemd: Send the readiness notification when a replica is ready to accept connections (#8409)
    Command behavior changes:
    * ZADD: fix awrong reply when INCR used with GT/LT which blocked the update (#8717)
    * It was responding with the incremented value rather than nil
    * XAUTOCLAIM: fix response to return the next available id as the cursor (#8725)
    * Previous behavior was returning the last one which was already scanned
    * XAUTOCLAIM: fix JUSTID to prevent incrementing delivery_count (#8724)
    New config options:
    * Add cluster-allow-replica-migration config option (#5285)
    * Add replica-announced config option (#8653)
    * Add support for plaintext clients in TLS cluster (#8587)
    * Add support for reading encrypted keyfiles (#8644)
    Improvements:
    * Fix performance regression in BRPOP on Redis 6.0 (#8689)
    * Avoid adding slowlog entries for config with sensitive data (#8584)
    * Improve redis-cli non-binary safe string handling (#8566)
    * Optimize CLUSTER SLOTS reply (#8541)
    * Handle remaining fsync errors (#8419)
    Info fields and introspection changes:
    * Strip % sign from current_fork_perc info field (#8628)
    * Fix RSS memory info on FreeBSD (#8620)
    * Fix client_recent_max_input/output_buffer in 'INFO CLIENTS' when all clients drop (#8588)
    * Fix invalid master_link_down_since_seconds in info replication (#8785)
    Platform and deployment-related changes:
    * Fix FreeBSD <12.x builds (#8603)
    Modules:
    * Add macros for RedisModule_log logging levels (#4246)
    * Add RedisModule_GetAbsExpire / RedisModule_SetAbsExpire (#8564)
    * Add a module type for key space notification (#8759)
    * Set module eviction context flag only in masters (#8631)
    * Fix unusable RedisModule_IsAOFClient API (#8596)
    * Fix missing EXEC on modules propagation after failed EVAL execution (#8654)
    * Fix edge-case when a module client is unblocked (#8618)
* Sat Mar 13 2021 michael@stroeder.com
  - replaced /var/run with /run for all PID file paths (bsc#1185072)
* Thu Mar 04 2021 garethmccarter@gmail.com
  - redis 6.2.1
    Bug fixes:
    * Fix sanitize-dump-payload for stream with deleted records (#8568)
    * Prevent client-query-buffer-limit config from being set to lower than 1mb (#8557)
    Improvements:
    * Make port, tls-port and bind config options modifiable at runtime (#8510)
    Platform and deployment-related changes:
    * Fix compilation error on non-glibc systems if jemalloc is not used (#8533)
    * Improved memory consumption and memory usage tracking on FreeBSD (#8545)
    * Fix compilation on ARM64 MacOS with jemalloc (#8458)
    Modules:
    * New Module API for getting user name of a client (#8508)
    * Optimize RM_Call by utilizing a shared reusable client (#8516)
    * Fix crash running CLIENT INFO via RM_Call (#8560)
  - includes changes from 6.2.0 GA:
    * Integer overflow on 32-bit systems (CVE-2021-21309)
    Bug fixes:
    * Avoid 32-bit overflows when proto-max-bulk-len is set high (#8522)
    * Fix broken protocol in client tracking tracking-redir-broken message (#8456)
    * Avoid unsafe field name characters in INFO commandstats, errorstats, modules (#8492)
    * XINFO able to access expired keys during CLIENT PAUSE WRITE (#8436)
    * Fix allowed length for REPLCONF ip-address, needed due to Sentinel's support for hostnames (#8517)
    * Fix broken protocol in redis-benchmark when used with -a or --dbnum (#8486)
    * XADD counts deleted records too when considering switching to a new listpack (#8390)
    Bug fixes that are only applicable to previous releases of Redis 6.2:
    * Fixes in GEOSEARCH bybox (accuracy and mismatch between width and height) (#8445)
    * Fix risk of OOM panic in HRANDFIELD, ZRANDMEMBER commands with huge negative count (#8429)
    * Fix duplicate replicas issue in Sentinel, needed due to hostname support (#8481)
    * Fix Sentinel configuration rewrite, an improvement of #8271 (#8480)
    Command behavior changes:
    * SRANDMEMBER uses RESP3 array type instead of set type (#8504)
    * EXPIRE, EXPIREAT, SETEX, GETEX: Return error when provided expire time overflows (#8287)
    Other behavior changes:
    * Remove ACL subcommand validation if fully added command exists. (#8483)
    Improvements:
    * Optimize sorting in GEORADIUS / GEOSEARCH with COUNT (#8326)
    * Optimize HRANDFIELD and ZRANDMEMBER case 4 when ziplist encoded (#8444)
    * Optimize in-place replacement of elements in HSET, HINCRBY, LSET (#8493)
    * Remove redundant list to store pubsub patterns (#8472)
    * Add --insecure option to command line tools (#8416)
    Info fields and introspection changes:
    * Add INFO fields to track progress of BGSAVE, AOFRW, replication (#8414)
    Modules:
    * RM_ZsetRem: Delete key if empty, the bug could leave empty zset keys (#8453)
    * RM_HashSet: Add COUNT_ALL flag and set errno (#8446)
  - includes changes from 6.2 RC3:
    New commands / args:
    * Add HRANDFIELD and ZRANDMEMBER commands (#8297)
    * Add FAILOVER command (#8315)
    * Add GETEX, GETDEL commands (#8327)
    * Add PXAT/EXAT arguments to SET command (#8327)
    * Add SYNC arg to FLUSHALL and FLUSHDB, and ASYNC/SYNC arg to SCRIPT FLUSH (#8258)
    Sentinel:
    * Add hostname support to Sentinel (#8282)
    * Prevent file descriptors from leaking into Sentinel scripts (#8242)
    * Fix config file line order dependency and config rewrite sequence (#8271)
    New configuration options:
    * Add set-proc-title config option to disable changes to the process title (#3623)
    * Add proc-title-template option to control what's shown in the process title (#8397)
    * Add lazyfree-lazy-user-flush config option to control FLUSHALL, FLUSHDB and SCRIPT FLUSH (#8258)
    Bug fixes:
    * AOF: recover from last write error by turning on/off appendonly config (#8030)
    * Exit on fsync error when the AOF fsync policy is 'always' (#8347)
    * Avoid assertions (on older kernels) when testing arm64 CoW bug (#8405)
    * CONFIG REWRITE should honor umask settings (#8371)
    * Fix firstkey,lastkey,step in COMMAND command for some commands (#8367)
    Special considerations:
    * Fix misleading description of the save configuration directive (#8337)
    Improvements:
    * A way to get RDB file via replication without excessive replication buffers (#8303)
    * Optimize performance of clusterGenNodesDescription for large clusters (#8182)
    Info fields and introspection changes:
    * SLOWLOG and LATENCY monitor include unblocking time of blocked commands (#7491)
    Modules:
    * Add modules API for streams (#8288)
    * Add event for fork child birth and termination (#8289)
    * Add RM_BlockedClientMeasureTime* etc, to track background processing in commandstats (#7491)
    * Fix bug in v6.2, wrong value passed to the new unlink callback (#8381)
    * Fix bug in v6.2, modules blocked on keys unblock on commands like LPUSH (#8356)
  - includes changes from 6.2 RC2:
    New commands / args:
    * Add the REV, BYLEX and BYSCORE arguments to ZRANGE, and the ZRANGESTORE command (#7844)
    * Add the XAUTOCLAIM command (#7973)
    * Add the MINID trimming strategy and the LIMIT argument to XADD and XTRIM (#8169)
    * Add the ANY argument to GEOSEARCH and GEORADIUS (#8259)
    * Add the CH, NX, XX arguments to GEOADD (#8227)
    * Add the COUNT argument to LPOP and RPOP (#8179)
    * Add the WRITE argument to CLIENT PAUSE for pausing write commands exclusively (#8170)
    * Change the proto-ver argument of HELLO to optional (#7377)
    * Add the CLIENT TRACKINGINFO subcommand (#7309)
    Command behavior changes:
    * CLIENT TRACKING yields an error when given overlapping BCAST prefixes (#8176)
    * SWAPDB invalidates WATCHed keys (#8239)
    * SORT command behaves differently when used on a writable replica (#8283)
    Other behavior changes:
    * Avoid propagating MULTI/EXEC for read-only transactions (#8216)
    * Remove the read-only flag from TIME, ECHO, ROLE, LASTSAVE (#8216)
    * Fix the command flags of PFDEBUG (#8222)
    * Tracking clients will no longer receive unnecessary key invalidation messages after FLUSHDB (#8039)
    * Sentinel: Fix missing updates to the config file after SENTINEL SET command (#8229)
    Bug fixes with compatibility implications (bugs introduced in Redis 6.0):
    * Fix RDB CRC64 checksum on big-endian systems (#8270)
      If you're using big-endian please consider the compatibility implications with
      RESTORE, replication and persistence.
    * Fix wrong order of key/value in Lua's map response (#8266)
      If your scripts use redis.setresp() or return a map (new in Redis 6.0), please
      consider the implications.
    Bug fixes that are only applicable to previous releases of Redis 6.2:
    * Resolve rare assertions in active defragmentation while loading (#8284, #8281)
    Bug fixes:
    * Fix the selection of a random element from large hash tables (#8133)
    * Fix an issue where a forked process deletes the parent's pidfile (#8231)
    * Fix crashes when enabling io-threads-do-reads (#8230)
    * Fix a crash in redis-cli after executing cluster backup (#8267)
    * Fix redis-benchmark to use an IP address for the first cluster node (#8154)
    * Fix saving of strings larger than 2GB into RDB files (#8306)
    Additional improvements:
    * Improve replication handshake time (#8214)
    * Release client tracking table memory asynchronously in cases where the DB is also freed asynchronously (#8039)
    * Avoid wasteful transient memory allocation in certain cases (#8286, #5954)
    * Handle binary string values by the 'requirepass' and 'masterauth' configs (#8200)
    Platform and deployment-related changes:
    * Install redis-check-rdb and redis-check-aof as symlinks to redis-server (#5745)
    * Add a check for an ARM64 Linux kernel bug (#8224)
      Due to the potential severity of this issue, Redis will refuse to run on
      affected platforms by default.
    Info fields and introspection changes:
    * Add the errorstats section to the INFO command (#8217)
    * Add the failed_calls and rejected_calls fields INFO's commandstats section (#8217)
    * Report child copy-on-write metrics continuously (#8264)
    Module API changes:
    * Add the RedisModule_SendChildCOWInfo API (#8264)
    * Add the may-replicate command flag (#8170)
  - includes changes from 6.2 RC1:
    New commands / args:
    * Add SMISMEMBER command that checks multiple members (#7615)
    * Add ZMSCORE command that returns an array of scores (#7593)
    * Add LMOVE and BLMOVE commands that pop and push arbitrarily (#6929)
    * Add RESET command that resets client connection state (#7982)
    * Add COPY command that copies keys (#7953)
    * Add ZDIFF and ZDIFFSTORE commands (#7961)
    * Add ZINTER and ZUNION commands (#7794)
    * Add GEOSEARCH/GEOSEARCHSTORE commands for bounding box spatial queries (#8094)
    * Add GET parameter to SET command, for more powerful GETSET (#7852)
    * Add exclusive range query to XPENDING (#8130)
    * Add exclusive range query to X[REV]RANGE (#8072)
    * Add GT and LT options to ZADD for conditional score updates (#7818)
    * Add CLIENT INFO and CLIENT LIST for specific ids (#8113)
    * Add IDLE argument to XPENDING command (#7972)
    * Add local address to CLIENT LIST, and a CLIENT KILL filter. (#7913)
    * Add NOMKSTREAM option to XADD command (#7910)
    * Add command introspection to Sentinel (#7940)
    * Add SENTINEL MYID subcommand (#7858)
    New features:
    * Dump payload sanitization: prevent corrupt payload causing crashes (#7807)
      Has flags to enable full O(N) validation (disabled by default).
    * ACL patterns for Pub/Sub channels (#7993)
    * Support ACL for Sentinel mode (#7888)
    * Support getting configuration from both stdin and file at the same time (#7893)
      Lets you avoid storing secrets on the disk.
    New features in CLI tools:
    * redis-cli RESP3 push support (#7609)
    * redis-cli cluster import support source and target that require auth (#7994)
    * redis-cli URIs able to provide user name in addition to password (#8048)
    * redis-cli/redis-benchmark allow specifying the prefered ciphers/ciphersuites (#8005)
    * redis-cli add -e option to exit with code when command execution fails (#8136)
    Command behavior changes:
    * EXISTS should not alter LRU (#8016)
      In Redis 5.0 and 6.0 it would have touched the LRU/LFU of the key.
    * OBJECT should not reveal logically expired keys (#8016)
      Will now behave the same TYPE or any other non-DEBUG command.
    * Improve db id range check for SELECT and MOVE (#8085)
      Changes the error message text on a wrong db index.
    * Modify AUTH / HELLO error message (#7648)
      Changes the error message text when the user isn't found or is disabled.
    * BITOPS length limited to proto_max_bulk_len rather than 512MB (#8096)
      The limit is now configurable like in SETRANGE, and APPEND.
    * GEORADIUS[BYMEMBER] can fail with -OOM if Redis is over the memory limit (#8107)
    Other behavior changes:
    * Optionally (default) fail to start if requested bind address is not available (#7936)
      If you rely on Redis starting successfully even if one of the bind addresses
      is not available, you'll need to tune the new config.
    * Limit the main db dictionaries expansion to prevent key eviction (#7954)
      In the past big dictionary rehashing could result in massive data eviction.
      Now this rehashing is delayed (up to a limit), which can result in performance
      loss due to hash collisions.
    * CONFIG REWRITE is atomic and safer, but requires write access to the config file's folder (#7824, #8051)
      This change was already present in 6.0.9, but was missing from the release
      notes.
    * A new incremental eviction mechanism that reduces latency on eviction spikes (#7653)
      In pathological cases this can cause memory to grow uncontrolled and may require
      specific tuning.
    * Not resetting "save" config when Redis is started with command line arguments. (#7092)
      In case you provide command line arguments without "save" and count on it
      being disabled, Now the defaults "save" config will kick in.
    * Update memory metrics for INFO during loading (#7690)
    * When "supervised" config is enabled, it takes precedence over "daemonize". (#8036)
    * Assertion and panic, print crash log without generating SIGSEGV (#7585)
    * Added crash log report on SIGABRT, instead of silently exiting (#8004)
    * Disable THP (Transparent Huge Pages) if enabled (#7381)
      If you deliberately enabled it, you'll need to config Redis to keep it.
    Bug fixes:
    * Handle output buffer limits for module blocked clients (#8141)
      Could result in a module sending reply to a blocked client to go beyond the
      limit.
    * Fix setproctitle related crashes. (#8150, #8088)
      Caused various crashes on startup, mainly on Apple M1 chips or under
      instrumentation.
    * A module doing RM_Call could cause replicas to get nested MULTI (#8097).
    * Backup/restore cluster mode keys to slots map for repl-diskless-load=swapdb (#8108)
      In cluster mode with repl-diskless-load, when loading failed, slot map
      wouldn't have been restored.
    * Fix oom-score-adj-values range, and bug when used in config file (#8046)
      Enabling setting this in the config file in a line after enabling it, would
      have been buggy.
    * Reset average ttl when empty databases (#8106)
      Just causing misleading metric in INFO
    * Disable rehash when Redis has child process (#8007)
      This could have caused excessive CoW during BGSAVE, replication or AOFRW.
    * Further improved ACL algorithm for picking categories (#7966)
      Output of ACL GETUSER is now more similar to the one provided by ACL SETUSER.
    * Fix bug with module GIL being released prematurely (#8061)
      Could in theory (and rarely) cause multi-threaded modules to corrupt memory.
    * Fix cluster redirect for module command with no firstkey. (#7539)
    * Reduce effect of client tracking causing feedback loop in key eviction (#8100)
    * Kill disk-based fork child when all replicas drop and 'save' is not enabled (#7819)
    * Rewritten commands (modified for propagation) are logged as their original command (#8006)
    * Fix cluster access to unaligned memory (SIGBUS on old ARM) #7958
    * If diskless repl child is killed, make sure to reap the child pid (#7742)
    * Broadcast a PONG message when slot's migration is over, may reduce MOVED responses (#7571)
    Other improvements:
    * TLS Support in redis-benchmark (#7959)
    * Accelerate diskless master connections, and general re-connections (#6271)
    * Run active defrag while blocked / loading (#7726)
    * Performance and memory reporting improvement - sds take control of its internal fragmentation (#7875)
    * Speedup cluster failover. (#7948)
    Platform / toolchain support related improvements:
    * Optionally (not by default) use H/W Monotonic clock for faster time sampling (#7644)
    * Remove the requirements for C11 and _Atomic supporting compiler (#7707)
      This would allow to more easily build and use Redis on older systems and
      compilers again.
    * Fix crash log registers output on ARM. (#8020)
    * Raspberry build fix. (#8095)
    * Setting process title support for Haiku. (#8060)
    * DragonFlyBSD RSS memory sampling support. (#8023)
    New configuration options:
    * Enable configuring OpenSSL using the standard openssl.cnf (#8143)
    * oom-score-adj-values config can now take absolute values (besides relative ones) (#8046)
    * TLS: Add different client cert support. (#8076)
    * Note that a few other changes listed above added their config options.
    Info fields and introspection changes:
    * Add INFO fields to track diskless and disk-based replication progress (#7981)
    * Add INFO field for main thread cpu time, and scrape system time. (#8132)
    * Add total_forks to INFO STATS (#8155)
    * Add maxclients and cluster_connections to INFO CLIENTS (#7979)
    * Add tracking bcast flag and client redirection in client list (#7995)
    * Fixed INFO client_recent_max_input_buffer includes argv array (#8065, see #7874)
    * Note that a few other changes listed above added their info fields.
    Module API changes:
    * Add CTX_FLAGS_DENY_BLOCKING as a unified the way to know if blocking is allowed (#8025)
    * Add data type callbacks for lazy free effort, and unlink (#7912)
    * Add data type callback for COPY command (#8112)
    * Add callbacks for defrag support. (#8149)
    * Add module event for repl-diskless-load swapdb (#8153)
    Module related fixes:
    * Moved RMAPI_FUNC_SUPPORTED so that it's usable (#8037)
    * Improve timer accuracy (#7987)
    * Allow '\0' inside of result of RM_CreateStringPrintf (#6260)
* Tue Mar 02 2021 ilya@ilya.pp.ua
  - Added parameter -p to all install command in spec-file.
  - Changed file redis.tmpfiles.d file, replaced from /var/run to /run.
* Tue Mar 02 2021 andreas.stieger@gmx.de
  - redis 6.0.12:
    * Fix compilation error on non-glibc systems if jemalloc is not
      used
* Wed Feb 24 2021 andreas.stieger@gmx.de
  - redis 6.0.11:
    * CVE-2021-21309: Avoid 32-bit overflows when proto-max-bulk-len
      is set high (boo#1182657)
    * Fix handling of threaded IO and CLIENT PAUSE (failover), could
      lead to data loss or a crash
    * Fix the selection of a random element from large hash tables
    * Fix broken protocol in client tracking tracking-redir-broken message
    * XINFO able to access expired keys on a replica
    * Fix broken protocol in redis-benchmark when used with -a or
    - -dbnum
    * Avoid assertions (on older kernels) when testing arm64 CoW bug
    * CONFIG REWRITE should honor umask settings
    * Fix firstkey,lastkey,step in COMMAND command for some commands
    * RM_ZsetRem: Delete key if empty, the bug could leave empty
      zset keys
* Wed Feb 24 2021 jzerebecki@suse.com
  - Switch systemd type of the sentinel service from notify to simple. This can
    be reverted when updating to 6.2 which fixes
    https://github.com/redis/redis/issues/7284 .
* Fri Feb 12 2021 jzerebecki@suse.com
  - Enable TLS support and add BuildRequires libopenssl-devel (bsc#1181830)
  - Make tests run by adding BuildRequires tcl and procps
* Tue Jan 12 2021 michael@stroeder.com
  - HTTPS download link for source
  - redis 6.0.10:
    Command behavior changes:
    * SWAPDB invalidates WATCHed keys (#8239)
    * SORT command behaves differently when used on a writable replica (#8283)
    * EXISTS should not alter LRU (#8016)
      In Redis 5.0 and 6.0 it would have touched the LRU/LFU of the key.
    * OBJECT should not reveal logically expired keys (#8016)
      Will now behave the same TYPE or any other non-DEBUG command.
    * GEORADIUS[BYMEMBER] can fail with -OOM if Redis is over the memory limit (#8107)
    Other behavior changes:
    * Sentinel: Fix missing updates to the config file after SENTINEL SET command (#8229)
    * CONFIG REWRITE is atomic and safer, but requires write access to the config file's folder (#7824, #8051)
      This change was already present in 6.0.9, but was missing from the release notes.
    Bug fixes with compatibility implications (bugs introduced in Redis 6.0):
    * Fix RDB CRC64 checksum on big-endian systems (#8270)
      If you're using big-endian please consider the compatibility implications with
      RESTORE, replication and persistence.
    * Fix wrong order of key/value in Lua's map response (#8266)
      If your scripts use redis.setresp() or return a map (new in Redis 6.0), please
      consider the implications.
    Bug fixes:
    * Fix an issue where a forked process deletes the parent's pidfile (#8231)
    * Fix crashes when enabling io-threads-do-reads (#8230)
    * Fix a crash in redis-cli after executing cluster backup (#8267)
    * Handle output buffer limits for module blocked clients (#8141)
      Could result in a module sending reply to a blocked client to go beyond the limit.
    * Fix setproctitle related crashes. (#8150, #8088)
      Caused various crashes on startup, mainly on Apple M1 chips or under instrumentation.
    * Backup/restore cluster mode keys to slots map for repl-diskless-load=swapdb (#8108)
      In cluster mode with repl-diskless-load, when loading failed, slot map wouldn't
      have been restored.
    * Fix oom-score-adj-values range, and bug when used in config file (#8046)
      Enabling setting this in the config file in a line after enabling it, would
      have been buggy.
    * Reset average ttl when empty databases (#8106)
      Just causing misleading metric in INFO
    * Disable rehash when Redis has child process (#8007)
      This could have caused excessive CoW during BGSAVE, replication or AOFRW.
    * Further improved ACL algorithm for picking categories (#7966)
      Output of ACL GETUSER is now more similar to the one provided by ACL SETUSER.
    * Fix bug with module GIL being released prematurely (#8061)
      Could in theory (and rarely) cause multi-threaded modules to corrupt memory.
    * Reduce effect of client tracking causing feedback loop in key eviction (#8100)
    * Fix cluster access to unaligned memory (SIGBUS on old ARM) (#7958)
    * Fix saving of strings larger than 2GB into RDB files (#8306)
    Additional improvements:
    * Avoid wasteful transient memory allocation in certain cases (#8286, #5954)
    Platform / toolchain support related improvements:
    * Fix crash log registers output on ARM. (#8020)
    * Add a check for an ARM64 Linux kernel bug (#8224)
      Due to the potential severity of this issue, Redis will print log warning on startup.
    * Raspberry build fix. (#8095)
    New configuration options:
    * oom-score-adj-values config can now take absolute values (besides relative ones) (#8046)
    Module related fixes:
    * Moved RMAPI_FUNC_SUPPORTED so that it's usable (#8037)
    * Improve timer accuracy (#7987)
    * Allow '\0' inside of result of RM_CreateStringPrintf (#6260)
* Tue Oct 27 2020 andreas.stieger@gmx.de
  - redis 6.0.9:
    * potential heap overflow when using a heap allocator other
      than jemalloc or glibc's malloc. Does not affect the openSUSE
      package - boo#1178205
    * Memory reporting of clients argv
    * Add redis-cli control on raw format line delimiter
    * Add redis-cli support for rediss:// -u prefix
    * WATCH no longer ignores keys which have expired for MULTI/EXEC
    * Correct OBJECT ENCODING response for stream type
    * Allow blocked XREAD on a cluster replica
    * TLS: Do not require CA config if not used
    * multiple bug fixes
    * Additions to modules API
* Fri Sep 11 2020 andreas.stieger@gmx.de
  - redis 6.0.8 (jsc#PM-1615, jsc#PM-1622, jsc#PM-1681, jsc#ECO-2417, jsc#ECO-2867, jsc#PM-1547, jsc#CAPS-56, jsc#SLE-11578, jsc#SLE-12821):
    * bug fixes when using with Sentinel
    * bug fixes when using CONFIG REWRITE
    * Remove THP warning when set to madvise
    * Allow EXEC with read commands on readonly replica in cluster
    * Add masters/replicas options to redis-cli --cluster call command
  - includes changes from 6.0.7:
    * CONFIG SET could hung the client when arrives during RDB/ROF
      loading
    * LPOS command when RANK is greater than matches responded with
      broken protocol
    * Add oom-score-adj configuration option to control Linux OOM
      killer
    * Show IO threads statistics and status in INFO output
    * Add optional tls verification mode (see tls-auth-clients)
* Mon Jul 27 2020 andreas.stieger@gmx.de
  - redis 6.0.6:
    * Fix crash when enabling CLIENT TRACKING with prefix
    * EXEC always fails with EXECABORT and multi-state is cleared
    * RESTORE ABSTTL won't store expired keys into the db
    * redis-cli better handling of non-pritable key names
    * TLS: Ignore client cert when tls-auth-clients off
    * Tracking: fix invalidation message on flush
    * Notify systemd on Sentinel startup
    * Fix crash on a misuse of STRALGO
    * Few fixes in module API
    * Fix a few rare leaks (STRALGO error misuse, Sentinel)
    * Fix a possible invalid access in defrag of scripts
    * Add LPOS command to search in a list
    * Use user+pass for MIGRATE in redis-cli and redis-benchmark in
      cluster mode
    * redis-cli support TLS for --pipe, --rdb and --replica options
    * TLS: Session caching configuration support
* Wed Jun 10 2020 andreas.stieger@gmx.de
  - redis 6.0.5:
    * Fix handling of speical chars in ACL LOAD
    * Make Redis Cluster more robust about operation errors that may
      lead to two clusters to mix together
    * Revert the sendfile() implementation of RDB transfer
    * Fix TLS certificate loading for chained certificates
    * Fix AOF rewirting of KEEPTTL SET option
    * Fix MULTI/EXEC behavior during -BUSY script errors
* Thu May 28 2020 andreas.stieger@gmx.de
  - redis 6.0.4:
    * fix a severe replication bug introduced in Redis 6 by the
      "meaningful offset" feature
* Sun May 17 2020 andreas.stieger@gmx.de
  - redis 6.0.3:
    * fix a crash introduced in 6.0.2
  - includes changes from 6.0.2:
    * bug fixes
    * fix to client side caching when keys are evicted from the
      tracking table but no notifications are sent
* Sat May 09 2020 schwab@suse.de
  - redis-disable_integration_logging.patch: remove
  - redis-enable-bactrace-on-x86-ia64-and_arm32_only.patch: remove
  - getMcontextEip-return-value.patch: Add missing return value
* Mon May 04 2020 mrueckert@suse.de
  - add BR pkgconfig(libsystemd) for the rewritten systemd support
    and force building with it
* Mon May 04 2020 mrueckert@suse.de
  - Update to 6.0.1
    * https://raw.githubusercontent.com/antirez/redis/6.0.1/00-RELEASENOTES
    * XCLAIM AOF/replicas propagation fixed.
    * Client side caching: new NOLOOP option to avoid getting
      notified about changes performed by ourselves.
    * ACL GENPASS now uses HMAC-SHA256 and have an optional
      "bits" argument.  It means you can use it as a general purpose
      "secure random strings" primitive!
    * Cluster "SLOTS" subcommand memory optimization.
    * The LCS command is now a subcommand of STRALGO.
    * Meaningful offset for replicas as well. More successful
      partial resynchronizations.
    * Optimize memory usage of deferred replies.
    * Faster CRC64 algorithm for faster RDB loading.
    * XINFO STREAM FULL, a new subcommand to get the whole stream
      state.
    * CLIENT KILL USER <username>.
    * MIGRATE AUTH2 option, for ACL style authentication support.
    * Other random bugfixes.
* Fri May 01 2020 schwab@suse.de
  - ppc-atomic.patch: use libatomic also on ppc
* Fri May 01 2020 andreas.stieger@gmx.de
  - add hash file from redis-hashes and verify it during build
* Sat Apr 18 2020 andreas.stieger@gmx.de
  - redis 5.0.9:
    * Critical fix when Streams with AOF ore replicas are used:
      Prevent reprocesing some entries upon restart
    * Speed improvement: Clients blocked on the same key are now
      unblocked on O(1) time
* Tue Mar 24 2020 kukuk@suse.com
  - Use the tmpfiles macros instead of calling systemd-tempfiles
    direct and build wrong macro paths.
* Wed Mar 18 2020 ilya@ilya.pp.ua
  - Refresh spec-file with spec-cleaner and manual optimizations
    * Remove Group tag.
    * Replace make by %make_build macros.
  - Update to 5.0.8
    * https://raw.githubusercontent.com/antirez/redis/5.0.8/00-RELEASENOTES
    * Fix Pi building needing -latomic, backport.
    * Fix impl of aof-child whitelist SIGUSR1 feature.
    * Fix ThreadSafeContext lock/unlock function names.
    * XREADGROUP should propagate XCALIM/SETID in MULTI/EXEC.
    * Fix client flags to be int64 in module.c.
    * Fix small bugs related to replica and monitor ambiguity.
    * Fix lua related memory leak.
    * Simplify #6379 changes.
    * Free allocated sds in pfdebugCommand() to avoid memory leak.
    * Jump to right label on AOF parsing error.
    * Free fakeclient argv on AOF error.
    * Fix potential memory leak of rioWriteBulkStreamID().
    * Fix potential memory leak of clusterLoadConfig().
    * Fix bug on KEYS command where pattern starts with * followed by \x00.
    * Blocking XREAD[GROUP] should always reply with valid data.
    * XCLAIM: Create the consumer only on successful claims.
    * Stream: Handle streamID-related edge cases.
    * Fix ip and missing mode in RM_GetClusterNodeInfo().
    * Inline protocol: handle empty strings well.
    * Mark extern definition of SDS_NOINIT in sds.h.
    * Fix revisit CVE-2015-8080 vulnerability.
    * Avoid sentinel changes promoted_slave to be its own replica.
* Sat Feb 08 2020 mrueckert@suse.de
  - print instance name in the from the service files
* Thu Jan 23 2020 kukuk@suse.com
  - Don't install redis-trib.rb, it's only a dummy telling the user
    to use redis-cli instead and pulls in ruby for that.
* Mon Dec 30 2019 kukuk@suse.com
  - Make redis useable in a container (drop size from 100MB to 20MB):
    - Change user generation from shadow to sysusers
    - Drop redis-initscript.patch and sudo requires, we use systemd
    - Drop BuildRequires for procps and tcl, they are not needed
    - Make logrotate recommend, it's not required for redis to work
* Sun Dec 01 2019 ilya@ilya.pp.ua
  - Update to 5.0.7
    * https://raw.githubusercontent.com/antirez/redis/5.0.7/00-RELEASENOTES
    * Test: fix implementation-dependent test after code change.
    * RED-31295 - redis: avoid race between dlopen and thread creation.
    * Cluster: fix memory leak of cached master.
    * Fix usage of server.stream_node_max_*.
    * Update mkreleasehdr.sh.
    * Remove additional space from comment.
    * Fix stream test after addition of 0-0 ID test.
    * AOF: fix assignment for aof_fsync_offset.
    * Rename var to fixed_time_expire now that is more general.
    * Expires & blocking: handle ready keys as call().
    * XADD with ID 0-0 stores an empty key.
    * Fix unreported overflow in autogerenared stream IDs.
    * Expires: refactoring judgment about whether a key is expired.
  - Refresh reproducible.patch
  - Update to 5.0.6
    * https://raw.githubusercontent.com/antirez/redis/5.0.6/00-RELEASENOTES
    * RDB: fix MODULE_AUX loading by continuing to next opcode.
    * Missing per-skiplist overheads in MEMORY USAGE.
    * RM_Log: add support for logging without a context or context
      without module.
    * Cluster: abort loading nodes data if vars arguments are unbalanced.
    * More strict checks and better comments in flushSlaveOutputBuffers().
    * Improve comment in flushSlavesOutputBuffers().
    * Replication: clarify why repl_put_online_on_ack exists at all.
    * Networking: flushSlavesOutputBuffers bugfix.
    * RM_ReplyWithCString was missing registration.
    * Fix to module aux data rdb format for backwards compatibility
      with old check-rdb.
    * Implement module api for aux data in rdb.
    * Redis-cli: always report server errors on read errors.
    * Reduce the calling stack.
    * Make EMBSTR case of #6261 more obvious.
    * Make memory usage consistent of robj with OBJ_ENCODING_INT.
    * HyperLogLog: fix the fix of a corruption bug.
    * Fix HLL corruption bug.
    * Extend REDISMODULE_CTX_FLAGS to indicate if redis is currently
      loading from either RDB or AOF.
    * Uses addReplyBulkCString.
    * Adds RedisModule_ReplyWithCString.
* Thu Jun 06 2019 mrueckert@suse.de
  - update to 5.0.5
    Major changes from the Redis 5 series:
    1. The new Stream data type.
      https://redis.io/topics/streams-intro
    2. New Redis modules APIs: Timers, Cluster and Dictionary APIs.
    3. RDB now store LFU and LRU information.
    4. The cluster manager was ported from Ruby (redis-trib.rb) to C
      code inside redis-cli. Check `redis-cli --cluster help` for
      more info.
    5. New sorted set commands: ZPOPMIN/MAX and blocking variants.
    6. Active defragmentation version 2.
    7. Improvemenets in HyperLogLog implementations.
    8. Better memory reporting capabilities.
    9. Many commands with sub-commands now have an HELP subcommand.
    10. Better performances when clients connect and disconnect
      often.
    11. Many bug fixes and other random improvements.
    12. Jemalloc was upgraded to version 5.1
    13. CLIENT UNBLOCK and CLIENT ID.
    14. The LOLWUT command was added. http://antirez.com/news/123
    15. We no longer use the "slave" word if not for API backward
      compatibility.
    16. Differnet optimizations in the networking layer.
    17. Lua improvements:
    - Better propagation of Lua scripts to replicas / AOF.
    - Lua scripts can now timeout and get in -BUSY state in the
      replica as well.
    18. Dynamic HZ to balance idle CPU usage with responsiveness.
    19. The Redis core was refactored and improved in many ways.
    However the list above really does not do justice to the changes
    of Redis 5 since the core was improved in many ways during the
    development of the new version. However certain changes were back
    ported into Redis 4 once they were sensed as safe, because many
    improvements were hard to distinguish from fixes.
    The most important user facing improvement is without doubts the
    introduction of the new general purpose data type after years:
    the streams.
    Note that we worked to improve and fix streams till a few hours
    ago, so while we are not aware of critical bugs in this release,
    surely there is to handle it with some care for the first weeks.
    Bug reporting will be highly appreciated and we are ready to work
    immediately to release 5.0.1 once there is enough important stuff
    to justify a new release (probably soon).
    People not using the streams can have probably a better
    production-ready experience with Redis 5, also because many
    internals are shared with Redis 4 so the jump is not as big as it
    was between 3.2 and 4 in terms of how things internally work.
    Well, many thanks to the Redis community and the developers that
    made this release possible, contributing bug reports, patches,
    new features, working on the clients, sometimes debugging
    problems for days. Also thank to everybody that adopted Redis for
    their use cases making things work for users worldwide.
    see installed /usr/share/doc/packages/redis/00-RELEASENOTES
  - refreshed patches to apply cleanly again:
    redis-conf.patch
    redis-enable-bactrace-on-x86-ia64-and_arm32_only.patch
    reproducible.patch
* Mon Nov 26 2018 egdfree@opensuse.org
  - update systemd unit file to fix redis shutdown immedaiate after start
* Fri Sep 07 2018 mrueckert@suse.de
  - make sure that disabling/restarting servers works
    https://nordisch.org/posts/hooking-up-instantiated-services-with-rpm/
* Thu Sep 06 2018 mrueckert@suse.de
  - make check && true -> make check || true
    This was probably meant to catch an error in the test suite, but
    with && it would only return true if it would return true
    already.
* Thu Sep 06 2018 mrueckert@suse.de
  - added systemd unit file file redis-sentinel
    - the unit file uses the same multiple instance mechanism as the
      normal redis unit file
      systemctl start redis-sentinel@default will look for
      /etc/redis/sentinel-default.conf
      and expects a pid file
      /var/run/redis/sentinel-default.pid
      Please make sure your sentinel config sets the pid file.
    - adapted the default sentinel.conf.example to set the pid file
      and the log file similar to the normal redis.conf:
      /var/log/redis/sentinel-<instancename>.log
      /var/run/redis/sentinel-<instancename>.pid
      The unit file checks for the pid file so please adapt your
      local sentinel configs.
      Changed: redis-conf.patch
    - adapt and restructure README.SUSE
    - move the LimitNoFile to the service file itself so the user
      do not have to manually do that step for every instance
    - move the apache integration into its own section
    - add section for redis-sentinel
    - install sentinel example config with group write permissions
      to indicate that the actually config needs to be writable.
* Thu Sep 06 2018 mrueckert@suse.de
  - replace some duplicate binaries with symlinks similar to what the
    fedora package does
* Fri Aug 17 2018 ilya@ilya.pp.ua
  - Refresh spec-file.
  - Update to 4.0.11
    * https://raw.githubusercontent.com/antirez/redis/4.0.11/00-RELEASENOTES
    * The disconnection time between the master and slave was reset
      in an incorrect place, sometimes a good slave will not be able
      to failover because it claims it was disconnected for too much
      time from the master.
    * A replication bug, rare to trigger but non impossible, is in
      Redis for years. It was lately discovered at Redis Labs and
      fixed by Oran Agra. It may cause disconnections,
      desynchronizations and other issues.
    * RANDOMKEY may go in infinite loop on rare situations. Now fixed.
    * EXISTS now works in a more consistent way on slaves.
    * Sentinel: backport of an option to deny a potential security
      problem when the SENTINEL command is used to configure an
      arbitrary script to execute.
* Wed Jul 11 2018 bwiedemann@suse.com
  - Add reproducible.patch to have fixed hostname and date (boo#1047218)
* Fri Jun 15 2018 mrueckert@suse.de
  - update to 4.0.10 (boo#1097430) CVE-2018-11218 CVE-2018-11219
    https://raw.githubusercontent.com/antirez/redis/4.0.10/00-RELEASENOTES
    - Important security issues related to the Lua scripting engine.
      Please check https://github.com/antirez/redis/issues/5017 for
      more information.
    - A bug with SCAN, SSCAN, HSCAN and ZSCAN, that may not return
      all the elements.  We also add a regression test that can
      trigger the issue often when present, and may in theory be able
      to find unrelated regressions.
    - A PSYNC2 bug is fixed: Redis should not expire keys when saving
      RDB files because otherwise it is no longer possible to use
      such RDB file as a base for partial resynchronization. It no
      longer represents the right state.
    - Compatibility of AOF with RDB preamble when the RDB checksum is
      disabled.
    - Sentinel bug that in some cases prevented Sentinel to detect
      that the master was down immediately. A delay was added to the
      detection.
  - refreshed patches to apply cleanly again
    redis-conf.patch
    redis-initscript.patch
* Tue Apr 17 2018 guillaume.gardet@opensuse.org
  - Update redis-enable-bactrace-on-x86-and-ia64-only.patch to handle
    arm and rename it to redis-enable-bactrace-on-x86-ia64-and_arm32_only.patch
  - Add redis-disable_integration_logging.patch to disable logging test
    when backtrace is not enabled
* Thu Apr 12 2018 ilya@ilya.pp.ua
  - Update to 4.0.9
    * https://raw.githubusercontent.com/antirez/redis/4.0.9/00-RELEASENOTES
    * Critical upgrade for users using AOF with the fsync policy set to "always".
    * Latency monitor could report wrong latencies under certain conditions.
    * AOF rewriting could fail when a backgronud rewrite is triggered and
      at the same time the AOF is switched on/off.
    * Redis Cluster crash-recovery safety improved.
    * Redis Cluster has now the ability to configure certain slaves so that
      they'll never attempt a failover.
    * Keyspace notifications API in modules.
    * RM_Call() is now faster by reusing the same client.
    * Tracking of the percentage of keys already logically expired but yet
      not evicted.
* Thu Feb 08 2018 ilya@ilya.pp.ua
  - Update to 4.0.8
    * Release notes: https://raw.githubusercontent.com/antirez/redis/4.0.8/00-RELEASENOTES
    * Fix crash Redis Cluster instances during deletions.
* Sun Jan 28 2018 ilya@ilya.pp.ua
  - Update to 4.0.7
    * Release notes: https://raw.githubusercontent.com/antirez/redis/4.0.7/00-RELEASENOTES
    * Many 32 bit overflows were addressed in order to allow to use Redis with
      a very significant amount of data, memory size permitting.
    * MEMORY USAGE fixed for the list type.
    * Allow read-only scripts in Redis Cluster.
    * Fix AOF pipes setup in edge case.
    * AUTH option for MIGRATE.
    * HyperLogLogs are no longer converted from sparse to dense in order
      to be merged.
    * Fix AOF rewrite dead loop under edge cases.
    * Fix processing of large bulk strings (>= 2GB).
    * Added RM_UnlinkKey in modules API.
    * Fix Redis Cluster crashes when certain commands with a variable number
      of arguments are called in an improper way.
    * Fix memory leak in lazyfree engine.
    * Fix many potentially successful partial synchronizations that end
      doing a full SYNC, because of a bug destroying the replication
      backlog on the slave. So after a failover the slave was often not able
      to PSYNC with masters, and a full SYNC was triggered. The bug only
      happened after 1 hour of uptime so escaped the unit tests.
    * Improve anti-affinity in master/slave allocation for Redis Cluster
      when the cluster is created.
    * Improve output buffer handling for slaves, by not limiting the amount
      of writes a slave could receive.
* Thu Jan 04 2018 ilya@ilya.pp.ua
  - Update to 4.0.6
    * Release notes: https://raw.githubusercontent.com/antirez/redis/4.0.6/00-RELEASENOTES
    * PSYNC2: More errors in the fixes for PSYNC2 (CRITICAL).
    * Quicklist: change the len of quicklist to unsigned long.
    * Quicklist: fix the return value of quicklistCount.
    * Refactoring: improve luaCreateFunction() API.
    * Remove useless variable check from luaCreateFunction().
    * Fix issue #4505, Lua RDB AUX field loading of existing scripts.
    * Regression test for #4505 (Lua AUX field loading).
    * DEBUG change-repl-id implemented.
    * Buffer overflows occurring reading redis.conf CVE-2017-15047 (bsc#1061967)
* Wed Nov 01 2017 mpluskal@suse.com
  - Update changelog with CVE reference
* Sun Oct 08 2017 ilya@ilya.pp.ua
  - Drop SLE 11 support.
  - Refresh spec-file.
  - Update to 4.0.2
    * Release notes: https://raw.githubusercontent.com/antirez/redis/4.0.2/00-RELEASENOTES
    * Different replication fixes to PSYNC2, the new 4.0 replication engine.
    * Modules thread safe contexts were introduced. They are an experimental
      API right now, but the API is considered to be stable and usable when needed.
    * SLOWLOG now logs the offending client name and address. Note that this is a
      backward compatibility breakage in case old code assumes that the slowlog
      entry is composed of exactly three entries.
    * The modules native data types RDB format changed.
    * The AOF check utility is now able to deal with RDB preambles.
    * GEORADIUS_RO and GEORADIUSBYMEMBER_RO variants, not supporting the STORE option,
      were added in order to allow read-only scaling of such queries.
    * HSET is now variadic, and HMSET is considered deprecated
      (but will be supported for years to come). Please use HSET in new code.
    * GEORADIUS huge radius (>= ~6000 km) corner cases fixed,
      certain elements near the edges were not returned.
    * DEBUG DIGEST modules API added.
    * HyperLogLog commands no longer crash on certain input (non HLL) strings.
    * Fixed SLAVEOF inside MULTI/EXEC blocks.
    * Many other minor bug fixes and improvements.
* Wed Jun 21 2017 chris@computersalat.de
  - cleanup service file
  - add redis.sysctl file
  - update README.SUSE
    * add info for socket usage per service
    * add info for limits per service (LimitNOFILE=10240)
* Thu May 18 2017 vsistek@suse.com
  - Update to version 3.2.9
    * A few rarely harmful bugs were fixed.
  - Changes accumulated from 3.2.8
    Two important bug fixes, the first of one is critical:
    * Apparently Jemalloc 4.4.0 may contain a deadlock under
      particular conditions. See
      https://github.com/antirez/redis/issues/3799.
      We reverted back to the previously used Jemalloc versions and
      plan to upgrade Jemalloc again after having more info about the
      cause of the bug.
    * MIGRATE could crash the server after a socket error. See for
      reference: https://github.com/antirez/redis/issues/3796.
* Wed Feb 01 2017 mpluskal@suse.com
  - Update to version 3.2.7
    * This release fixes important security and correctness issues
      (boo#1064980 CVE-2016-10517)
* Fri Jan 20 2017 rmaliska@suse.com
  - update to redis 3.2.6
    * fixes for GEORADIUS, BITFIELD and Redis Cluster minor fixes.
  - update 3.2.5
    * This release only fixes a compilation issue due to the
      missing -ldl at linking time.
* Mon Oct 24 2016 astieger@suse.com
  - update to redis 3.2.4, including fixes for security issues:
    * CVE-2016-8339: CONFIG SET client-output-buffer-limit Code
      Execution Vulnerability [boo#1002351]
  - bug fixes:
    * TCP binding bug fixed when only certain addresses were available
      for a given port
    * improved crash report
    * Fix for Redis Cluster redis-trib displaying of info after
      creating a new cluster.
* Fri Aug 05 2016 astieger@suse.com
  - redis 3.2.3:
    * fix replication delay issue
    * drop CVE-2013-7458.patch, upstream
* Sat Jul 30 2016 jengelh@inai.de
  - Test for user/group existence before creating them.
    Request shadow to be present for the scriptlet.
* Sat Jul 30 2016 astieger@suse.com
  - Fix CVE-2013-7458: unsafe permissions of command line history
    boo#991250, adding CVE-2013-7458.patch
* Sat Jul 30 2016 astieger@suse.com
  - redis 3.2.2
  - Highlight bug fixes:
    * Fix Redis server and Sentinel crashes
    * Fix GEORADIUS errors in reported entries
  - New features:
    * slaves support the slave-announce-ip and slave-announce-port
      options.
    * RDB check utlity is now part of Redis and uses the same RDB code
    * redis-check-dump utility is now able to show certain information
      about the RDB file including creating version and date.
* Wed Jun 29 2016 rmaliska@suse.com
  - Update to 3.2.1
    * [FIX] Cleaned up spec file.
    * [FIX] Critical bug in Sentinel was hopefully fixed.
    * [FIX] BITFIELD bugs fixed.
    * [FIX] GEO commands fixes on syntax errors and edge cases.
    * [NEW] RESOTRE now accepts dumps generated by older Redis versions.
    * [NEW] Jemalloc now is configured to save you memory, for a problem a
      change in the jemalloc configuration did not really survived when the
      3.2.0 release was finalized.
    * [NEW] TTL and TYPE command no longer alter the last access time of a key, for
      LRU evictions purposes. A new TOUCH command was introduced *just* to
      update the access time of a key.
    * [FIX] A bug was fixed in redis-cli, that connected to the instance running on the
      port 6379 if there was one, regardless of what was specified.
    * [NEW] TCP keep alive is now enabled by default. This should fix most ghost
      connections problems without resulting in any practical change in otherwise
      sane deployments.
    * [FIX] A Sentinel crash that could happen during failovers was fixed.
    * [NEW] avg_ttl reporting in INFO improved.
    * [NEW] Sentinel: improve handling of known Sentinel instances.
    * [NEW] Redis Cluster address update (via gossip section) processing improved
      to avoid initiating inwanted handshakes.
    * [FIX] Critical bug fixed: There was a problem in the way a cluster instance
      loaded the AOF that could cause data written via scripts to be lost during
      reshardings.
    * [NEW] There is a new very powerful BITFIELD command. Check the documentation
      here: http://redis.io/commands/BITFIELD
    * [NEW] CONFIG GET is allowed during the loading of the dataset.
    * [NEW] The DEBUG command have new features and can show an help with DEBUG HELP.
    * [NEW] redis-cli show hits about the commands arguments to the right.
    * [NEW] GEORADIUS got a STORE / STOREDIST option to store the result into a target
      key (as as orted set) instead of reporting it to the user.
    * [NEW] Redis Cluster replicas migration now works in a slightly different way. In
      the past a slave could migrate only to a master that used to have slaves
      in the past (and if there was still trace of this information). Now instead
      if a new slave gets at least a slot, and at least one other master in the
      cluster has a slave, then the new master is considered a valid target for
      replica migration. So if it will be orphaned and there is a spare slave
      it will get one.
    * [NEW] CLUSTER SLOTS output now includes the node ID (in a backward compatible
      manner).
* Wed Apr 20 2016 mamorales@suse.com
  - Fix installation example in README.SUSE
* Wed Feb 17 2016 eshmarnev@suse.com
  - Update to 3.0.7:
    * [FIX] Many fixes to MIGRATE multiple keys implementation.
    * [FIX] A Redis Cluster node crash was fixed because of wrong handling of
      node->slaveof pointers.
    * [FIX] Fix redis-trib rebalance when nodes need to be left empty because
      the specified weight is zero.
    * [FIX] MIGRATE: Never send -ASK redirections for MIGRATE when there are
    * [FIX] Lua debugger crash when printing too deeply nested objects.
    * [FIX] Redis-cli implementation of Lua debugging now allows to use the
      SCRIPT DEBUG command directly, switching to debugging mode as needed.
    * [FIX] Redis-trib is now able to fix more errors. A new CLUSTER subcommand
      called BUMPEPOCH was introduced in order to support new modes
      for the "fix" subcommand.
    * [NEW] Redis proctected mode: this feature improves Redis security and makes
      harder to run Redis in a configuration that is unsecure because no
      firewalling was used in order to protect Redis from external accesses.
    * [NEW] Cluster/Sentinel tests now use OSX leak to perform leak detection
      at the end of every unit.
    * [NEW] Detect and show server crashes during Cluster/Sentinel tests.
    * [NEW] More reliable Cluster/Sentinel test becuase of timing errors and
    - LOADING errors.
    * [FIX] lua_struct.c/getnum security issue fixed.
    * [FIX] Redis Cluster replica migration fixed.
    * [FIX] Fix a race condition in processCommand() because of interactions
      with freeMemoryIfNeeded().
    * [NEW] Backported from the upcoming Redis 3.2:
      MIGRATE now supports an extended multiple-keys pipelined mode, which
      is an order of magnitude faster. Redis Cluster now uses this mode
      in order to perform reshardings and rebalancings.
    * [NEW] Backported from the upcoming Redis 3.2:
      Redis Cluster has now support for rebalancing via the redis-trib
      rebalance command. Demo here:
    * [NEW] Redis Cluster redis-trib.rb new "info" subcommand.
    * [NEW] Redis Cluster tests improved.
    * [NEW] Log offending memory access address on SIGSEGV/SIGBUS
* Sun Nov 22 2015 mpluskal@suse.com
  - Update to 3.0.5
    * [FIX] MOVE now moves the TTL as well. A bug lasting forever...
    finally fixed thanks to Andy Grunwald that reported it.
    * [FIX] Fix a false positive in HSTRLEN test.
    * [FIX] Fix a bug in redis-cli --pipe mode that was not able to
    read back replies from the server incrementally. Now a mass
    import will use a lot less memory, and you can use --pipe to
    do incremental streaming.
    * [FIX] Slave detection of master timeout.
    * [NEW] Cluster: redis-trib fix can fix an additional case for
    opens lots.
    * [NEW] Cluster: redis-trib import support for --copy and
    - -replace options
* Thu Sep 24 2015 mrueckert@suse.de
  - update to 3.0.4
    Upgrade urgency: HIGH for Redis and Sentinel. However note that in
      order to fix certain replication bugs, the
      replication internals were modified in a very heavy
      way. So while this release is conceptually saner, it
      may contain regressions. For this reason, before the
      release, QA activities were performed by me (antirez)
      and Redis Labs and no evident bug was found.
    - [FIX] A number of bugs related to replication PSYNC and the (yet
      experimental) diskless replication feature were fixed. The bugs
      could lead to inconsistency between masters and slaves. (Salvatore
      Sanfilippo, Oran Agra fixed the issue found by Yuval Inbar)
    - [FIX] A replication bug in the context of PSYNC partial
      resynchonization was found and fixed. This bug happens even when
      diskless replication is off in the case different slaves connect at
      different times while the master is creating an RDB file, and later
      a partial resynchronization is attempted by a slave that connected
      not as the first one. (Salvatore Sanfilippo, Oran Agra)
    - [FIX] Chained replication and PSYNC interactions leading to
      potential stale chained slaves data set, see issue #2694. (Salvatore
      Sanfilippo fixed an issue reported by "GeorgeBJ" user at Github)
    - [FIX] redis-cli --scan iteration fixed when returned cursor
      overflows 32 bit signed integer. (Ofir Luzon, Yuval Inbar)
    - [FIX] Sentinel: fixed a bug during the master switch process, where
      for a failed conditional check, the new configuration is rewritten,
      during a small window of time, in a corrupted way where the master
      is also reported to be one of the slaves. This bug is rare to
      trigger but apparently it happens in the wild, and the effect is to
      see a replication loop where the master will try to replicate with
      itself.  A detailed explanation of the bug and its effects can be
      found in the commit message here:
      https://github.com/antirez/redis/commit/c20218eb5770b2cafb12bc7092313b8358fedc0a.
      The bug was found by Jan-Erik Rediger using a static analyzer and
      fixed by Salvatore Sanfilippo.
    - [FIX] Sentinel lack of arity checks for certain commands.  (Rogerio
      Goncalves, Salvatore Sanfilippo)
    - [NEW] Replication internals rewritten in order to be more resistant
      to bugs.  The replication handshake in the slave side was rewritten
      as a non blocking state machine. (Salvatore Sanfilippo, Oran Agra)
    - [NEW] New "replication capabilities" feature introduced in order to
      signal from the master to the slave what are the features supported,
      so that the master can choose the kind of replication to start
      (diskless or not) when master and slave are of different versions.
      (Oran Agra, Salvatore Sanfilippo)
    - [NEW] Log clients details when SLAVEOF command is received.
      (Salvatore Sanfilippo with inputs from Nick Craver and Marc
      Gravell).
* Mon Sep 07 2015 mrueckert@suse.de
  - update to 3.0.3
    * [FIX] Fix blocking operations timeout precision when HZ is at
      its default value (not increased) and there are thousands
      of clients connected at the same time. This bug affected
      Sidekiq users that experienced a very long delay for
      BLPOP and similar commands to return for timeout. Check
      commit b029ff1 for more info. (Salvatore Sanfilippo)
    * [FIX] MIGRATE "creating socket: Invalid argument" error fix.
      Check issues #2609 and #2612 for more info.
      (Salvatore Sanfilippo)
    * [FIX] Be able to connect to the master even when the slave is
      bound to just the loopback interface and has no valid
      public address in the network the master is reacahble.
      (Salvatore Sanfilippo)
    * [FIX] ZADD with options encoding promotion fixed. (linfangrong)
    * [FIX] Reset aof_delayed_fsync on CONFIG RESETSTATS. (Tom Kiemes)
    * [FIX] PFCOUNT key parsing in cluster fixed. (MOON_CLJ)
    * [FIX] Fix Solaris compilation of Redis 3.0. (Jan-Erik Rediger)
    * [NEW] Variadic EXISTS command. Now the command accepts multiple
      arguments and returns the total count of existing keys.
  - added missing sentinel link
* Mon Jun 15 2015 mrueckert@suse.de
  - also pass the bind address to the redis-cli for shutdown
    (boo#835815)
* Sun Jun 07 2015 mrueckert@suse.de
  - update to 3.0.2
    * [FIX] Critical security issue fix by Ben Murphy:
      http://t.co/LpGTyZmfS7
    * [FIX] SMOVE reply fixed when src and dst keys are the same.
      (Glenn Nethercutt)
    * [FIX] Lua cmsgpack lib updated to support str8 type.
      (Sebastian Waisbrot)
    * [NEW] ZADD support for options: NX, XX, CH. See new doc at
      redis.io.  (Salvatore Sanfilippo)
    * [NEW] Senitnel: CKQUORUM and FLUSHCONFIG commands back ported.
      (Salvatore Sanfilippo)
* Sat May 16 2015 ledest@gmail.com
  - update to 3.0.1
    * Sentinel memory leak due to hiredis fixed.
    * Sentinel memory leak on duplicated instance.
    * Redis crash on Lua reaching output buffer limits.
    * Sentinel flushes config on +slave events.
* Thu Apr 02 2015 mrueckert@suse.de
  - update to 3.0.0
    >> What's new in Redis 3.0 compared to Redis 2.8?
    * Redis Cluster: a distributed implementation of a subset of Redis.
    * New "embedded string" object encoding resulting in less cache
      misses. Big speed gain under certain work loads.
    * AOF child -> parent final data transmission to minimize latency
      due to "last write" during AOF rewrites.
    * Much improved LRU approximation algorithm for keys eviction.
    * WAIT command to block waiting for a write to be transmitted
      to the specified number of slaves.
    * MIGRATE connection caching. Much faster keys migraitons.
    * MIGARTE new options COPY and REPLACE.
    * CLIENT PAUSE command: stop processing client requests for a
      specified amount of time.
    * BITCOUNT performance improvements.
    * CONFIG SET accepts memory values in different units (for
      example you can use "CONFIG SET maxmemory 1gb").
    * Redis log format slightly changed reporting in each line the
      role of the instance (master/slave) or if it's a saving child
      log.
    * INCR performance improvements.
    >> Refactoring changes (no new features nor bug fixes)
    * Blocking operations full refactoring (blocked.c)
    * Client output buffer memory tracking refactored.
    for all the details see
      /usr/share/doc/packages/redis/00-RELEASENOTES
  - refreshed redis-enable-bactrace-on-x86-and-ia64-only.patch to
    apply cleanly
* Wed Apr 01 2015 mrueckert@suse.de
  - make sure we do not daemonize
* Wed Apr 01 2015 mrueckert@suse.de
  - finished systemd support
* Mon Mar 30 2015 mrueckert@suse.de
  - update to 2.8.19
    - Don't log admin commands in MONITOR. (antirez)
    - List of commands flagged as admin commands modified. (antirez)
    - Lua cmsgpack lib updated to latest version. (antirez)
    - Add symlink to redis-sentinel during make install (Rhommel
      Lamas)
    - SORT: Don't sort Set elements if not needed. (antirez)
    - Fix zero-ordering SORT when called against lists (Matt
      Stancliff)
    - Update redis_init_script.tpl (Ben Dowling)
    - FIXED redis-benchmark's idle mode.With idle mode shouldn't
      create write event (zhanghailei)
    - zipmap.c: update comments above (Sun He)
    - replaced // comments  #2150 (Deepak Verma)
    - redis-benchmark AUTH command to be discarded after the first
      send #2150 (azure provisioned user)
    - sds.c: Correct two spelling mistakes in comments (Sun He)
    - sds.c/sdscatvprintf: set va_end to finish va_list cpy (Sun He)
    - sds.c: Correct some comments (Sun He)
    - Update whatisdoing.sh (Serghei Iakovlev)
    - Include stropts only if __sun is defined. (antirez)
    - Fix implicit declaration of ioctl on Solaris (Jan-Erik Rediger)
    - Silence _BSD_SOURCE warnings in glibc 2.20 and forward (Johan
      Bergström)
    - Mark whatisdoing.sh as deprecated in top-comment. (antirez)
    - getting pid fixes (Serghei Iakovlev)
    - sparkline.c: AddSample skip Empty label (Sun He)
    - sparkline.c: mov label-ini into the AddSample Function (Sun He)
    - Only ignore sigpipe in interactive mode (Jan-Erik Rediger)
    - Simplify lua_cmsgpack macro and fix build on old Linux distros.
      (antirez)
* Thu Feb 12 2015 lang@b1-systems.de
  - redis requires sudo for the systemv-init script.
    As of openSUSE 13.2 sudo is not implicitly included in the dependency tree.
* Sat Dec 06 2014 mrueckert@suse.de
  - update to 2.8.18
    * [FIX] Linenoise updated to be more VT100 compatible. (Salvatore Sanfilippo)
    * [FIX] A number of typos fixed inside comments. (Various authors)
    * [FIX] redis-cli no longer quits after long timeouts. (Matt Stancliff)
    * [FIX] Test framework improved to detect never terminating scripts, cleanup
      instances on crashes. (Salvatore Sanfilippo)
    * [FIX] PFCOUNT can be used on slaves now. (Salvatore Sanfilippo)
    * [FIX] ZSCAN no longer report very small scores as 0. (Matt Stancliff,
      Michael Grunder, Salvatore Sanfilippo)
    * [FIX] Don't show the ASCII logo if syslog is enabled. Redis is now
      an Enterprise Grade product. (Salvatore Sanfilippo)
    * [NEW] EXPERIMENTAL: Diskless replication, for more info check the doc at
      http://redis.io/topics/replication. (Salvatore Sanfilippo).
    * [NEW] Transparent Huge Pages detection and reporting in logs and
      LATENCY DOCTOR output. (Salvatore Sanfilippo)
    * [NEW] Many Lua scripting enhancements: Bitops API, cjson upgrade and tests,
      cmsgpack upgrade. (Matt Stancliff)
    * [NEW] Total and instantaneous Network bandwidth tracking in INFO.
    * [NEW] DEBUG POPULATE two args form implemented (old form still works).
      The second argument is the key prefix. Default is "key:" (Salvatore
      Sanfilippo)
    * [NEW] Check that tcp-backlog is matched by /proc/sys/net/core/somaxconn, and
      warn about it if not. (Salvatore Sanfilippo)
    for the rest see /usr/share/doc/packages/redis/00-RELEASENOTES
* Sun Nov 09 2014 ledest@gmail.com
  - fix bashisms in pre script

Files

/etc/logrotate.d/redis
/etc/redis
/etc/redis/default.conf.example
/etc/redis/sentinel.conf.example
/run/redis
/usr/bin/redis-benchmark
/usr/bin/redis-check-aof
/usr/bin/redis-check-rdb
/usr/bin/redis-cli
/usr/lib/sysctl.d/00-redis.conf
/usr/lib/systemd/system/redis-sentinel.target
/usr/lib/systemd/system/redis-sentinel@.service
/usr/lib/systemd/system/redis.target
/usr/lib/systemd/system/redis@.service
/usr/lib/sysusers.d/redis-user.conf
/usr/lib/tmpfiles.d/redis.conf
/usr/sbin/rcredis
/usr/sbin/redis-check-aof
/usr/sbin/redis-check-rdb
/usr/sbin/redis-sentinel
/usr/sbin/redis-server
/usr/share/doc/packages/redis
/usr/share/doc/packages/redis/00-RELEASENOTES
/usr/share/doc/packages/redis/BUGS
/usr/share/doc/packages/redis/CONTRIBUTING
/usr/share/doc/packages/redis/README.SUSE
/usr/share/doc/packages/redis/README.md
/usr/share/licenses/redis
/usr/share/licenses/redis/COPYING
/var/lib/redis
/var/lib/redis/default
/var/log/redis


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:20:47 2024