Skip to content

Commit 112b3d9

Browse files
Bump Microsoft.OpenApi
Bump Microsoft.OpenApi to 2.1.0.
1 parent f29a9de commit 112b3d9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/TodoApp/TodoApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.7.25380.108" />
1818
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.7.25380.108" />
1919
<PackageReference Include="Microsoft.Extensions.ApiDescription.Server" Version="10.0.0-preview.7.25380.108" PrivateAssets="all" />
20-
<PackageReference Include="Microsoft.OpenApi" Version="2.0.0" />
20+
<PackageReference Include="Microsoft.OpenApi" Version="2.1.0" />
2121
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.9.2" PrivateAssets="all" />
2222
<PackageReference Include="NSwag.AspNetCore" Version="14.6.0" />
2323
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.0-pr.3283.1689" />

tests/TodoApp.Tests/OpenApiTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public async Task Schema_Has_No_Validation_Warnings(string schemaUrl)
6666
Assert.NotNull(actual);
6767
Assert.NotNull(actual.Diagnostic);
6868
Assert.Empty(actual.Diagnostic.Errors);
69+
Assert.Empty(actual.Diagnostic.Warnings);
6970
Assert.NotNull(actual.Document);
7071

7172
var errors = actual.Document.Validate(ruleSet);

0 commit comments

Comments
 (0)