Bump AssetRipper.ICSharpCode.Decompiler and 6 others#1860
Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
Closed
Bump AssetRipper.ICSharpCode.Decompiler and 6 others#1860dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot[bot] wants to merge 1 commit intomasterfrom
Conversation
Bumps AssetRipper.ICSharpCode.Decompiler to 9.1.0.8018 Bumps Microsoft.AspNetCore.OpenApi from 9.0.6 to 9.0.7 Bumps Microsoft.OpenApi from 1.6.24 to 2.0.0 Bumps Samboy063.Cpp2IL.Core from 2022.1.0-development.1356 to 2022.1.0-pre-release.19 Bumps Swashbuckle.AspNetCore from 9.0.1 to 9.0.3 Bumps System.Text.Json from 9.0.6 to 9.0.7 Bumps ZstdSharp.Port from 0.8.5 to 0.8.6 --- updated-dependencies: - dependency-name: AssetRipper.ICSharpCode.Decompiler dependency-version: 9.1.0.8018 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: AssetRipper.ICSharpCode.Decompiler dependency-version: 9.1.0.8018 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.AspNetCore.OpenApi dependency-version: 9.0.7 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.OpenApi dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Samboy063.Cpp2IL.Core dependency-version: 2022.1.0-pre-release.19 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Swashbuckle.AspNetCore dependency-version: 9.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: System.Text.Json dependency-version: 9.0.7 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: ZstdSharp.Port dependency-version: 0.8.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Updated AssetRipper.ICSharpCode.Decompiler from 9.1.0.8017 to 9.1.0.8018.
Release notes
Sourced from AssetRipper.ICSharpCode.Decompiler's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.AspNetCore.OpenApi from 9.0.6 to 9.0.7.
Release notes
Sourced from Microsoft.AspNetCore.OpenApi's releases.
9.0.7
Release
What's Changed
04ee1b4toe9092b1by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest from04ee1b4toe9092b1dotnet/aspnetcore#62199Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7
Commits viewable in compare view.
Updated Microsoft.OpenApi from 1.6.24 to 2.0.0.
Release notes
Sourced from Microsoft.OpenApi's releases.
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: