-
Notifications
You must be signed in to change notification settings - Fork 0
V9.0.2/package maintenance #9
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
WalkthroughThis pull request updates various configuration and test files. In the Changes
Sequence Diagram(s)sequenceDiagram
participant Test as Test Method
participant Host as WebHostTestFactory
participant App as Application
participant JSON as Swagger JSON Response
Test->>Host: Create test host (hostFixture: null)
Host->>App: Initialize application
App->>JSON: Generate Swagger JSON (version 3.0.4)
JSON-->>Test: Return Swagger JSON
Test->>Test: Assert JSON version is 3.0.4
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (8)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9 +/- ##
=======================================
Coverage 84.81% 84.81%
=======================================
Files 11 11
Lines 237 237
Branches 9 9
=======================================
Hits 201 201
Misses 36 36 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
This pull request includes several updates to package versions and test configurations. The most important changes include updating package versions in
Directory.Packages.props
, modifying theDirectory.Build.props
file to include additional assets forxunit.runner.visualstudio
, and updating test cases to reflect the newopenapi
version.Package Updates:
Directory.Packages.props
: Updated versions for multiple packages, includingCodebelt.Bootstrapper.Web
,Codebelt.Extensions.Xunit.App
,Cuemon.Extensions.AspNetCore.Mvc.Formatters.Text.Json
,Microsoft.AspNetCore.OpenApi
,Microsoft.NET.Test.Sdk
,Swashbuckle.AspNetCore
, andxunit.runner.visualstudio
.Build Configuration:
Directory.Build.props
: Modifiedxunit.runner.visualstudio
to includePrivateAssets
andIncludeAssets
attributes.Test Case Updates:
test/Codebelt.Extensions.Swashbuckle.AspNetCore.Tests/ServiceCollectionExtensionsTest.cs
: Updatedopenapi
version from3.0.1
to3.0.4
in multiple test cases. [1] [2] [3] [4]test/Codebelt.Extensions.Swashbuckle.AspNetCore.Tests/SwaggerGenOptionsExtensionsTest.cs
: Updatedopenapi
version from3.0.1
to3.0.4
in multiple test cases. [1] [2] [3] [4] [5]Other Configuration:
testenvironments.json
: Updated Docker image version for theDocker-Ubuntu
test environment.Summary by CodeRabbit
Chores
Tests