Skip to content

Commit

Permalink
Bump Swashbuckle.AspNetCore from 6.9.0 to 7.0.0 (#566)
Browse files Browse the repository at this point in the history
* Bump Swashbuckle.AspNetCore from 6.9.0 to 7.0.0

Bumps [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) from 6.9.0 to 7.0.0.
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.9.0...v7.0.0)

---
updated-dependencies:
- dependency-name: Swashbuckle.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Ensure /swagger endpoint is hit by tests

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Damian Edwards <[email protected]>
  • Loading branch information
dependabot[bot] and DamianEdwards authored Nov 13, 2024
1 parent 9e24c12 commit a73e7c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.11" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="Aspire.Npgsql" Version="9.0.0" />
<PackageReference Include="Aspire.MySqlConnector" Version="9.0.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.0.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion samples/Metrics/MetricsApp/MetricsApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.11" />

<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions tests/SamplesIntegrationTests/AppHostTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static TheoryData<TestEndpoints> TestEndpoints() =>
{ "webfrontend", ["/alive", "/health", "/", "/weather"] }
}),
new TestEndpoints("AspireJavaScript.AppHost", new() {
{ "weatherapi", ["/alive", "/health", "/weatherforecast"] },
{ "weatherapi", ["/alive", "/health", "/weatherforecast", "/swagger"] },
{ "angular", ["/"] },
{ "react", ["/"] },
{ "vue", ["/"] }
Expand All @@ -146,7 +146,7 @@ public static TheoryData<TestEndpoints> TestEndpoints() =>
{ "ginapp", ["/"] }
}),
new TestEndpoints("DatabaseContainers.AppHost", new() {
{ "apiservice", ["/alive", "/health", "/todos", "/todos/1", "/catalog", "/catalog/1", "/addressbook", "/addressbook/1"] }
{ "apiservice", ["/alive", "/health", "/todos", "/todos/1", "/catalog", "/catalog/1", "/addressbook", "/addressbook/1", "/swagger"] }
}),
new TestEndpoints("DatabaseMigrations.AppHost", new() {
{ "api", ["/alive", "/health", "/"] }
Expand All @@ -160,7 +160,7 @@ public static TheoryData<TestEndpoints> TestEndpoints() =>
{ "healthchecksui", ["/"] }
}),
new TestEndpoints("MetricsApp.AppHost", new() {
{ "app", ["/alive", "/health"] },
{ "app", ["/alive", "/health", "/swagger"] },
{ "grafana", ["/"] }
}),
new TestEndpoints("OrleansVoting.AppHost", new() {
Expand Down

0 comments on commit a73e7c3

Please sign in to comment.