From 07d92e78732cbbfc3581268a337128e6e3ac64c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:44:53 +0000 Subject: [PATCH 1/3] Bump MSTest.TestFramework from 3.6.4 to 3.7.0 Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.6.4 to 3.7.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.6.4...v3.7.0) --- updated-dependencies: - dependency-name: MSTest.TestFramework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../Bicep.Cli.IntegrationTests.csproj | 2 +- .../packages.lock.json | 20 +++++++++++++------ .../Bicep.Cli.UnitTests.csproj | 2 +- src/Bicep.Cli.UnitTests/packages.lock.json | 14 ++++++++++--- .../Bicep.Core.IntegrationTests.csproj | 2 +- .../packages.lock.json | 18 ++++++++++++----- .../Bicep.Core.Samples.csproj | 2 +- src/Bicep.Core.Samples/packages.lock.json | 16 +++++++++++---- .../Bicep.Core.UnitTests.csproj | 2 +- src/Bicep.Core.UnitTests/packages.lock.json | 14 ++++++++++--- .../Bicep.Decompiler.IntegrationTests.csproj | 2 +- .../packages.lock.json | 16 +++++++++++---- .../Bicep.Decompiler.UnitTests.csproj | 2 +- .../packages.lock.json | 16 +++++++++++---- .../Bicep.IO.UnitTests.csproj | 2 +- src/Bicep.IO.UnitTests/packages.lock.json | 14 ++++++++++--- .../Bicep.LangServer.IntegrationTests.csproj | 2 +- .../packages.lock.json | 18 ++++++++++++----- .../Bicep.LangServer.UnitTests.csproj | 2 +- .../packages.lock.json | 20 +++++++++++++------ ...Bicep.Local.Deploy.IntegrationTests.csproj | 2 +- .../packages.lock.json | 16 +++++++++++---- ...RegistryModuleTool.IntegrationTests.csproj | 2 +- .../packages.lock.json | 16 +++++++++++---- .../packages.lock.json | 14 ++++++++++--- .../Bicep.RegistryModuleTool.UnitTests.csproj | 2 +- .../packages.lock.json | 16 +++++++++++---- 27 files changed, 183 insertions(+), 71 deletions(-) diff --git a/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj b/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj index 94c7c43546c..eda1cf8d45c 100644 --- a/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj +++ b/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj @@ -17,7 +17,7 @@ - + diff --git a/src/Bicep.Cli.IntegrationTests/packages.lock.json b/src/Bicep.Cli.IntegrationTests/packages.lock.json index 99c2dade293..61505ee9871 100644 --- a/src/Bicep.Cli.IntegrationTests/packages.lock.json +++ b/src/Bicep.Cli.IntegrationTests/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -820,6 +823,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.11.74", @@ -1646,7 +1654,7 @@ "dependencies": { "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "bicep": "[1.0.0, )" } @@ -1658,7 +1666,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )" } }, @@ -1671,7 +1679,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj b/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj index f5d812dcf46..d7ac3d3ca4d 100644 --- a/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj +++ b/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Bicep.Cli.UnitTests/packages.lock.json b/src/Bicep.Cli.UnitTests/packages.lock.json index eb3e8387d0e..2e6c14a84d4 100644 --- a/src/Bicep.Cli.UnitTests/packages.lock.json +++ b/src/Bicep.Cli.UnitTests/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -784,6 +787,11 @@ "System.Web.Services.Description": "4.10.0" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.11.74", diff --git a/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj b/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj index bf06ba27688..37f81d1989a 100644 --- a/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj +++ b/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj @@ -19,7 +19,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Core.IntegrationTests/packages.lock.json b/src/Bicep.Core.IntegrationTests/packages.lock.json index b1cc3928077..e6e330814cb 100644 --- a/src/Bicep.Core.IntegrationTests/packages.lock.json +++ b/src/Bicep.Core.IntegrationTests/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -785,6 +788,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1556,7 +1564,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )" } }, @@ -1569,7 +1577,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj b/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj index bfd3c48e436..f372bc2d5a4 100644 --- a/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj +++ b/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj @@ -17,7 +17,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Core.Samples/packages.lock.json b/src/Bicep.Core.Samples/packages.lock.json index b7fffeee7cd..0fc8aaf946b 100644 --- a/src/Bicep.Core.Samples/packages.lock.json +++ b/src/Bicep.Core.Samples/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -785,6 +788,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1558,7 +1566,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj b/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj index 5fb5a803cd4..300cdf347ac 100644 --- a/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj +++ b/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj @@ -11,7 +11,7 @@ - + all diff --git a/src/Bicep.Core.UnitTests/packages.lock.json b/src/Bicep.Core.UnitTests/packages.lock.json index 97f69d74d30..cff4d007def 100644 --- a/src/Bicep.Core.UnitTests/packages.lock.json +++ b/src/Bicep.Core.UnitTests/packages.lock.json @@ -85,9 +85,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -812,6 +815,11 @@ "System.Web.Services.Description": "4.10.0" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", diff --git a/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj b/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj index 9145ff68da2..7ef76c513c7 100644 --- a/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj +++ b/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj @@ -13,7 +13,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Decompiler.IntegrationTests/packages.lock.json b/src/Bicep.Decompiler.IntegrationTests/packages.lock.json index b7fffeee7cd..0fc8aaf946b 100644 --- a/src/Bicep.Decompiler.IntegrationTests/packages.lock.json +++ b/src/Bicep.Decompiler.IntegrationTests/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -785,6 +788,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1558,7 +1566,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj b/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj index 69520933528..36097780b07 100644 --- a/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj +++ b/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj @@ -8,7 +8,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Decompiler.UnitTests/packages.lock.json b/src/Bicep.Decompiler.UnitTests/packages.lock.json index b7fffeee7cd..0fc8aaf946b 100644 --- a/src/Bicep.Decompiler.UnitTests/packages.lock.json +++ b/src/Bicep.Decompiler.UnitTests/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -785,6 +788,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1558,7 +1566,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.IO.UnitTests/Bicep.IO.UnitTests.csproj b/src/Bicep.IO.UnitTests/Bicep.IO.UnitTests.csproj index 48a536cff9d..e48a6adc187 100644 --- a/src/Bicep.IO.UnitTests/Bicep.IO.UnitTests.csproj +++ b/src/Bicep.IO.UnitTests/Bicep.IO.UnitTests.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Bicep.IO.UnitTests/packages.lock.json b/src/Bicep.IO.UnitTests/packages.lock.json index 43b9ebd53b0..9dbf35d862f 100644 --- a/src/Bicep.IO.UnitTests/packages.lock.json +++ b/src/Bicep.IO.UnitTests/packages.lock.json @@ -61,9 +61,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -167,6 +170,11 @@ "resolved": "6.0.0", "contentHash": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==" }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Newtonsoft.Json": { "type": "Transitive", "resolved": "13.0.1", diff --git a/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj b/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj index c212e180a66..8e1a94d12c7 100644 --- a/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj +++ b/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj @@ -15,7 +15,7 @@ - + all diff --git a/src/Bicep.LangServer.IntegrationTests/packages.lock.json b/src/Bicep.LangServer.IntegrationTests/packages.lock.json index 83ced5a139e..0c04ef14ebe 100644 --- a/src/Bicep.LangServer.IntegrationTests/packages.lock.json +++ b/src/Bicep.LangServer.IntegrationTests/packages.lock.json @@ -80,9 +80,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -796,6 +799,11 @@ "System.Web.Services.Description": "4.10.0" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1567,7 +1575,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )" } }, @@ -1580,7 +1588,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj b/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj index e3e9c2f145f..dcb54716bd2 100644 --- a/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj +++ b/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj @@ -15,7 +15,7 @@ - + all diff --git a/src/Bicep.LangServer.UnitTests/packages.lock.json b/src/Bicep.LangServer.UnitTests/packages.lock.json index ca88eb17b37..31e824122a9 100644 --- a/src/Bicep.LangServer.UnitTests/packages.lock.json +++ b/src/Bicep.LangServer.UnitTests/packages.lock.json @@ -70,9 +70,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -810,6 +813,11 @@ "System.Web.Services.Description": "4.10.0" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1576,7 +1584,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )" } }, @@ -1589,7 +1597,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", @@ -1625,7 +1633,7 @@ "Bicep.LangServer": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Microsoft.VisualStudio.Threading": "[17.12.19, )", "Moq": "[4.20.72, )", diff --git a/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj b/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj index b08ef1de17c..03d1c236ff2 100644 --- a/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj +++ b/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json b/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json index e58776cba1b..a03e2b99314 100644 --- a/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json +++ b/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json @@ -79,9 +79,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -795,6 +798,11 @@ "System.Web.Services.Description": "4.10.0" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1568,7 +1576,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj b/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj index 975d79b211a..d399440d691 100644 --- a/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj +++ b/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj @@ -3,7 +3,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json b/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json index 1d59fdde250..ed386453c66 100644 --- a/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json +++ b/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json @@ -52,9 +52,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -937,6 +940,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1794,7 +1802,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json b/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json index bc90ff3a7be..ed0912339da 100644 --- a/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json +++ b/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json @@ -917,6 +917,11 @@ "System.Web.Services.Description": "4.10.0" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "MSTest.TestAdapter": { "type": "Transitive", "resolved": "3.6.4", @@ -928,8 +933,11 @@ }, "MSTest.TestFramework": { "type": "Transitive", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.Streams": { "type": "Transitive", @@ -1788,7 +1796,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj b/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj index e740b7b7c8e..60795470cfa 100644 --- a/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj +++ b/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj @@ -7,7 +7,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json b/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json index 1d59fdde250..ed386453c66 100644 --- a/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json +++ b/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json @@ -52,9 +52,12 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.6.4, )", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "requested": "[3.7.0, )", + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -937,6 +940,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "Nerdbank.Streams": { "type": "Transitive", "resolved": "2.10.69", @@ -1794,7 +1802,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", From d0586bc90f0f8c465d304f5c9f32067a91386f6f Mon Sep 17 00:00:00 2001 From: StephenWeatherford Date: Thu, 2 Jan 2025 20:20:18 +0000 Subject: [PATCH 2/3] Update lockfiles --- src/Bicep.Tools.Benchmark/packages.lock.json | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/Bicep.Tools.Benchmark/packages.lock.json b/src/Bicep.Tools.Benchmark/packages.lock.json index a7f27af9a35..73b9a9c8727 100644 --- a/src/Bicep.Tools.Benchmark/packages.lock.json +++ b/src/Bicep.Tools.Benchmark/packages.lock.json @@ -851,6 +851,11 @@ "Castle.Core": "5.1.1" } }, + "MSTest.Analyzers": { + "type": "Transitive", + "resolved": "3.7.0", + "contentHash": "6cW8FWzz6gr5MArL8GDNrw5c+afJtOMRyntFEzAdbgPHgH8DuLGMAyz8g38k/LMquewk3tOmbXoDIL/IACLKjg==" + }, "MSTest.TestAdapter": { "type": "Transitive", "resolved": "3.6.4", @@ -862,8 +867,11 @@ }, "MSTest.TestFramework": { "type": "Transitive", - "resolved": "3.6.4", - "contentHash": "3nV+2CJluKmiJpCSqQfXu5idCq35+vqFywjScyauTIz0Zk7KJw7Qpzv8gtwow0To7pxIlIvwkq9rbMB+V6eOow==" + "resolved": "3.7.0", + "contentHash": "CRHONroYbAaxhVILTNS84gIaI3uRRVmj8Qd3+Mpia1AVwSz2JiQy0LlTqtS8p+TYWgN+8zHG6j17OaTz/P/eHw==", + "dependencies": { + "MSTest.Analyzers": "3.7.0" + } }, "Nerdbank.Streams": { "type": "Transitive", @@ -1652,7 +1660,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )" } }, @@ -1665,7 +1673,7 @@ "FluentAssertions": "[7.0.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Moq": "[4.20.72, )", "Newtonsoft.Json.Schema": "[4.0.1, )", @@ -1701,7 +1709,7 @@ "Bicep.LangServer": "[1.0.0, )", "FluentAssertions": "[7.0.0, )", "MSTest.TestAdapter": "[3.6.4, )", - "MSTest.TestFramework": "[3.6.4, )", + "MSTest.TestFramework": "[3.7.0, )", "Microsoft.NET.Test.Sdk": "[17.12.0, )", "Microsoft.VisualStudio.Threading": "[17.12.19, )", "Moq": "[4.20.72, )", From 412b25c14171fc080d88c70b06285c4eeab9b139 Mon Sep 17 00:00:00 2001 From: "Stephen Weatherford (MSFT)" Date: Wed, 8 Jan 2025 10:12:09 -0800 Subject: [PATCH 3/3] fix --- .../Handlers/BicepDecompileForPasteCommandHandlerTests.cs | 1 + src/Bicep.LangServer/Completions/BicepCompletionProvider.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Bicep.LangServer.UnitTests/Handlers/BicepDecompileForPasteCommandHandlerTests.cs b/src/Bicep.LangServer.UnitTests/Handlers/BicepDecompileForPasteCommandHandlerTests.cs index 60415f7f227..0243c062e16 100644 --- a/src/Bicep.LangServer.UnitTests/Handlers/BicepDecompileForPasteCommandHandlerTests.cs +++ b/src/Bicep.LangServer.UnitTests/Handlers/BicepDecompileForPasteCommandHandlerTests.cs @@ -1464,6 +1464,7 @@ await TestDecompileForPaste( [DataRow( "2012-03-21T05:40Z", DisplayName = "datetime")] + [TestMethod] public async Task JsonValue_Invalid_CantConvert(string json) { await TestDecompileForPaste( diff --git a/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs b/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs index 3fbce71d0a8..600f2aa6c6f 100644 --- a/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs +++ b/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs @@ -541,8 +541,8 @@ private record FileCompletionInfo( if (searchDirectory.Exists()) { - files = searchDirectory.EnumerateFiles().Select(x => x.Uri.ToUri()).ToList(); - dirs = searchDirectory.EnumerateDirectories().Select(x => x.Uri.ToUri()).ToList(); + files = [.. searchDirectory.EnumerateFiles().Select(x => x.Uri.ToUri())]; + dirs = [.. searchDirectory.EnumerateDirectories().Select(x => x.Uri.ToUri())]; // include the parent folder as a completion if we're not at the file system root if (searchDirectory.GetParent() is { } parentSearchDirectory)