Update HISTORY.md and bump version

This commit is contained in:
Yanqin Jin 2020-04-28 15:44:44 -07:00
parent 59530e3282
commit 931b7f6785
2 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,7 @@
# Rocksdb Change Log
## Unreleased
## 6.9.3 (04/28/2020)
### Bug Fixes
* Upgraded version of bzip library (1.0.6 -> 1.0.8) used with RocksJava to address potential vulnerabilities if an attacker can manipulate compressed data saved and loaded by RocksDB (not normal). See issue #6703.
* Fix a bug by updating CURRENT file so that it points to the correct MANIFEST file after best-efforts recovery.
@ -7,10 +9,6 @@
* Fix a bug caused by not including user timestamp in MultiGet LookupKey construction. This can lead to wrong query result since the trailing bytes of a user key, if not shorter than timestamp, will be mistaken for user timestamp.
* Fix a bug caused by using wrong compare function when sorting the input keys of MultiGet with timestamps.
## 6.9.3 (04/28/2020)
### Bug Fixes
## 6.9.2 (04/16/2020)
### Public API Change
* Add NewFileChecksumGenCrc32cFactory to the file checksum public API, such that the builtin Crc32c based file checksum generator factory can be used by applications.

View File

@ -6,7 +6,7 @@
#define ROCKSDB_MAJOR 6
#define ROCKSDB_MINOR 9
#define ROCKSDB_PATCH 2
#define ROCKSDB_PATCH 3
// Do not use these. We made the mistake of declaring macros starting with
// double underscore. Now we have to live with our choice. We'll deprecate these