Skip to content

Releases: litedb-org/LiteDB

v5.0.16

09 Mar 20:01

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v5.0.15...v5.0.16

v5.0.15

23 Dec 23:00

Choose a tag to compare

v5.0.14

16 Dec 13:32

Choose a tag to compare

v5.0.13

08 Dec 18:53

Choose a tag to compare

  • Fix security vulnerability in deserialize bad json in .NET 4.5

v5.0.12

15 Jun 20:04

Choose a tag to compare

  • Made DiskWriterQueue more reliable so that it can handle multiple back calls better
  • Fix missing _type when serializing a covariant collection
  • Fix reload last index node after some page defrag
  • Replace ToUpper to ToUpperInvariant
  • Fix monitor transaction leaking
  • Fix minor bugs

v5.0.11

21 Jul 18:44

Choose a tag to compare

v5.0.10

09 Jan 21:17

Choose a tag to compare

Bugfixes

  • Fix invalid multi-page CString reader
  • Fixed issue when checkpoint soft limit not applied for manual transaction

ENSURE in Release mode

  • This new 5.0.10 contains an adicional test layer called ENSURE used in all storage/cache layer. Until now, this tests was executed only in DEBUG mode but now we add into RELEASE mode too. If any ENSURE are violated a system exception will be throwed (prefix message "LiteDB ENSURE:"). This will better for detect and prevent data corruption database and much better diagnostics and bugfixes. Complex tests (like check if a byffer is empty) still run in DEBUG mode only to avoid performance down.

v5.0.9

06 Aug 16:29

Choose a tag to compare

Changes

  • The LiteDatabase ctor that takes a Stream for its data storage now takes another Stream as log storage. LiteDB can now be used with custom storage solutions (as long as it implements Stream).
  • Custom serializers and deserializers can now be used even with basic BSON types. This is useful if you don't want to lose precision when storing DateTime.

Bug fixes

v5.0.8

13 May 16:17

Choose a tag to compare

v5.0.7

14 Apr 14:13

Choose a tag to compare

New

  • Maximum index key length increased to 1023 bytes
  • Upgrade option in ConnectionString is now a bool again (DataOnly no longer needed because index key length was increased)
  • Id field in resolved includes are now stored with $id key (instead of _id)

Bug fixes