mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-29 23:19:20 +08:00
mdbx: release v0.11.10
The stable bugfix release. It is planned that this will be the last release of the v0.11 branch. New: ---- - The C++ API has been refined to simplify support for `wchar_t` in path names. - Added explicit error message for Buildroot's Microblaze toolchain maintainers. Fixes: ------ - Never use modern `__cxa_thread_atexit()` on Apple's OSes. - Use `MultiByteToWideChar(CP_THREAD_ACP)` instead of `mbstowcs()`. - Don't check owner for finished transactions. - Fixed typo in `MDBX_EINVAL` which breaks MingGW builds with CLANG. Minors: ------- - Fixed variable name typo. - Using `ldd` to check used dso. - Added `MDBX_WEAK_IMPORT_ATTRIBUTE` macro. - Use current transaction geometry for untouched parameters when `env_set_geometry()` called within a write transaction. - Minor clarified `iov_page()` failure case. 14 files changed, 263 insertions(+), 252 deletions(-) Signed-off-by: Леонид Юрьев (Leonid Yuriev) <leo@yuriev.ru>
This commit is contained in:
parent
26f52a19c3
commit
aaa9112c83
@ -1,13 +1,15 @@
|
|||||||
ChangeLog
|
ChangeLog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
## v0.11.+
|
## v0.11.10 (the TriColor) at 2022-08-22
|
||||||
|
|
||||||
Bugfixing within the stable `master` branch.
|
The stable bugfix release.
|
||||||
|
It is planned that this will be the last release of the v0.11 branch.
|
||||||
|
|
||||||
New:
|
New:
|
||||||
|
|
||||||
- The C++ API has been refined to simplify support for `wchar_t` in path names.
|
- The C++ API has been refined to simplify support for `wchar_t` in path names.
|
||||||
|
- Added explicit error message for Buildroot's Microblaze toolchain maintainers.
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
|
|
||||||
@ -22,6 +24,7 @@ Minors:
|
|||||||
- Using `ldd` to check used dso.
|
- Using `ldd` to check used dso.
|
||||||
- Added `MDBX_WEAK_IMPORT_ATTRIBUTE` macro.
|
- Added `MDBX_WEAK_IMPORT_ATTRIBUTE` macro.
|
||||||
- Use current transaction geometry for untouched parameters when `env_set_geometry()` called within a write transaction.
|
- Use current transaction geometry for untouched parameters when `env_set_geometry()` called within a write transaction.
|
||||||
|
- Minor clarified `iov_page()` failure case.
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
@ -30,7 +33,6 @@ Minors:
|
|||||||
## v0.11.9 (Чирчик-1992) at 2022-08-02
|
## v0.11.9 (Чирчик-1992) at 2022-08-02
|
||||||
|
|
||||||
The stable bugfix release.
|
The stable bugfix release.
|
||||||
It is planned that this will be the last release of the v0.11 branch.
|
|
||||||
|
|
||||||
```
|
```
|
||||||
18 files changed, 318 insertions(+), 178 deletions(-)
|
18 files changed, 318 insertions(+), 178 deletions(-)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" Copyright 2015-2022 Leonid Yuriev <leo@yuriev.ru>.
|
.\" Copyright 2015-2022 Leonid Yuriev <leo@yuriev.ru>.
|
||||||
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
||||||
.TH MDBX_CHK 1 "2022-08-02" "MDBX 0.11.9"
|
.TH MDBX_CHK 1 "2022-08-22" "MDBX 0.11.10"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mdbx_chk \- MDBX checking tool
|
mdbx_chk \- MDBX checking tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
.\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
||||||
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
||||||
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
||||||
.TH MDBX_COPY 1 "2022-08-02" "MDBX 0.11.9"
|
.TH MDBX_COPY 1 "2022-08-22" "MDBX 0.11.10"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mdbx_copy \- MDBX environment copy tool
|
mdbx_copy \- MDBX environment copy tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.\" Copyright 2021-2022 Leonid Yuriev <leo@yuriev.ru>.
|
.\" Copyright 2021-2022 Leonid Yuriev <leo@yuriev.ru>.
|
||||||
.\" Copyright 2014-2021 Howard Chu, Symas Corp. All Rights Reserved.
|
.\" Copyright 2014-2021 Howard Chu, Symas Corp. All Rights Reserved.
|
||||||
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
||||||
.TH MDBX_DROP 1 "2022-08-02" "MDBX 0.11.9"
|
.TH MDBX_DROP 1 "2022-08-22" "MDBX 0.11.10"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mdbx_drop \- MDBX database delete tool
|
mdbx_drop \- MDBX database delete tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.\" Copyright 2014-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
.\" Copyright 2014-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
||||||
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
||||||
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
||||||
.TH MDBX_DUMP 1 "2022-08-02" "MDBX 0.11.9"
|
.TH MDBX_DUMP 1 "2022-08-22" "MDBX 0.11.10"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mdbx_dump \- MDBX environment export tool
|
mdbx_dump \- MDBX environment export tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.\" Copyright 2014-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
.\" Copyright 2014-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
||||||
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
||||||
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
||||||
.TH MDBX_LOAD 1 "2022-08-02" "MDBX 0.11.9"
|
.TH MDBX_LOAD 1 "2022-08-22" "MDBX 0.11.10"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mdbx_load \- MDBX environment import tool
|
mdbx_load \- MDBX environment import tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
.\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved.
|
||||||
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
.\" Copyright 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
||||||
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
||||||
.TH MDBX_STAT 1 "2022-08-02" "MDBX 0.11.9"
|
.TH MDBX_STAT 1 "2022-08-22" "MDBX 0.11.10"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mdbx_stat \- MDBX environment status tool
|
mdbx_stat \- MDBX environment status tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Loading…
Reference in New Issue
Block a user