From 598850369505a532330bbeac51f12ea402ce28d2 Mon Sep 17 00:00:00 2001 From: Eddy Nakamura Date: Tue, 16 Aug 2022 09:05:21 -0700 Subject: [PATCH] Lowering System.Collections.Immutable to 1.5.0 (#2533) * Lowering System.Collections.Immutable to 1.5.0 * Updating build.props and ReleaseHistory * releasing a beta1 version --- src/ReleaseHistory.md | 5 ++++- src/Sarif.Converters/Sarif.Converters.csproj | 2 +- src/Sarif/Sarif.csproj | 2 +- .../Test.FunctionalTests.Sarif.csproj | 1 - .../Test.UnitTests.Sarif.Converters.csproj | 1 - .../Test.UnitTests.Sarif.Driver.csproj | 1 - .../Test.UnitTests.Sarif.Multitool.Library.csproj | 1 - .../Test.UnitTests.Sarif.WorkItems.csproj | 1 - src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj | 1 - src/Test.UnitTests.WorkItems/Test.UnitTests.WorkItems.csproj | 1 - src/Test.Utilities.Sarif/Test.Utilities.Sarif.csproj | 2 +- src/build.props | 4 ++-- 12 files changed, 9 insertions(+), 13 deletions(-) diff --git a/src/ReleaseHistory.md b/src/ReleaseHistory.md index ba433fd0b..c5a344051 100644 --- a/src/ReleaseHistory.md +++ b/src/ReleaseHistory.md @@ -1,9 +1,12 @@ # SARIF Package Release History (SDK, Driver, Converters, and Multitool) +## **v3.1.0-beta1** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/3.1.0-beta1) | [Driver](https://www.nuget.org/packages/Sarif.Driver/3.1.0-beta1) | [Converters](https://www.nuget.org/packages/Sarif.Converters/3.1.0-beta1) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/3.1.0-beta1) | [Multitool Library](https://www.nuget.org/packages/Sarif.Multitool.Library/3.1.0-beta1) + +* DEPENDENCY BREAKING: SARIF.SDK now requires `System.Collections.Immutable` 1.5.0. [#2504](https://github.com/microsoft/sarif-sdk/pull/2533) + ## **v3.0.0** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/3.0.0) | [Driver](https://www.nuget.org/packages/Sarif.Driver/3.0.0) | [Converters](https://www.nuget.org/packages/Sarif.Converters/3.0.0) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/3.0.0) | [Multitool Library](https://www.nuget.org/packages/Sarif.Multitool.Library/3.0.0) * BUGFIX: Loosen Newtonsoft.JSON minimum version requirement to 6.0.8 (for .NET framework) or 9.0.1 (for all other compilations) for Sarif.Sdk. Sarif.Converts requires 8.0.1, minimally, for .NET framework compilations. * BUGFIX: Broaden set of supported .NET frameworks for compatibility reasons. Sarif.Sdk, Sarif.Driver and Sarif.WorkItems requires net461. -* BUGFIX: Set default stack limit in Newtonsoft.JSON utilization (if `JsonConvert.Defaults` is not already configured) to address GitHub advisory [GHSA-5crp-9r3c-p9vr](https://github.com/advisories/GHSA-5crp-9r3c-p9vr). ## **v2.4.16** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/2.4.16) | [Driver](https://www.nuget.org/packages/Sarif.Driver/2.4.16) | [Converters](https://www.nuget.org/packages/Sarif.Converters/2.4.16) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/2.4.16) | [Multitool Library](https://www.nuget.org/packages/Sarif.Multitool.Library/2.4.16) diff --git a/src/Sarif.Converters/Sarif.Converters.csproj b/src/Sarif.Converters/Sarif.Converters.csproj index 49ed96fd2..0dc27e0d7 100644 --- a/src/Sarif.Converters/Sarif.Converters.csproj +++ b/src/Sarif.Converters/Sarif.Converters.csproj @@ -54,7 +54,7 @@ - + diff --git a/src/Sarif/Sarif.csproj b/src/Sarif/Sarif.csproj index 65114e21f..807965755 100644 --- a/src/Sarif/Sarif.csproj +++ b/src/Sarif/Sarif.csproj @@ -45,7 +45,7 @@ - + diff --git a/src/Test.FunctionalTests.Sarif/Test.FunctionalTests.Sarif.csproj b/src/Test.FunctionalTests.Sarif/Test.FunctionalTests.Sarif.csproj index d8aa5674f..53f24e548 100644 --- a/src/Test.FunctionalTests.Sarif/Test.FunctionalTests.Sarif.csproj +++ b/src/Test.FunctionalTests.Sarif/Test.FunctionalTests.Sarif.csproj @@ -49,7 +49,6 @@ - diff --git a/src/Test.UnitTests.Sarif.Converters/Test.UnitTests.Sarif.Converters.csproj b/src/Test.UnitTests.Sarif.Converters/Test.UnitTests.Sarif.Converters.csproj index 4a994089d..78af97211 100644 --- a/src/Test.UnitTests.Sarif.Converters/Test.UnitTests.Sarif.Converters.csproj +++ b/src/Test.UnitTests.Sarif.Converters/Test.UnitTests.Sarif.Converters.csproj @@ -75,7 +75,6 @@ - diff --git a/src/Test.UnitTests.Sarif.Driver/Test.UnitTests.Sarif.Driver.csproj b/src/Test.UnitTests.Sarif.Driver/Test.UnitTests.Sarif.Driver.csproj index 5bb784040..f37534364 100644 --- a/src/Test.UnitTests.Sarif.Driver/Test.UnitTests.Sarif.Driver.csproj +++ b/src/Test.UnitTests.Sarif.Driver/Test.UnitTests.Sarif.Driver.csproj @@ -36,7 +36,6 @@ - diff --git a/src/Test.UnitTests.Sarif.Multitool.Library/Test.UnitTests.Sarif.Multitool.Library.csproj b/src/Test.UnitTests.Sarif.Multitool.Library/Test.UnitTests.Sarif.Multitool.Library.csproj index 593099d04..0bbbfcf21 100644 --- a/src/Test.UnitTests.Sarif.Multitool.Library/Test.UnitTests.Sarif.Multitool.Library.csproj +++ b/src/Test.UnitTests.Sarif.Multitool.Library/Test.UnitTests.Sarif.Multitool.Library.csproj @@ -68,7 +68,6 @@ - diff --git a/src/Test.UnitTests.Sarif.WorkItems/Test.UnitTests.Sarif.WorkItems.csproj b/src/Test.UnitTests.Sarif.WorkItems/Test.UnitTests.Sarif.WorkItems.csproj index f26999eb3..66853878b 100644 --- a/src/Test.UnitTests.Sarif.WorkItems/Test.UnitTests.Sarif.WorkItems.csproj +++ b/src/Test.UnitTests.Sarif.WorkItems/Test.UnitTests.Sarif.WorkItems.csproj @@ -27,7 +27,6 @@ - diff --git a/src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj b/src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj index 737ecf489..5435c0cd0 100644 --- a/src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj +++ b/src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj @@ -161,7 +161,6 @@ - diff --git a/src/Test.UnitTests.WorkItems/Test.UnitTests.WorkItems.csproj b/src/Test.UnitTests.WorkItems/Test.UnitTests.WorkItems.csproj index 37c732159..cd24a5566 100644 --- a/src/Test.UnitTests.WorkItems/Test.UnitTests.WorkItems.csproj +++ b/src/Test.UnitTests.WorkItems/Test.UnitTests.WorkItems.csproj @@ -19,7 +19,6 @@ - diff --git a/src/Test.Utilities.Sarif/Test.Utilities.Sarif.csproj b/src/Test.Utilities.Sarif/Test.Utilities.Sarif.csproj index aa4a71f75..ad047c2f7 100644 --- a/src/Test.Utilities.Sarif/Test.Utilities.Sarif.csproj +++ b/src/Test.Utilities.Sarif/Test.Utilities.Sarif.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/build.props b/src/build.props index cbfe7f5f3..226c9acda 100644 --- a/src/build.props +++ b/src/build.props @@ -10,8 +10,8 @@ Microsoft Microsoft SARIF SDK © Microsoft Corporation. All rights reserved. - 3.0.0 - 3.0.0-beta2 + 3.1.0-beta1 + 3.0.0 2.1.0-rtm.5