All Versions
23
Latest Version
Avg Release Cycle
105 days
Latest Release
1686 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.5.3.0 Changes
November 10, 2020๐ Bugfix release
-
v2.5.2.0 Changes
June 16, 2020๐ Supported frameworks now are:
- ๐ .Net Framework 4.6.1, 4.6.2, 4.7.2 and 4.8 (
System.Text.Json
is not supported for .Net Framework 4.5.x and thus had to be dropped) - .Net Standard 2.0 and 2.1
- ๐ .Net Framework 4.6.1, 4.6.2, 4.7.2 and 4.8 (
-
v2.5.1.0 Changes
June 09, 2020๐ Changes:
- โ Added
System.Text.Json.JsonElement
to the JsonSource extension.Newtonsoft.Json
is still included. - โ Added a demo version as a netcoreapp3.1 WindowsDesktop App
- ๐ Supported framworks now are:
- .Net Framework 4.6.2, 4.7.2 and 4.8 (
System.Text.Json
is not supported for .Net Framework 4.5.x and thus had to be dropped) - .Net Standard 2.0 and 2.1
- .Net Framework 4.6.2, 4.7.2 and 4.8 (
- โก๏ธ Updated the Wiki
- โ Added
-
v2.5.0.0 Changes
November 02, 2019Sources
- ๐ New: Added
ValueTupleSource
forValueTuple
s - ๐ Changed:
SmartObjects
andSmartObjectsSource
are depreciated in favor ofValueTupleSource
Settings
- ๐ฅ Breaking Change: Internal string comparisons (i.e. for placeholder names) are no more culture-specific, but
Ordinal
orOrdinalIgnoreCase
respectively. See discussion under this issue. - ๐ฅ Breaking Change: Default
ErrorAction
is nowThrowError
for parser and formatter, instead ofIgnore
Other
- ๐ Changed: Removed all members which were flagged obsolete since more than a year.
- ๐ New: Added
-
v2.4.2.0 Changes
February 09, 2019๐ Fixes an issue with
SmartObjects
-
v2.4.1.0 Changes
January 05, 2019TimeFormatter and ConditionalFormatter do
DateTime
operations with their Universal Time representation.
๐ See more in details in the change log -
v2.4.0.0 Changes
January 04, 2019๐ TimeFormatter and ConditionalFormatter now support DateTimeOffset as parameter
๐ See more in details in the change log -
v2.3.1.0 Changes
November 15, 2018v2.3.1.0
- Added SubStringFormatter thanks to arilani
- ๐ Improved code coverage in unit tests
- โก๏ธ Updated dependencies
- โฌ๏ธ As announced: Dropped support for .NET 4.0 , which was released back in 2010.
-
v2.3.0.0 Changes
June 13, 2018v2.3.0.0
- ๐ Support for JSON Objects as data source
- Added IsMatchFormatter thanks to ericpyle
- ๐ Fixes issue with unsigned integers #101
-
v2.2.0.0 Changes
February 17, 2018v2.2.0.0
- ๐ Fixes issue #101
- This version includes a breaking change:
- Before:
OnParsingFailure
event was invoked after each parsing error - Now :
OnParsingFailure
event is invoked after parsing is completed
ParsingErrorEventArgs
has a different signature. It now includes allParsingErrors
with all details that would be supplied during a parser exception. This also includes messages indicating where there the parse error occurred.
- Before: