2021-03-14 23:30:09 +00:00
|
|
|
# Release History for MDBX
|
2020-12-22 06:24:18 +00:00
|
|
|
|
2021-10-22 20:05:28 +00:00
|
|
|
---
|
|
|
|
|
## v0.3.3 [2021-10-22] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Bugfixes:
|
|
|
|
|
|
|
|
|
|
- Close any open transactions if serialization functions fail.
|
|
|
|
|
- Don't use functions that assume NUL is the stream terminator.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Enhancements:
|
|
|
|
|
|
|
|
|
|
- Add Loggability for debug output.
|
|
|
|
|
|
|
|
|
|
|
2021-07-14 00:55:15 +00:00
|
|
|
---
|
|
|
|
|
## v0.3.2 [2021-07-13] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Bugfixes:
|
|
|
|
|
|
|
|
|
|
- Fix double memory allocation during initialization.
|
|
|
|
|
- Make various ruby->c string allocations safe with the garbage collector.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Minutiae:
|
|
|
|
|
|
|
|
|
|
- Raise exception if instantiating with invalid options.
|
|
|
|
|
|
|
|
|
|
|
2021-06-28 23:39:46 +00:00
|
|
|
---
|
|
|
|
|
## v0.3.1 [2021-05-16] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Bugfix:
|
|
|
|
|
|
|
|
|
|
- #drop could potentially remove unintended data. Yanked version
|
|
|
|
|
v0.3.0.
|
|
|
|
|
|
|
|
|
|
|
2020-12-22 06:24:18 +00:00
|
|
|
---
|
2021-04-08 22:27:47 +00:00
|
|
|
## v0.3.0 [2021-04-09] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Enhancements:
|
|
|
|
|
|
|
|
|
|
- Alter the behavior of #clear, so it doesn't destroy collection
|
|
|
|
|
environments, but just empties them.
|
|
|
|
|
|
|
|
|
|
- Add #drop, which explictly -does- destroy a collection environment.
|
|
|
|
|
|
|
|
|
|
- Switching to a collection now automatically creates its environment.
|
|
|
|
|
|
|
|
|
|
- Add include? and has_key?, for presence checks without allocating
|
|
|
|
|
value memory or requiring deserialization.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Bugfixes:
|
|
|
|
|
|
|
|
|
|
- Run all cursor methods through rb_protect, to ensure proper
|
|
|
|
|
cursor cleanup in the event of an exception mid iteration.
|
|
|
|
|
|
|
|
|
|
- Fix the block form of collections to support multiple scopes.
|
|
|
|
|
|
|
|
|
|
|
2021-04-06 15:43:28 +00:00
|
|
|
## v0.2.1 [2021-04-06] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Enhancement:
|
|
|
|
|
|
|
|
|
|
- Automatically stringify any argument to the collection() method.
|
|
|
|
|
|
|
|
|
|
|
2021-03-20 01:14:50 +00:00
|
|
|
## v0.2.0 [2021-03-19] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Enhancement:
|
|
|
|
|
|
|
|
|
|
- Support dup/clone. This has limited use, as there can only
|
|
|
|
|
be one open handle per process, but implemented in the interests
|
|
|
|
|
of avoiding unexpected behavior.
|
|
|
|
|
|
|
|
|
|
|
2021-03-15 06:54:35 +00:00
|
|
|
## v0.1.1 [2021-03-14] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Bugfix:
|
|
|
|
|
|
|
|
|
|
- Don't inadvertantly close an open transaction while using hash convenience methods.
|
|
|
|
|
|
|
|
|
|
|
2021-03-14 23:30:09 +00:00
|
|
|
## v0.1.0 [2021-03-14] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Initial public release.
|
|
|
|
|
|
2020-12-22 06:24:18 +00:00
|
|
|
|
|
|
|
|
## v0.0.1 [2020-12-16] Mahlon E. Smith <mahlon@martini.nu>
|
|
|
|
|
|
|
|
|
|
Early release, initial basic functionality.
|
|
|
|
|
|
|
|
|
|
|