Commit 1c2c9eb
eng: enable PackageValidationBaselineVersion=0.4.0 with suppression for known breaking changes
Activates binary compatibility checking against the last published release
(v0.4.0) by uncommenting PackageValidationBaselineVersion in the project file.
The build revealed 3 existing API breaks between 0.4.0 and 0.6.0-dev — all in
compiler-internal F# witness infrastructure that is technically public but not
intended for direct user consumption:
- TaskSeqBuilder.Bind<...> (internal CE overload)
- TaskSeqBuilder.Bind$W<...> (F# witness-passing variant, compiler-generated)
- TaskExtensions.TaskBuilder.For<...> (for-in-IAsyncEnumerable overload)
These suppressions are recorded in CompatibilitySuppressions.xml. All future
inadvertent API breaks will now be caught automatically during dotnet build.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent 41f84e8 commit 1c2c9eb
File tree
3 files changed
+27
-1
lines changed- src/FSharp.Control.TaskSeq
3 files changed
+27
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
6 | 7 | | |
7 | 8 | | |
8 | 9 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
0 commit comments