Skip to content

Commit

Permalink
Merge pull request #35 from wojas/upgrade-lmdb-0-9-33
Browse files Browse the repository at this point in the history
Upgrade LMDB to 0.9.33 & use official OpenLDAP repo as source for updates
  • Loading branch information
wojas authored Jan 2, 2025
2 parents de39dd9 + c74e468 commit c2681f8
Show file tree
Hide file tree
Showing 4 changed files with 139 additions and 48 deletions.
11 changes: 11 additions & 0 deletions CHANGES.lmdb.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
LMDB 0.9 Change Log

LMDB 0.9.33 Release (2024/05/21)
ITS#9037 mdb_page_search: fix error code when DBI record is missing
ITS#10198 For win32, stop passing ignored parameter
ITS#10212 Fix meta page usage by read only tools

LMDB 0.9.32 Release (2024/01/29)
ITS#9378 - Add ability to replay log and replay log tool
ITS#10095 - partial revert of ITS#9278. The patch was incorrect and introduced numerous race conditions.
ITS#10125 - mdb_load: fix cursor reinit in Append mode
ITS#10137 - Allow users to define MDB_IDL_LOGN

LMDB 0.9.31 Release (2023/07/10)
ITS#8447 - Fix cursor_put(MDB_CURRENT) on DUPSORT DB with different sized data

Expand Down
4 changes: 2 additions & 2 deletions lmdb/lmdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ typedef int mdb_filehandle_t;
/** Library minor version */
#define MDB_VERSION_MINOR 9
/** Library patch version */
#define MDB_VERSION_PATCH 31
#define MDB_VERSION_PATCH 33

/** Combine args a,b,c into a single integer for easy version comparisons */
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
Expand All @@ -210,7 +210,7 @@ typedef int mdb_filehandle_t;
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)

/** The release date of this library version */
#define MDB_VERSION_DATE "July 10, 2023"
#define MDB_VERSION_DATE "May 21, 2024"

/** A stringifier for the version info */
#define MDB_VERSTR(a,b,c,d) "LMDB " #a "." #b "." #c ": (" d ")"
Expand Down
Loading

0 comments on commit c2681f8

Please sign in to comment.