Skip to content

Commit 86ef832

Browse files
author
benschermel
committed
bump version and update deb changelog
1 parent 542857b commit 86ef832

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

pkg/deb/master_changelog

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
keydb (6:6.3.2-1distribution_placeholder) codename_placeholder; urgency=medium
2+
3+
* This release contains Beta level support for KeyDB FLASH, new ASYNC commands, latency improvements and a number of bug fixes.
4+
* KeyDB FLASH is included as a Beta feature. FLASH allows KeyDB to persist data to the storage medium it is written to, avoiding the need for AOF/RDB files. KeyDB uses rocksdb as the persistent storage provider and can be enabled with config "storage-provider flash /path/to/rocksdb/output". Read more at https://docs.keydb.dev/docs/flash/
5+
* In addition to GET/MGET, ASYNC support has been added for the following commands: HGET, HMGET, HKEYS, HVALS, HGETALL, HSCAN and can be enable with config "enable-async-commands yes”
6+
* Packaging support for Ubuntu 22.04 (Jammy) and Debian 12 (Bookworm) has been included with this release
7+
* Added new soft shutdown feature, can be enabled with config "soft-shutdown yes".
8+
* If soft shutdown is enabled, instead of shutting down right away, the server will wait until all clients have disconnected, and will reject all new connection attempts.
9+
* Fixed memory leak with tls certificates when tls allowlist is enabled
10+
* Fixed bug in rdb load with flash enabled to ensure all dbs are safe to load (previously only checked db[0])
11+
* Fixed race conditions in rdb load and replication
12+
* Fixed memory access of rdb file after it should have been deleted
13+
* Fixed integer overflow bug in flash(Issue #486)
14+
* Improve TLS latency by queueing new commands before executing instead of after
15+
* Removed O(n) count of memory usage from info command(replaced by O(1) estimate)
16+
* Improved latency of clearing large number of flash DBs(Thanks to Paul Chen for this fix)(Issue #516)
17+
* replaced sprintf with snprintf to avoid potential security bugs
18+
* Fixed bug where a failed move due to key already existing in move target would result in the key being removed from move source(Thanks to Paul Chen for this fix)(Issue #497)
19+
* Fixed usage of deprecated OpenSSL api in OpenSSL v>3.0.1(Issue #392)
20+
* Imported security fixes from Redis (CVE-2023-22458 CVE-2022-35977)
21+
* Other fixed issues: #480 #477 #454 #452 #303 #425 #492 #541
22+
23+
-- Ben Schermel <ben@eqalpha.com> Fri, 20 Jan 2023 20:00:37 +0000
24+
125
keydb (6:6.3.1-1distribution_placeholder) codename_placeholder; urgency=medium
226

327
* This point release contains fixes to bugs related to expires, active-rep, and rdb saving

src/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#define KEYDB_REAL_VERSION "255.255.255"
2-
#define KEYDB_VERSION_NUM 0x00ffffff
1+
#define KEYDB_REAL_VERSION "6.3.2"
2+
#define KEYDB_VERSION_NUM 0x00060302
33
extern const char *KEYDB_SET_VERSION; // Unlike real version, this can be overriden by the config
44

55
enum VersionCompareResult

0 commit comments

Comments
 (0)