Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## 8.1.9 - Apr 18 2026

- Fix: `Caching.hashString` now disposes the `SHA1` instance after use; on .NET 5+ uses `SHA1.HashData` (static, pool-backed) to avoid allocation entirely (PR #1745)
- Fix: WorldBank type provider now waits 2 seconds between HTTP retries, making it resilient to transient 502 errors from the WorldBank API (PR #1749)
- Eng: update `FSharp.TypeProviders.SDK` to latest master (`75ac6119`), pulling in a bug fix for the SDK logger and O(1) field/event/property lookups (PR #1741)

## 8.1.8 - Apr 13 2026

- Code: `NameUtils.niceCamelName` now short-circuits with zero allocations when the result already starts with a lower-case letter; the general case now uses `StringBuilder.Append(string, int, int)` to avoid creating an intermediate `Substring`. `capitalizeFirstLetter` similarly short-circuits when the first letter is already upper-case. Also fixes `Pluralizer` to avoid `Substring(0,1)` in its capitalize path.
Expand Down
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Csv.Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.Csv.Core")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.Csv.Core"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.DesignTime.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.DesignTime")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.DesignTime"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Html.Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.Html.Core")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.Html.Core"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Http.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.Http")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.Http"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Json.Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.Json.Core")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.Json.Core"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Runtime.Utilities.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.Runtime.Utilities")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.Runtime.Utilities"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.WorldBank.Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.WorldBank.Core")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.WorldBank.Core"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Xml.Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data.Xml.Core")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data.Xml.Core"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Data")>]
[<assembly: AssemblyProductAttribute("FSharp.Data")>]
[<assembly: AssemblyDescriptionAttribute("Library of F# type providers and data access tools")>]
[<assembly: AssemblyVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.8.0")>]
[<assembly: AssemblyVersionAttribute("8.1.9.0")>]
[<assembly: AssemblyFileVersionAttribute("8.1.9.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Data"
let [<Literal>] AssemblyProduct = "FSharp.Data"
let [<Literal>] AssemblyDescription = "Library of F# type providers and data access tools"
let [<Literal>] AssemblyVersion = "8.1.8.0"
let [<Literal>] AssemblyFileVersion = "8.1.8.0"
let [<Literal>] AssemblyVersion = "8.1.9.0"
let [<Literal>] AssemblyFileVersion = "8.1.9.0"
Loading