Skip to content

Commit

Permalink
Update NuGet packages (#15339)
Browse files Browse the repository at this point in the history
The main goal is to incorporate a fix from the Deployments package to
unblock local extension error responses. Using the same PR to update
other packages as well to resolve the open Dependabot PRs.
###### Microsoft Reviewers: [Open in
CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/Azure/bicep/pull/15339)
  • Loading branch information
shenglol authored Oct 21, 2024
1 parent 5ae1c00 commit 6dfa4ff
Show file tree
Hide file tree
Showing 58 changed files with 94,070 additions and 98,153 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.1" />
</ItemGroup>

<ItemGroup>
Expand All @@ -28,6 +28,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="Nerdbank.GitVersioning" Version="3.6.143" />
<PackageReference Update="Nerdbank.GitVersioning" Version="3.6.146" />
</ItemGroup>
</Project>
6 changes: 4 additions & 2 deletions src/Bicep.Cli.IntegrationTests/PublishCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -458,13 +458,15 @@ public async Task Publish_BicepModule_WithDescriptionAndDocUri_ShouldPlaceDescri

var manifest = blobClient.Manifests.Single().Value.ToObjectFromJson<OciManifest>(new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });

manifest.Should().NotBeNull();

if (expectedDescription is null)
{
manifest.Annotations.Keys.Should().NotContain("org.opencontainers.image.description");
manifest!.Annotations.Keys.Should().NotContain("org.opencontainers.image.description");
}
else
{
manifest.Annotations.Should().ContainKey("org.opencontainers.image.description");
manifest!.Annotations.Should().ContainKey("org.opencontainers.image.description");
manifest.Annotations["org.opencontainers.image.description"].Should().Be(expectedDescription);
}

Expand Down
Loading

0 comments on commit 6dfa4ff

Please sign in to comment.