Bump the dotnet group with 8 updates #22
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Updated GitHubActionsTestLogger from 2.4.1 to 3.0.0.
Release notes
Sourced from GitHubActionsTestLogger's releases.
3.0
Configuration breaking changes
@trait.XYZreplacement token has been removed.See the readme for updated usage instructions.
What's Changed
Microsoft.Testing.Platformby @Tyrrrz in Add support forMicrosoft.Testing.PlatformTyrrrz/GitHubActionsTestLogger#53New Contributors
Full Changelog: Tyrrrz/GitHubActionsTestLogger@2.4.1...3.0
Commits viewable in compare view.
Updated Microsoft.OpenApi from 1.6.22 to 3.0.1.
Release notes
Sourced from Microsoft.OpenApi's releases.
3.0.1
3.0.1 (2025-11-17)
Bug Fixes
3.0.0
3.0.0 (2025-11-11)
⚠ BREAKING CHANGES
Features
Special thanks
2.3.10
2.3.10 (2025-11-17)
Bug Fixes
2.3.9
2.3.9 (2025-11-06)
Bug Fixes
2.3.8
2.3.8 (2025-10-27)
Bug Fixes
2.3.7
2.3.7 (2025-10-24)
Bug Fixes
Performance Improvements
2.3.6
2.3.6 (2025-10-20)
Bug Fixes
2.3.5
2.3.5 (2025-10-14)
Bug Fixes
2.3.4
2.3.4 (2025-10-06)
Bug Fixes
2.3.3
2.3.3 (2025-10-02)
Bug Fixes
2.3.2
2.3.2 (2025-09-19)
Bug Fixes
2.3.1
2.3.1 (2025-09-08)
Bug Fixes
2.3.0
2.3.0 (2025-08-29)
Features
2.2.0
2.2.0 (2025-08-25)
Features
Bug Fixes
2.1.0
2.1.0 (2025-08-20)
Features
Bug Fixes
2.0.1
2.0.1 (2025-08-18)
Bug Fixes
2.0.0
2.0.0 (2025-07-10)
Features
Bug Fixes
2.0.0-preview9
2.0.0-preview9 (2025-02-21)
Features
Bug Fixes
2.0.0-preview8
2.0.0-preview8 (2025-02-17)
Bug Fixes
2.0.0-preview7
2.0.0-preview7 (2025-02-06)
Bug Fixes
2.0.0-preview6
2.0.0-preview6 (2025-02-05)
Features
Bug Fixes
... (truncated)
2.0.0-preview5
Changes:
See More
... (truncated)
2.0.0-preview4
Changes:
See More
constkeyword in OpenApiSchema... (truncated)
2.0.0-preview3
Changes:
See More
constkeyword in OpenApiSchema... (truncated)
2.0.0-preview2
Changes:
See More
... (truncated)
2.0.0-preview10
2.0.0-preview10 (2025-02-27)
Features
Bug Fixes
2.0.0-preview1
Overview
Version 2.0-preview1 brings major enhancements, including OpenAPI 3.1 support, improved performance, and bug fixes to enhance user experience. These changes introduce some breaking changes, so migrating to this new version may require updates in existing implementations.
Upgrade Steps
Breaking Changes
1. Update namespaces
Since most of the loading code has moved to the core library, you will be required to update the namespaces in your classes to reflect the change.
Example:
If you're using an instance of our
OpenApiReaderSettings, you'll need to update the namespace fromMicrosoft.OpenApi.ReaderstoMicrosoft.OpenApi.Reader2. Use Load/LoadAsync/Parse pattern for loading OpenApi documents
We've introduced a simplified static loading pattern for OpenAPI documents, removing the need for a secondary reader.
We have also introduced a registry class that allows users to register different OpenAPI format providers and their implementations for customized scenarios.
Reading from a JSON stream:
To enable YAML parsing, you'll have to register our OpenApiYamlReader with our reader registry for us to take a dependency on the SharpYaml library.
Reading from a YAML stream:
Reading string input:
Reading from a file path or URL:
3. Migration to JsonNode for examples and extensions
Schema examples and extensions now use JsonNode instead of IOpenApiAny, ensuring JSON Schema compatibility and fixing parsing errors.
You'll be required to import the
System.Text.Json.Nodesnamespace to facilitate this.v1.x example:
What's Changed
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.6...v10.0.0
9.0.6
What's Changed
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.5...v9.0.6
9.0.5
What's Changed
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.4...v9.0.5
9.0.4
What's Changed
ETagvalues by @martincostello in Fix incorrect ETag values domaindrivendev/Swashbuckle.AspNetCore#3490Accept-Encodingparsing by @martincostello in FixAccept-Encodingparsing domaindrivendev/Swashbuckle.AspNetCore#3492Accept-Encodingquality by @martincostello in Check Accept-Encoding quality domaindrivendev/Swashbuckle.AspNetCore#3493WebHostusage from tests by @martincostello in Remove WebHost usage domaindrivendev/Swashbuckle.AspNetCore#3517$typediscriminator for[JsonPolymorphic]by @lilinus in Default discriminator "$type" for JsonPolymorphicAttribute (annotations) domaindrivendev/Swashbuckle.AspNetCore#3496New Contributors
Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.3...v9.0.4
9.0.3
What's Changed
Content-Lengthfor swagger-ui and Redoc static assets by @martincostello in Fix incorrect Content-Length for swagger-ui and Redoc static assets domaindrivendev/Swashbuckle.AspNetCore#3488Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.2...v9.0.3
9.0.2
What's Changed
Description has been truncated