From e75c584a43be9084581c90bf7379a922ebece187 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 19:17:59 +0000 Subject: [PATCH] Bump WoofWare.PrattParser and other deps (#241) * Bump FSharp.Core and WoofWare.Myriad.Plugins Bumps [FSharp.Core](https://github.com/dotnet/fsharp) and [WoofWare.Myriad.Plugins](https://github.com/Smaug123/WoofWare.Myriad). These dependencies needed to be updated together. Updates `FSharp.Core` from 6.0.1 to 6.0.1 - [Release notes](https://github.com/dotnet/fsharp/releases) - [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md) - [Commits](https://github.com/dotnet/fsharp/commits) Updates `WoofWare.Myriad.Plugins` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/Smaug123/WoofWare.Myriad/releases) - [Changelog](https://github.com/Smaug123/WoofWare.Myriad/blob/main/CHANGELOG.md) - [Commits](https://github.com/Smaug123/WoofWare.Myriad/compare/WoofWare.Myriad.Plugins.4.0.12...WoofWare.Myriad.Plugins.4.0.13) --- updated-dependencies: - dependency-name: FSharp.Core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: WoofWare.Myriad.Plugins dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump FSharp.Core and WoofWare.PrattParser Bumps [FSharp.Core](https://github.com/Microsoft/visualfsharp) and [WoofWare.PrattParser](https://github.com/Smaug123/fsharp-prattparser). These dependencies needed to be updated together. Updates `FSharp.Core` from 6.0.1 to 4.3.4 - [Release notes](https://github.com/Microsoft/visualfsharp/releases) - [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md) - [Commits](https://github.com/Microsoft/visualfsharp/commits) Updates `WoofWare.PrattParser` from 0.2.3 to 0.2.4 - [Release notes](https://github.com/Smaug123/fsharp-prattparser/releases) - [Commits](https://github.com/Smaug123/fsharp-prattparser/compare/WoofWare.PrattParser.0.2.3...WoofWare.PrattParser.0.2.4) --- updated-dependencies: - dependency-name: FSharp.Core dependency-type: direct:production update-type: version-update:semver-major - dependency-name: WoofWare.PrattParser dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump ApiSurface and FSharp.Core Bumps [ApiSurface](https://github.com/G-Research/ApiSurface) and [FSharp.Core](https://github.com/Microsoft/visualfsharp). These dependencies needed to be updated together. Updates `ApiSurface` from 4.1.17 to 4.1.20 - [Release notes](https://github.com/G-Research/ApiSurface/releases) - [Commits](https://github.com/G-Research/ApiSurface/compare/ApiSurface.4.1.17...ApiSurface.4.1.20) Updates `FSharp.Core` from 6.0.1 to 4.3.4 - [Release notes](https://github.com/Microsoft/visualfsharp/releases) - [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md) - [Commits](https://github.com/Microsoft/visualfsharp/commits) --- updated-dependencies: - dependency-name: ApiSurface dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: FSharp.Core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Bump WoofWare.DotnetRuntimeLocator from 0.1.11 to 0.1.12 Bumps [WoofWare.DotnetRuntimeLocator](https://github.com/Smaug123/WoofWare.DotnetRuntimeLocator) from 0.1.11 to 0.1.12. - [Release notes](https://github.com/Smaug123/WoofWare.DotnetRuntimeLocator/releases) - [Commits](https://github.com/Smaug123/WoofWare.DotnetRuntimeLocator/compare/WoofWare.DotnetRuntimeLocator.0.1.11...WoofWare.DotnetRuntimeLocator.0.1.12) --- updated-dependencies: - dependency-name: WoofWare.DotnetRuntimeLocator dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Rem unused dep * Restore dep --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com> --- WoofWare.NUnitTestRunner.Lib/RuntimeConfig.fs | 7 ++- .../WoofWare.NUnitTestRunner.Lib.fsproj | 12 +++-- .../WoofWare.NUnitTestRunner.Test.fsproj | 2 +- nix/deps.json | 44 +++++++++---------- 4 files changed, 34 insertions(+), 31 deletions(-) diff --git a/WoofWare.NUnitTestRunner.Lib/RuntimeConfig.fs b/WoofWare.NUnitTestRunner.Lib/RuntimeConfig.fs index bb82181..830b406 100644 --- a/WoofWare.NUnitTestRunner.Lib/RuntimeConfig.fs +++ b/WoofWare.NUnitTestRunner.Lib/RuntimeConfig.fs @@ -1,16 +1,15 @@ namespace WoofWare.NUnitTestRunner open System -open WoofWare.Myriad.Plugins -[] +// Myriad runs the JsonParse generator on this type internal FrameworkDescription = { Name : string Version : string } -[] +// Myriad runs the JsonParse generator on this type internal RuntimeOptions = { Tfm : string @@ -21,7 +20,7 @@ type internal RuntimeOptions = RollForward : string option } -[] +// Myriad runs the JsonParse generator on this type internal RuntimeConfig = { RuntimeOptions : RuntimeOptions diff --git a/WoofWare.NUnitTestRunner.Lib/WoofWare.NUnitTestRunner.Lib.fsproj b/WoofWare.NUnitTestRunner.Lib/WoofWare.NUnitTestRunner.Lib.fsproj index a143c8a..214b702 100644 --- a/WoofWare.NUnitTestRunner.Lib/WoofWare.NUnitTestRunner.Lib.fsproj +++ b/WoofWare.NUnitTestRunner.Lib/WoofWare.NUnitTestRunner.Lib.fsproj @@ -14,7 +14,7 @@ WoofWare.NUnitTestRunner.Lib true FS3559 - 4.0.12 + 4.0.13 @@ -22,6 +22,11 @@ RuntimeConfig.fs + + JsonParse + JsonParse + JsonParse + @@ -48,10 +53,9 @@ - + - - + diff --git a/WoofWare.NUnitTestRunner/WoofWare.NUnitTestRunner.Test/WoofWare.NUnitTestRunner.Test.fsproj b/WoofWare.NUnitTestRunner/WoofWare.NUnitTestRunner.Test/WoofWare.NUnitTestRunner.Test.fsproj index b2bff2c..f1c117b 100644 --- a/WoofWare.NUnitTestRunner/WoofWare.NUnitTestRunner.Test/WoofWare.NUnitTestRunner.Test.fsproj +++ b/WoofWare.NUnitTestRunner/WoofWare.NUnitTestRunner.Test/WoofWare.NUnitTestRunner.Test.fsproj @@ -16,7 +16,7 @@ - + diff --git a/nix/deps.json b/nix/deps.json index 5f00a4e..6f344df 100644 --- a/nix/deps.json +++ b/nix/deps.json @@ -1,8 +1,8 @@ [ { "pname": "ApiSurface", - "version": "4.1.17", - "hash": "sha256-ZYIW++7vXYV/7TTNUkV36QDN6yJbHymsKcxTUscTnvA=" + "version": "4.1.20", + "hash": "sha256-koWgO9FC9ax+Ij56ug8kxeyknl0yhLqnNLOUdxtqqo4=" }, { "pname": "fantomas", @@ -211,33 +211,33 @@ }, { "pname": "NuGet.Common", - "version": "6.13.1", - "hash": "sha256-uDSZzCzMETKJE2pYAh9n110YrLPVs83+cxcyNCv9V/o=" + "version": "6.13.2", + "hash": "sha256-ASLa/Jigg5Eop0ZrXPl98RW2rxnJRC7pbbxhuV74hFw=" }, { "pname": "NuGet.Configuration", - "version": "6.13.1", - "hash": "sha256-fjit3Qhqu+egLgxvJRD6zQ6U2H+OxsLoy7HYcbXJgBY=" + "version": "6.13.2", + "hash": "sha256-z8VW1YdRDanyyRTDYRvRkSv/XPR3c/hMM1y8cNNjx0Y=" }, { "pname": "NuGet.Frameworks", - "version": "6.13.1", - "hash": "sha256-upL6cboghOYed6acdlVljMa9nCSExYoBgQlD5QcJ+ek=" + "version": "6.13.2", + "hash": "sha256-caDyc+WgYOo43AUTjtbP0MyvYDb6JweEKDdIul61Cac=" }, { "pname": "NuGet.Packaging", - "version": "6.13.1", - "hash": "sha256-khq+grMovEsO95wAhCHmauL60LB83NkWnDY5zcImXT4=" + "version": "6.13.2", + "hash": "sha256-lhO+SFwIYZ4aPHxIGm5ubkkE2a5Ve2xgtroRbNh7hpw=" }, { "pname": "NuGet.Protocol", - "version": "6.13.1", - "hash": "sha256-0zqowx5iNMMzTSF0HO2Zzc1qqyCB/nEhNHFH8Z0jxzc=" + "version": "6.13.2", + "hash": "sha256-5lnAHHZjy7A4vgv65AeBAs64mSNpuoUjxW3HnrMpuzY=" }, { "pname": "NuGet.Versioning", - "version": "6.13.1", - "hash": "sha256-NymrrcVZUoc78elPHYIoBFG2NpdIEZYEeqk6FTdvZug=" + "version": "6.13.2", + "hash": "sha256-gmpyBpKnt+GHqgx/2uFKp+J2csbxEAy1E7WdVT117sw=" }, { "pname": "NUnit", @@ -356,23 +356,23 @@ }, { "pname": "WoofWare.DotnetRuntimeLocator", - "version": "0.1.11", - "hash": "sha256-btWYnXxZzAnEcAE3Ufvz+Z3cJqtW7EGXs5OZMEHIWr8=" + "version": "0.1.12", + "hash": "sha256-6pNZs0/R2LnLKSODq9DyHhGo2C+SDyz9k7D/13/78so=" }, { "pname": "WoofWare.Myriad.Plugins", - "version": "4.0.12", - "hash": "sha256-6o8oE5loEpKFVMRXf/rmY0YDW/iRF2Zic1lkfsOXcSo=" + "version": "4.0.13", + "hash": "sha256-ak0YjK+b8ruLLVgwkR2h2O8wmJkdtNZGQTM3j3BxVgk=" }, { "pname": "WoofWare.Myriad.Plugins.Attributes", - "version": "3.6.7", - "hash": "sha256-YvrXS2ZMoMZkWgGxxcumyoqQkg4cSjGQzCrMbBCCtXM=" + "version": "3.6.8", + "hash": "sha256-k8Oum0xbv90yHmYr770w7uskMcAwZfyFI5uHaes5Yxg=" }, { "pname": "WoofWare.PrattParser", - "version": "0.2.3", - "hash": "sha256-PsfU33BFsaA8LwlZMkSwmoA4hLb7Vkm2gYm48MglqxY=" + "version": "0.2.4", + "hash": "sha256-aNTa2C300jUCsQ+iVSoothbCvBWdg7OzCJknwG5HV6g=" }, { "pname": "WoofWare.Whippet.Fantomas",