mirror of
https://github.com/facebook/rocksdb.git
synced 2024-12-04 02:02:41 +00:00
Update HISTORY.md and version.h for 9.5.2
This commit is contained in:
parent
c062d4e662
commit
a7e70f95aa
|
@ -1,10 +1,13 @@
|
|||
# Rocksdb Change Log
|
||||
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
|
||||
|
||||
## Unreleased
|
||||
## 9.5.2 (08/13/2024)
|
||||
### Bug Fixes
|
||||
* Fix a race condition in pessimistic transactions that could allow multiple transactions with the same name to be registered simultaneously, resulting in a crash or other unpredictable behavior.
|
||||
|
||||
### Public API Changes
|
||||
* Add ticker stats to count file read retries due to checksum mismatch
|
||||
|
||||
## 9.5.1 (08/02/2024)
|
||||
### Bug Fixes
|
||||
* *Make DestroyDB supports slow deletion when it's configured in `SstFileManager`. The slow deletion is subject to the configured `rate_bytes_per_sec`, but not subject to the `max_trash_db_ratio`.
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// minor or major version number planned for release.
|
||||
#define ROCKSDB_MAJOR 9
|
||||
#define ROCKSDB_MINOR 5
|
||||
#define ROCKSDB_PATCH 1
|
||||
#define ROCKSDB_PATCH 2
|
||||
|
||||
// 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
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Add ticker stats to count file read retries due to checksum mismatch
|
Loading…
Reference in a new issue