All Versions
109
Latest Version
Avg Release Cycle
50 days
Latest Release
289 days ago

Changelog History
Page 4

  • v3.0.0-rc Changes

    October 07, 2018
    • ๐Ÿ‘ (Breaking Change) Added support for DateTimeOffset to JSON, XML, CSV, and HTML providers.
    • ๐Ÿ‘ (Breaking Change) Added support for TimeSpan to JSON, XML, CSV, and HTML providers.
    • Map XSD date to System.DateTime and XSD dateTime to System.DateTimeOffset.
    • ๐Ÿ›  Fixed large float values being silently converted to int.MinValue when parsing JSON.
    • ๐Ÿ‘Œ Improved handling of invalid cookies.
    • ๐Ÿ›  Fixes for #1091 - tidying up regex handling in script tags.
  • v3.0.0-beta4 Changes

    July 08, 2018
    • ๐Ÿ“œ (Breaking Change) Ignore culture when parsing JSON to better match the JSON spec.
    • ๐Ÿ›  Fixed handling of empty cookie headers.
    • (Breaking Change) Don't silently convert decimals and floats to integers in JsonProvider.
    • ๐Ÿ‘Œ Improved the performance of the type provider design time components.
    • ๐Ÿ“œ Preserve white-space when parsing XML.
    • Recognise media type application/json-rpc as text.
    • ๐Ÿ›  Fix parsing of escaped charaters in string literals within HTML script tags.
    • โž• Added constants for HTTP status codes.
    • โž• Added support for schemas (XSD) in the XmlProvider.
  • v3.0.0-beta3 Changes

    April 09, 2018
    • Increased type caches TTL from 10 seconds to 5 minutes.
  • v3.0.0-beta2 Changes

    April 09, 2018
    • ๐Ÿ›  Fixed memory leaks inside the the type provider design time components.
    • ๐Ÿ‘Œ Improved the performance of the type provider design time components.
  • v3.0.0-beta Changes

    April 04, 2018
    • โฌ‡๏ธ Drop PCL Profile 259, 7, 78 support in favour of netstandard2.0.
    • ๐Ÿ‘Œ Support F# RFC FST-1003 loading into .NET Core-based F# tooling.
    • ๐Ÿ‘ Integer values for optional parameter for the System.Text.Encoding are only supported when the F# compiler is run using .NET Framework. By default, new-style .NET SDK project files run the F# compiler with .NET Core. To force the use of an F# compiler running with .NET Framework see this guide.
  • v2.4.6 Changes

    March 25, 2018
    • โž• Added ContentTypeWithEncoding helper to HttpRequestHeaders.
    • JsonValue will explicitly set content type charset to UTF-8 when making requests.
    • Prevent superfluous encoding of URL parameters.
  • v2.4.5 Changes

    February 19, 2018
    • โž• Add an optional parameter for the System.Text.Encoding to use when reading data to the CSV, HTML, and Json providers. This parameter is called encoding and should be present on all Load and AsyncLoad methods.
    • ๐Ÿ›  Fix handling of multipart form data payloads whose size exceeded ~80k bytes.
  • v2.4.4 Changes

    January 20, 2018
    • ๐Ÿ›  Fix parsing of unquoted HTML attributes containing URLs.
    • ๐Ÿ›  Fixed HTTP form body url encoding.
  • v2.4.3 Changes

    December 03, 2017
    • โž• Added GetColumnIndex and TryGetColumnIndex to CsvFile.
    • ๐Ÿ›  Fixed outdated examples in the documentation that no longer worked.
    • ๐Ÿ›  Fixed parsing of script elements with JavaScript string literals, regular expression literals, or comments, that looked like HTML tags.
    • ๐Ÿ›  Fixed parsing of cookie values containing the '=' character.
  • v2.4.2 Changes

    October 09, 2017
    • Prioritize dates over decimals in type inference.