Releases: Arkensor/EnfusionDatabaseFramework
Releases · Arkensor/EnfusionDatabaseFramework
Beta 0.6.7 - Web proxy header support and fixes
- Added ability to define custom headers
- Fixed ConnectionString CLI param not being read correctly
- Updated docs for MongoDB
Beta 0.6.6 - AR 1.1 compatiblity
Full Changelog: 0.6.5...0.6.6
Known issue: JSON dbs are not properly working on exp build 12. This will be fixed in the next exp update of the game automatically.
Beta 0.6.5 - Bugfixes
Full Changelog: 0.6.4...0.6.5
Beta 0.6.4 - AR 1.1 compatiblity
Compatibility update for AR update 1.1
Beta 0.6.1 - AR 1.0 compatibility patch
- Fixed async callback methods visibility (they need to be public for now)
- Fixed RestApi error code processing
- Fixed StructAutoCopy problem in vanilla with a little workaround of passing the explicit target type as template param
Beta 0.6.0
Docs
- Add docs on MongoDB proxy
Fixes
- Fix missing reset of shutdown force blocking driver state
Beta 0.5.0
Compatibility update for 0.9.9
Compatibility hotfix. There will be a bigger feature update utilizing the new capabilities that come with the update later #5
Breaking
- Remove
EDF_DbValues
wrapper. Simply convert your code fromEDF_DbValues<float>.From({3.14, 2.22, 42.42})
to{3.14, 2.22, 42.42}
Fixes
- Replace deprecated methods
Beta 0.4.0
Breaking
Null()
andEmpty()
query builder options were merged intoNullOrDefault()
- Strings are no longer invariant by default and require the
Invariant()
builder option to behave like before the update
Additions
- MongoDB storage backend via general web proxy driver implementation
- Refactored query builder API to offer options for
Invariant()
andPartial()
string matches - Added support for UTF8 string length
Fixes
- Fixed array equality implementation that lead to false positive results
Beta 0.3.0
- Add
EDF_ScriptInvokerCallback
utility - Add
EDF_DbFindCallbackMultipleUntyped
Beta 0.2.1
- Unseal classes for debugging and expert users