8000 [release/8.0.4xx] Update dependencies from dotnet/arcade (#9015) · dotnet/templating@6102dd7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6102dd7

Browse files
[release/8.0.4xx] Update dependencies from dotnet/arcade (#9015)
[release/8.0.4xx] Update dependencies from dotnet/arcade - Use System.Text.Json in tests instead of 8000 unlisted log4net
1 parent e3bb940 commit 6102dd7

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
</Dependency>
1818
</ProductDependencies>
1919
<ToolsetDependencies>
20-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.25230.1">
20+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.25263.4">
2121
<Uri>https://github.com/dotnet/arcade</Uri>
22-
<Sha>4246a31e5de9de87f760218c4f588cebf4661f45</Sha>
22+
<Sha>20ab70a74d52b68f4271bd946884e24049b14f83</Sha>
2323
<SourceBuild RepoName="arcade" ManagedOnly="true" />
2424
</Dependency>
2525
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.23475.1" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"tools": {
3-
"dotnet": "8.0.115"
3+
"dotnet": "8.0.116"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25230.1"
6+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25263.4"
77
}
88
}

test/Microsoft.TemplateEngine.Edge.UnitTests/NuGetApiPackageManagerTests.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ internal async Task DownloadPackage_HasVulnerabilities()
146146

147147
var exception = await Assert.ThrowsAsync<VulnerablePackageException>(() => packageManager.DownloadPackageAsync(
148148
installPath,
149-
"log4net",
150-
"2.0.3",
149+
"System.Text.Json",
150+
"8.0.4",
151151
// add the source for getting vulnerability info
152152
additionalSources: _additionalSources));
153153

154-
exception.PackageIdentifier.Should().Be("log4net");
155-
exception.PackageVersion.Should().Be("2.0.3");
154+
exception.PackageIdentifier.Should().Be("System.Text.Json");
155+
exception.PackageVersion.Should().Be("8.0.4");
156156
exception.Vulnerabilities.Should().NotBeNullOrEmpty();
157157
}
158158

@@ -167,15 +167,15 @@ internal async Task DownloadPackage_HasVulnerabilitiesForce()
167167

168168
var result = await packageManager.DownloadPackageAsync(
169169
installPath,
170-
"log4net",
171-
"2.0.3",
170+
"System.Text.Json",
171+
"8.0.4",
172172
// add the source for getting vulnerability info
173173
additionalSources: _additionalSources,
174174
force: true);
175175

176-
result.PackageIdentifier.Should().Be("log4net");
177-
result.Author.Should().Be("Apache Software Foundation");
178-
result.PackageVersion.Should().Be("2.0.3");
176+
result.PackageIdentifier.Should().Be("System.Text.Json");
177+
result.Author.Should().Be("Microsoft");
178+
result.PackageVersion.Should().Be("8.0.4");
179179
Assert.True(File.Exists(result.FullPath));
180180
result.PackageVulnerabilities.Should().NotBeNullOrEmpty();
181181
result.NuGetSource.Should().Be(_additionalSources[0]);

0 commit comments

Comments
 (0)
0