summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFosco Marotto <fjm@fb.com>2018-05-25 16:41:35 -0700
committerFosco Marotto <fjm@fb.com>2018-05-25 16:41:35 -0700
commitd25ca5fd49e7e523be91974ac951fb4265df57ec (patch)
treeb3243ebeb782e86fa1962578f319c07e6b16392b
parent2da2286dd0b4a48b204e169a2dae7504ed28eae9 (diff)
Update history for release of 5.13.2v5.13.2
-rw-r--r--HISTORY.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 76bcabeef..ca32503c8 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,8 +1,12 @@
# Rocksdb Change Log
-## 5.13.2 (5/23/2018)
+## 5.13.2 (5/25/2018)
### Public API Change
* Introduced `CompressionOptions::kDefaultCompressionLevel`, which is a generic way to tell RocksDB to use the compression library's default level. It is now the default value for `CompressionOptions::level`. Previously the level defaulted to -1, which gave poor compression ratios in ZSTD.
+### Bug Fixes
+* Fix segfault caused by object premature destruction (PR #3898)
+* Fix an issue with unnecessary capture in lambda expressions (PR #3904)
+
## 5.13.1 (4/30/2018)
### New Features
* Add `Env::LowerThreadPoolCPUPriority(Priority)` method, which lowers the CPU priority of background (esp. compaction) threads to minimize interference with foreground tasks.