Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/Web/api/WebAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.1.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.8" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.1" />

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CRITICAL: Swashbuckle.AspNetCore version bump from 7.3.1 to 10.2.1 is incompatible with existing API usage

This is a major version jump spanning 3 major versions (7 → 10). The codebase uses options.DescribeAllParametersInCamelCase() (in Startup.cs:160) which was removed in Swashbuckle.AspNetCore 6.0, and AddMvc().SetCompatibilityVersion() which is obsolete. With v10.2.1 these calls will fail at compile or runtime, blocking the application from starting.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.18.0" />
</ItemGroup>

Expand Down
Loading