From be7a3720de94de29e79dbfca903d39c86823c65c Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Wed, 14 Apr 2021 10:59:25 -0700 Subject: [PATCH] [release/2.1] Bump some versions (#24655) * Move to latest KoreBuild / .NET SDK * Align versions with aspnetcore updates - most versions should be pinned * Avoid a now-obsolete Xunit constructor --- build/dependencies.props | 33 +++++++++---------- korebuild-lock.txt | 4 +-- .../TestUtilities/Xunit/SkippedTestCase.cs | 2 +- 3 files changed, 19 insertions(+), 20 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index d6a19aa136f..de68b6ee884 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -5,14 +5,8 @@ - 2.1.7-build-20190110.2 - 4.5.0 - 2.1.7 - 2.0.3 - 1.5.0 - 4.5.0 - 4.5.1 - 4.5.1 + 2.1.7-build-20210413.1 + 2.1.27 @@ -21,7 +15,7 @@ 2.1.1 - 2.1.1 + 2.1.23 2.1.1 2.1.1 2.1.1 @@ -34,11 +28,12 @@ 4.2.1 0.0.0 1.7.1 - 2.8.0 - 2.8.0 - 1.1.8 + 2.8.2 + 2.8.2 + 4.5.0 + 1.1.13 2.0.9 - 15.6.1 + 15.9.2 11.0.2 12.2.1100 2.2.0 @@ -46,11 +41,15 @@ 1.1.12 1.1.12 1.0.0 + 1.5.0 + 4.5.0 + 4.5.3 + 4.5.1 3.1.1 0.10.0 - 2.3.1 - 2.3.1 - 2.3.1 - 2.4.0 + 2.4.1 + 2.4.1 + 2.4.1 + 2.4.1 diff --git a/korebuild-lock.txt b/korebuild-lock.txt index b10f4b294dd..fa8df591ab4 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.1.7-build-20210209.2 -commithash:e2b019a5c8d338b060644e2ea5437beea1f5a888 +version:2.1.7-build-20210413.1 +commithash:41a55f8d844c4be8c4afa5f70f72b80067f0d113 diff --git a/src/EFCore.Specification.Tests/TestUtilities/Xunit/SkippedTestCase.cs b/src/EFCore.Specification.Tests/TestUtilities/Xunit/SkippedTestCase.cs index 6183120307b..623021e1fd4 100644 --- a/src/EFCore.Specification.Tests/TestUtilities/Xunit/SkippedTestCase.cs +++ b/src/EFCore.Specification.Tests/TestUtilities/Xunit/SkippedTestCase.cs @@ -12,7 +12,7 @@ internal class SkippedTestCase : XunitTestCase private string _skipReason; public SkippedTestCase(string skipReason, IMessageSink diagnosticMessageSink, TestMethodDisplay defaultMethodDisplay, ITestMethod testMethod, object[] testMethodArguments = null) - : base(diagnosticMessageSink, defaultMethodDisplay, testMethod, testMethodArguments) + : base(diagnosticMessageSink, defaultMethodDisplay, TestMethodDisplayOptions.None, testMethod, testMethodArguments) { _skipReason = skipReason; }