-
Notifications
You must be signed in to change notification settings - Fork 1
0.2.0 Release Prep, Dependency and Documentation Clean-up #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
paulirwin
commented
Nov 7, 2025
- Bump version to 0.2.0
- Remove JetBrains Annotations dependency
- Upgrade dependencies including F23.Hateoas to 2.0.0 (breaking change - removes Newtonsoft.Json dependency)
- Fix Swagger docs for response status codes and types
- Run tests on .NET 9
- Remove OpenAPI dependency from examples since we already have Swashbuckle; just use that
…ocs, remove JetBrains Annotations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request upgrades the project to support .NET 9 alongside .NET 8, removes the JetBrains.Annotations dependency, and updates multiple package dependencies to newer versions. The changes also enhance the Swagger/OpenAPI documentation with versioning support and add API response type annotations.
Key Changes
- Multi-targeting support for .NET 8 and .NET 9 in test projects and CI/CD workflows
- Removal of JetBrains.Annotations package and related attributes
- Enhanced Swagger/OpenAPI documentation with versioned endpoints and explicit response type annotations
- Updated test framework packages and other dependencies
Reviewed Changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/F23.Kernel/GlobalUsings.cs | Removed JetBrains.Annotations global using statement |
| src/F23.Kernel/F23.Kernel.csproj | Bumped version to 0.2.0 and removed JetBrains.Annotations package reference |
| src/F23.Kernel/EventSourcing/IApplyEvent.cs | Removed [UsedImplicitly] attribute following JetBrains.Annotations removal |
| src/F23.Kernel.Tests/F23.Kernel.Tests.csproj | Added .NET 9 target framework and updated test package versions |
| src/F23.Kernel.Examples.AspNetCore/Program.cs | Enhanced Swagger configuration with versioning and custom document info |
| src/F23.Kernel.Examples.AspNetCore/Infrastructure/ResultsController.cs | Added ProducesResponseType attributes for better API documentation |
| src/F23.Kernel.Examples.AspNetCore/F23.Kernel.Examples.AspNetCore.csproj | Updated Swashbuckle.AspNetCore and removed Microsoft.AspNetCore.OpenApi |
| src/F23.Kernel.Examples.AspNetCore/Core/ResultsEndpoints.cs | Added Produces metadata for minimal API endpoints and removed unused using statements |
| src/F23.Kernel.AspNetCore/F23.Kernel.AspNetCore.csproj | Bumped version to 0.2.0 and upgraded F23.Hateoas to 2.0.0 |
| .github/workflows/publish.yml | Added .NET 9 setup steps and removed automatic PR/push triggers |
| .github/workflows/ci_build.yml | Added .NET 9 setup steps and modified test command |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.