From d94d0224256e90ea72dd30f0f6b81ccc69370e54 Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Sun, 14 Aug 2022 02:14:44 +0200 Subject: [PATCH 1/5] Fix #13686 by downgrading the FsCheck version --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 213532c3f88..5662763b742 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -201,7 +201,7 @@ 1.0.0 1.1.33 - 3.0.0-alpha4 + 2.16.5 4.3.0.0 1.0.30 8.0.0 From 8d0df9afbd20e83e8cbf715b3767e9c5b2a4c5ec Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Sun, 14 Aug 2022 02:29:07 +0200 Subject: [PATCH 2/5] Fix dotnet#13686 by upgrading to latest dotnet-public available alpha version, 3.0.0-apha5 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 5662763b742..c095c454577 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -201,7 +201,7 @@ 1.0.0 1.1.33 - 2.16.5 + 3.0.0-alpha5 4.3.0.0 1.0.30 8.0.0 From fd60e897dcd38c5ebf2028e102412624393ff793 Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Sun, 14 Aug 2022 02:52:04 +0200 Subject: [PATCH 3/5] QuickThrowOnFailure is not a record anymore, but fluid --- .../CollectionModulesConsistency.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs index 1560c16b564..39e8ee6ee43 100644 --- a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs +++ b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs @@ -7,7 +7,7 @@ open Xunit open FsCheck open Utils -let smallerSizeCheck testable = Check.One({ Config.QuickThrowOnFailure with EndSize = 25 }, testable) +let smallerSizeCheck testable = Check.One(Config.QuickThrowOnFailure.WithEndSize 25, testable) /// helper function that creates labeled FsCheck properties for equality comparisons let consistency name sqs ls arr = From b4d6c5d4c65f157b3aa3887341afef51f6bbf6a6 Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Tue, 16 Aug 2022 18:54:13 +0200 Subject: [PATCH 4/5] Revert "QuickThrowOnFailure is not a record anymore, but fluid" This reverts commit fd60e897dcd38c5ebf2028e102412624393ff793. --- .../CollectionModulesConsistency.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs index 39e8ee6ee43..1560c16b564 100644 --- a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs +++ b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs @@ -7,7 +7,7 @@ open Xunit open FsCheck open Utils -let smallerSizeCheck testable = Check.One(Config.QuickThrowOnFailure.WithEndSize 25, testable) +let smallerSizeCheck testable = Check.One({ Config.QuickThrowOnFailure with EndSize = 25 }, testable) /// helper function that creates labeled FsCheck properties for equality comparisons let consistency name sqs ls arr = From 49e995108ffb138ca04799f984fffabb3b92e6cb Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Tue, 16 Aug 2022 18:54:20 +0200 Subject: [PATCH 5/5] Revert " Fix dotnet#13686 by upgrading to latest dotnet-public available alpha version, 3.0.0-apha5" This reverts commit 8d0df9afbd20e83e8cbf715b3767e9c5b2a4c5ec. --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index c095c454577..5662763b742 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -201,7 +201,7 @@ 1.0.0 1.1.33 - 3.0.0-alpha5 + 2.16.5 4.3.0.0 1.0.30 8.0.0