From 63e7276c7da864d47c004cc959dd8c6b1731c247 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Fri, 18 Jun 2021 15:13:51 +0300 Subject: [PATCH] mdbx: update ChangeLog. --- ChangeLog.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 8d6047e3..76a14165 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,7 +6,7 @@ ChangeLog ### TODO - [Move most of `mdbx_chk` functional to the library API](https://github.com/erthink/libmdbx/issues/204). - - [Fix recursive use of SRW-lock on Windows cause by `MDBX_NOTLS` option.](https://github.com/erthink/libmdbx/issues/203). + - [Replace SRW-lock on Windows to allow shrink DB with `MDBX_NOTLS` option](https://github.com/erthink/libmdbx/issues/210). - [More flexible support of asynchronous runtime/framework(s)](https://github.com/erthink/libmdbx/issues/200). - [Migration guide from LMDB to MDBX](https://github.com/erthink/libmdbx/issues/199). - [Get rid of dirty-pages list in MDBX_WRITEMAP mode](https://github.com/erthink/libmdbx/issues/193). @@ -22,14 +22,20 @@ ChangeLog Acknowledgements: - [Alex Sharov](https://github.com/AskAlexSharov) for reporting and testing. + - [Andrea Lanfranchi](https://github.com/AndreaLanfranchi) for reporting bugs. New features: - - Allow to predefine/override `MDBX_BUILD_TIMESTAMP` for builds reproducibility (https://github.com/erthink/libmdbx/issues/201). + - [Allow to predefine/override `MDBX_BUILD_TIMESTAMP` for builds reproducibility](https://github.com/erthink/libmdbx/issues/201). Fixes: - - Fixed excess meta-pageы checks in case `mdbx_chk` is called to check the DB for a specific meta page and thus could prevent switching to the selected meta page, even if the check passed without errors. + - Fixed excess meta-pages checks in case `mdbx_chk` is called to check the DB for a specific meta page and thus could prevent switching to the selected meta page, even if the check passed without errors. + - Fixed [recursive use of SRW-lock on Windows cause by `MDBX_NOTLS` option](https://github.com/erthink/libmdbx/issues/203). + - Fixed [log a warning during a new DB creation](https://github.com/erthink/libmdbx/issues/205). + - Fixed [false-negative `mdbx_cursor_eof()` result](https://github.com/erthink/libmdbx/issues/207). + - Fixed [`make install` with non-GNU `install` utility (OSX, BSD)](https://github.com/erthink/libmdbx/issues/208). + - Fixed [installation by `CMake` in special cases by complete use `GNUInstallDirs`'s variables](https://github.com/erthink/libmdbx/issues/209). ## v0.10.1 at 2021-06-01