Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bb99e3e

Browse filesBrowse files
Upgrade Newtonsoft.Json from 13.0.1 to 13.0.3 (#4681)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
1 parent e527e41 commit bb99e3e
Copy full SHA for bb99e3e

File tree

13 files changed

+15
-15
lines changed
Filter options

13 files changed

+15
-15
lines changed

‎eng/Version.Details.xml

Copy file name to clipboardExpand all lines: eng/Version.Details.xml
+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
<Sha>5ce78f66d89ea529e459abddb129ab36cb5bd936</Sha>
1515
<SourceBuild RepoName="diagnostics" ManagedOnly="true" />
1616
</Dependency>
17-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-externals" Version="8.0.0-alpha.1.23424.1">
17+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-externals" Version="8.0.0-alpha.1.23429.1">
1818
<Uri>https://github.com/dotnet/source-build-externals</Uri>
19-
<Sha>e3cc6c792114ebdfe6627742d2820dbe1ae5bc47</Sha>
19+
<Sha>0603839a51f5e18b89c60a3690aff5e81fa666ca</Sha>
2020
<SourceBuild RepoName="source-build-externals" ManagedOnly="true" />
2121
</Dependency>
2222
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="8.0.0-alpha.1.23451.1">

‎eng/Versions.props

Copy file name to clipboardExpand all lines: eng/Versions.props
+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<MicrosoftVSUtilitiesInternalVersion>16.3.42</MicrosoftVSUtilitiesInternalVersion>
4040
<MicrosoftVSSDKBuildToolsVersion>17.4.2116</MicrosoftVSSDKBuildToolsVersion>
4141
<NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
42+
<NewtonsoftJsonVersion Condition="'$(DotNetBuildFromSource)' == 'true'">13.0.3</NewtonsoftJsonVersion>
4243
<RoslynBannedApiAnalyzersVersion>3.3.3</RoslynBannedApiAnalyzersVersion>
4344
<RoslynPublicApiAnalyzersVersion>3.3.4-beta1.21554.2</RoslynPublicApiAnalyzersVersion>
4445
<SystemCollectionsImmutableVersion>1.5.0</SystemCollectionsImmutableVersion>
@@ -94,6 +95,5 @@
9495
(or the respective branch. It also needs to be on nuget.org. -->
9596
<NuGetFrameworksVersion>6.5.0</NuGetFrameworksVersion>
9697
<ILAsmPackageVersion>5.0.0</ILAsmPackageVersion>
97-
<JsonNetVersion>13.0.1</JsonNetVersion>
9898
</PropertyGroup>
9999
</Project>

‎playground/AdapterUtilitiesPlayground/AdapterUtilitiesPlayground.csproj

Copy file name to clipboardExpand all lines: playground/AdapterUtilitiesPlayground/AdapterUtilitiesPlayground.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Newtonsoft.Json" Version="$(JsonNetVersion)" />
16+
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
1717
<PackageReference Include="Microsoft.CodeAnalysis" Version="$(MicrosoftCodeAnalysisVersion)" />
1818
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisVersion)" />
1919
</ItemGroup>

‎src/Microsoft.TestPlatform.CommunicationUtilities/Microsoft.TestPlatform.CommunicationUtilities.csproj

Copy file name to clipboardExpand all lines: src/Microsoft.TestPlatform.CommunicationUtilities/Microsoft.TestPlatform.CommunicationUtilities.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ProjectReference Include="..\Microsoft.TestPlatform.ObjectModel\Microsoft.TestPlatform.ObjectModel.csproj" />
1111
<ProjectReference Include="..\Microsoft.TestPlatform.Common\Microsoft.TestPlatform.Common.csproj" />
1212
<PackageReference Include="Newtonsoft.Json">
13-
<Version>$(JsonNetVersion)</Version>
13+
<Version>$(NewtonsoftJsonVersion)</Version>
1414
</PackageReference>
1515
</ItemGroup>
1616
<ItemGroup Condition=" '$(TargetFramework)' == '$(NetFrameworkMinimum)' ">

‎src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.csproj

Copy file name to clipboardExpand all lines: src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020

2121
<ItemGroup Label="NuGet">
22-
<NuspecProperty Include="JsonNetVersion=$(JsonNetVersion)" />
22+
<NuspecProperty Include="NewtonsoftJsonVersion=$(NewtonsoftJsonVersion)" />
2323
<NuspecProperty Include="SrcPackageFolder=$(SrcPackageFolder)" />
2424
</ItemGroup>
2525

‎src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.nuspec

Copy file name to clipboardExpand all lines: src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.nuspec
+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
<dependencies>
77
<group targetFramework="net462">
8-
<dependency id="Newtonsoft.Json" version="$JsonNetVersion$"/>
8+
<dependency id="Newtonsoft.Json" version="$NewtonsoftJsonVersion$"/>
99
<dependency id="Microsoft.TestPlatform.ObjectModel" version="$Version$"/>
1010
</group>
1111
<group targetFramework="netstandard2.0">
12-
<dependency id="Newtonsoft.Json" version="$JsonNetVersion$"/>
12+
<dependency id="Newtonsoft.Json" version="$NewtonsoftJsonVersion$"/>
1313
<dependency id="Microsoft.TestPlatform.ObjectModel" version="$Version$"/>
1414
</group>
1515
</dependencies>

‎src/Microsoft.TestPlatform.TestHostProvider/Microsoft.TestPlatform.TestHostProvider.csproj

Copy file name to clipboardExpand all lines: src/Microsoft.TestPlatform.TestHostProvider/Microsoft.TestPlatform.TestHostProvider.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</ProjectReference>
2525
</ItemGroup>
2626
<ItemGroup>
27-
<PackageReference Include="Newtonsoft.Json" Version="$(JsonNetVersion)" />
27+
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
2828
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="$(MicrosoftExtensionsDependencyModelPackageVersion)" />
2929
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.1" Condition=" '$(DotNetBuildFromSource)' != 'true' " />
3030
</ItemGroup>

‎src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj

Copy file name to clipboardExpand all lines: src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup Label="NuGet">
26-
<NuspecProperty Include="JsonNetVersion=$(JsonNetVersion)" />
26+
<NuspecProperty Include="NewtonsoftJsonVersion=$(NewtonsoftJsonVersion)" />
2727
<NuspecProperty Include="SrcPackageFolder=$(SrcPackageFolder)" />
2828
</ItemGroup>
2929

‎src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.nuspec

Copy file name to clipboardExpand all lines: src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.nuspec
+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<dependencies>
77
<group targetFramework="net462">
8-
<dependency id="Newtonsoft.Json" version="$JsonNetVersion$"/>
8+
<dependency id="Newtonsoft.Json" version="$NewtonsoftJsonVersion$"/>
99
<dependency id="Microsoft.TestPlatform.ObjectModel" version="$Version$"/>
1010
</group>
1111
<group targetFramework="netstandard2.0">

‎src/package/Microsoft.TestPlatform.TestHost/Microsoft.TestPlatform.TestHost.csproj

Copy file name to clipboardExpand all lines: src/package/Microsoft.TestPlatform.TestHost/Microsoft.TestPlatform.TestHost.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup Label="NuGet">
21-
<NuspecProperty Include="JsonNetVersion=$(JsonNetVersion)" />
21+
<NuspecProperty Include="NewtonsoftJsonVersion=$(NewtonsoftJsonVersion)" />
2222
<NuspecProperty Include="SrcPackageFolder=$(SrcPackageFolder)" />
2323
</ItemGroup>
2424

‎src/package/Microsoft.TestPlatform.TestHost/Microsoft.TestPlatform.TestHost.nuspec

Copy file name to clipboardExpand all lines: src/package/Microsoft.TestPlatform.TestHost/Microsoft.TestPlatform.TestHost.nuspec
+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<dependencies>
77
<group targetFramework="netcoreapp3.1">
88
<dependency id="Microsoft.TestPlatform.ObjectModel" version="$Version$"/>
9-
<dependency id="Newtonsoft.Json" version="$JsonNetVersion$"/>
9+
<dependency id="Newtonsoft.Json" version="$NewtonsoftJsonVersion$"/>
1010
</group>
1111

1212
<group targetFramework="net462"></group>

‎test/Microsoft.TestPlatform.AdapterUtilities.UnitTests/Microsoft.TestPlatform.AdapterUtilities.UnitTests.csproj

Copy file name to clipboardExpand all lines: test/Microsoft.TestPlatform.AdapterUtilities.UnitTests/Microsoft.TestPlatform.AdapterUtilities.UnitTests.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Newtonsoft.Json" Version="$(JsonNetVersion)" />
16+
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
1717
<PackageReference Include="Microsoft.CodeAnalysis" Version="$(MicrosoftCodeAnalysisVersion)" />
1818
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisVersion)" />
1919
</ItemGroup>

‎test/Microsoft.TestPlatform.ObjectModel.UnitTests/Microsoft.TestPlatform.ObjectModel.UnitTests.csproj

Copy file name to clipboardExpand all lines: test/Microsoft.TestPlatform.ObjectModel.UnitTests/Microsoft.TestPlatform.ObjectModel.UnitTests.csproj
+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313
<ItemGroup>
1414
<PackageReference Include="Newtonsoft.Json">
15-
<Version>$(JsonNetVersion)</Version>
15+
<Version>$(NewtonsoftJsonVersion)</Version>
1616
</PackageReference>
1717
</ItemGroup>
1818
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.