From 938e3513d34ae2f4a2c376df3f79f412251c6c53 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Wed, 2 Jul 2025 17:02:08 +0000
Subject: [PATCH] chore(main): release 2.0.0-preview.30
---
.release-please-manifest.json | 2 +-
CHANGELOG.md | 12 ++
Directory.Build.props | 2 +-
README.md | 286 +++++++++++++++++-----------------
4 files changed, 157 insertions(+), 145 deletions(-)
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 64d9ced31..2047ce9d2 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "2.0.0-preview.29"
+ ".": "2.0.0-preview.30"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a386ea6f3..4da9a6439 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [2.0.0-preview.30](https://github.com/microsoft/OpenAPI.NET/compare/v2.0.0-preview.29...v2.0.0-preview.30) (2025-07-02)
+
+
+### Bug Fixes
+
+* migration of hidi to the latest version of system.commandline ([a5f8721](https://github.com/microsoft/OpenAPI.NET/commit/a5f8721a18e93ee881cfee371ba6d23ce0c55ae4))
+* throw on circular reference ([e14258d](https://github.com/microsoft/OpenAPI.NET/commit/e14258dd2a8639702c8e0bc81a643874d207facb))
+* throw on circular reference ([caea292](https://github.com/microsoft/OpenAPI.NET/commit/caea292b39d2c754bd2e2d214280add53a0a47ea))
+* upgrades openapi.odata to avoid hidi failing to load ([0bea5ed](https://github.com/microsoft/OpenAPI.NET/commit/0bea5ed3cbb10230bf026288e118ce0e5025e55a))
+* upgrades openapi.odata to avoid hidi failing to load ([6735397](https://github.com/microsoft/OpenAPI.NET/commit/67353976b8a17dcb6760223d06c097469fa6f794))
+* validation to accept lowercase status code ranges (4xx, 5xx) in OpenAPI responses ([09f661f](https://github.com/microsoft/OpenAPI.NET/commit/09f661f0ff0511d5937fad49ae8a6182b1ea1aff))
+
## [2.0.0-preview.29](https://github.com/microsoft/OpenAPI.NET/compare/v2.0.0-preview.28...v2.0.0-preview.29) (2025-06-18)
diff --git a/Directory.Build.props b/Directory.Build.props
index 7cae41f35..b3f6faca3 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -12,7 +12,7 @@
https://github.com/Microsoft/OpenAPI.NET
© Microsoft Corporation. All rights reserved.
OpenAPI .NET
- 2.0.0-preview.29
+ 2.0.0-preview.30
diff --git a/README.md b/README.md
index 886ca58b2..cc550cdcf 100644
--- a/README.md
+++ b/README.md
@@ -1,143 +1,143 @@
-
-
-
-# OpenAPI.NET
-
-|Package|Nuget|
-|--|--|
-|Models and Writers|[](https://www.nuget.org/packages/Microsoft.OpenApi/) |
-|Readers | [](https://www.nuget.org/packages/Microsoft.OpenApi.Readers/) |
-|Hidi|[](https://www.nuget.org/packages/Microsoft.OpenApi.Hidi/)
-
-
-The **OpenAPI.NET** SDK contains a useful object model for OpenAPI documents in .NET along with common serializers to extract raw OpenAPI JSON and YAML documents from the model.
-
-**See more information on the OpenAPI specification and its history here: OpenAPI Initiative**
-
-Project Objectives:
-
-- Provide a single shared object model in .NET for OpenAPI descriptions.
-- Include the most primitive Reader for ingesting OpenAPI JSON and YAML documents in both V2 and V3 formats.
-- Provide OpenAPI description writers for both V2 and V3 specification formats.
-- Enable developers to create Readers that translate different data formats into OpenAPI descriptions.
-
-# Installation
-
-- Install core Nuget package [**Microsoft.OpenApi**](https://www.nuget.org/packages/Microsoft.OpenApi)
-- Install readers Nuget package [**Microsoft.OpenApi.Readers**](https://www.nuget.org/packages/Microsoft.OpenApi.Readers)
-
-> Note: version 2 of this library, which brings support for OpenAPI 3.1, is currently in preview. Due to early versioning issues with the preview, and package renaming, the installation must be done with a specific version number to get the latest version:
-> ```bash
-> # x-release-please-start-version
-> dotnet add package Microsoft.OpenAPI --version 2.0.0-preview.29
-> # x-release-please-end
-> # x-release-please-start-version
-> dotnet add package Microsoft.OpenAPI.YamlReader --version 2.0.0-preview.29
-> # x-release-please-end
-> ```
-> Until this new version is generally available, dependabot will periodically create pull requests which **downgrade** to preview 9, they should be ignored.
-> You can read more about the changes of this upcoming version [in the upgrade guide](./docs/upgrade-guide-2.md).
-
-# Processors
-The OpenAPI.NET project holds the base object model for representing OpenAPI documents as .NET objects. Some developers have found the need to write processors that convert other data formats into this OpenAPI.NET object model. We'd like to curate that list of processors in this section of the readme.
-
-The base JSON and YAML processors are built into this project. Below is the list of the other supported processor projects.
-
-- [**C# Comment / Annotation Processor**](https://github.com/Microsoft/OpenAPI.NET.CSharpAnnotations) : Converts standard .NET annotations ( /// comments ) emitted from your build (MSBuild.exe) into OpenAPI.NET document object.
-
-- [**OData CSDL Processor**](https://github.com/Microsoft/OpenAPI.NET.OData) : Converts the XML representation of the Entity Data Model (EDM) describing an OData Service into OpenAPI.NET document object.
-
-# Example Usage
-
-Creating an OpenAPI Document
-
-```C#
-var document = new OpenApiDocument
-{
- Info = new OpenApiInfo
- {
- Version = "1.0.0",
- Title = "Swagger Petstore (Simple)",
- },
- Servers = new List
- {
- new OpenApiServer { Url = "http://petstore.swagger.io/api" }
- },
- Paths = new OpenApiPaths
- {
- ["/pets"] = new OpenApiPathItem
- {
- Operations = new()
- {
- [HttpMethod.Get] = new OpenApiOperation
- {
- Description = "Returns all pets from the system that the user has access to",
- Responses = new OpenApiResponses
- {
- ["200"] = new OpenApiResponse
- {
- Description = "OK"
- }
- }
- }
- }
- }
- }
-};
-```
-
-Reading and writing an OpenAPI description
-
-```C#
-var httpClient = new HttpClient
-{
- BaseAddress = new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/")
-};
-
-var stream = await httpClient.GetStreamAsync("main/examples/v3.0/petstore.yaml");
-
-// Read V3 as YAML
-var openApiDocument = new OpenApiStreamReader().Read(stream, out var diagnostic);
-
-// Write V2 as JSON
-var outputString = openApiDocument.Serialize(OpenApiSpecVersion.OpenApi2_0, OpenApiConstants.Json);
-
-```
-
-# Validating/Testing OpenAPI descriptions
-In order to test the validity of an OpenApi document, we avail the following tools:
-- [Microsoft.OpenApi.Hidi](https://www.nuget.org/packages/Microsoft.OpenApi.Hidi)
-
- A commandline tool for validating and transforming OpenAPI descriptions. [Installation guidelines and documentation](https://github.com/microsoft/OpenAPI.NET/blob/main/src/Microsoft.OpenApi.Hidi/readme.md)
-
-- Microsoft.OpenApi.Workbench
-
- A workbench tool consisting of a GUI where you can test and convert OpenAPI descriptions in both JSON and YAML from v2-->v3 and vice versa.
-
- #### Installation guidelines:
- 1. Clone the repo locally by running this command:
- `git clone https://github.com/microsoft/OpenAPI.NET.git`
- 2. Open the solution file `(.sln)` in the root of the project with Visual Studio
- 3. Navigate to the `src/Microsoft.OpenApi.Workbench` directory and set it as the startup project
- 4. Run the project and you'll see a GUI pop up resembling the one below:
-
-
- 
-
- 5. Copy and paste your OpenAPI descriptions in the **Input Content** window or paste the path to the descriptions file in the **Input File** textbox and click on `Convert` to render the results.
-
-# Contributing
-
-This project welcomes contributions and suggestions. Most contributions require you to agree to a
-Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
-the rights to use your contribution. For details, visit https://cla.microsoft.com.
-
-When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
-a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
-provided by the bot. You will only need to do this once across all repos using our CLA.
-
-This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
-For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
-contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
-
-To provide feedback and ask questions you can use Stack Overflow with the [OpenAPI.NET](https://stackoverflow.com/questions/tagged/openapi.net) tag.
+
+
+
+# OpenAPI.NET
+
+|Package|Nuget|
+|--|--|
+|Models and Writers|[](https://www.nuget.org/packages/Microsoft.OpenApi/) |
+|Readers | [](https://www.nuget.org/packages/Microsoft.OpenApi.Readers/) |
+|Hidi|[](https://www.nuget.org/packages/Microsoft.OpenApi.Hidi/)
+
+
+The **OpenAPI.NET** SDK contains a useful object model for OpenAPI documents in .NET along with common serializers to extract raw OpenAPI JSON and YAML documents from the model.
+
+**See more information on the OpenAPI specification and its history here: OpenAPI Initiative**
+
+Project Objectives:
+
+- Provide a single shared object model in .NET for OpenAPI descriptions.
+- Include the most primitive Reader for ingesting OpenAPI JSON and YAML documents in both V2 and V3 formats.
+- Provide OpenAPI description writers for both V2 and V3 specification formats.
+- Enable developers to create Readers that translate different data formats into OpenAPI descriptions.
+
+# Installation
+
+- Install core Nuget package [**Microsoft.OpenApi**](https://www.nuget.org/packages/Microsoft.OpenApi)
+- Install readers Nuget package [**Microsoft.OpenApi.Readers**](https://www.nuget.org/packages/Microsoft.OpenApi.Readers)
+
+> Note: version 2 of this library, which brings support for OpenAPI 3.1, is currently in preview. Due to early versioning issues with the preview, and package renaming, the installation must be done with a specific version number to get the latest version:
+> ```bash
+> # x-release-please-start-version
+> dotnet add package Microsoft.OpenAPI --version 2.0.0-preview.30
+> # x-release-please-end
+> # x-release-please-start-version
+> dotnet add package Microsoft.OpenAPI.YamlReader --version 2.0.0-preview.30
+> # x-release-please-end
+> ```
+> Until this new version is generally available, dependabot will periodically create pull requests which **downgrade** to preview 9, they should be ignored.
+> You can read more about the changes of this upcoming version [in the upgrade guide](./docs/upgrade-guide-2.md).
+
+# Processors
+The OpenAPI.NET project holds the base object model for representing OpenAPI documents as .NET objects. Some developers have found the need to write processors that convert other data formats into this OpenAPI.NET object model. We'd like to curate that list of processors in this section of the readme.
+
+The base JSON and YAML processors are built into this project. Below is the list of the other supported processor projects.
+
+- [**C# Comment / Annotation Processor**](https://github.com/Microsoft/OpenAPI.NET.CSharpAnnotations) : Converts standard .NET annotations ( /// comments ) emitted from your build (MSBuild.exe) into OpenAPI.NET document object.
+
+- [**OData CSDL Processor**](https://github.com/Microsoft/OpenAPI.NET.OData) : Converts the XML representation of the Entity Data Model (EDM) describing an OData Service into OpenAPI.NET document object.
+
+# Example Usage
+
+Creating an OpenAPI Document
+
+```C#
+var document = new OpenApiDocument
+{
+ Info = new OpenApiInfo
+ {
+ Version = "1.0.0",
+ Title = "Swagger Petstore (Simple)",
+ },
+ Servers = new List
+ {
+ new OpenApiServer { Url = "http://petstore.swagger.io/api" }
+ },
+ Paths = new OpenApiPaths
+ {
+ ["/pets"] = new OpenApiPathItem
+ {
+ Operations = new()
+ {
+ [HttpMethod.Get] = new OpenApiOperation
+ {
+ Description = "Returns all pets from the system that the user has access to",
+ Responses = new OpenApiResponses
+ {
+ ["200"] = new OpenApiResponse
+ {
+ Description = "OK"
+ }
+ }
+ }
+ }
+ }
+ }
+};
+```
+
+Reading and writing an OpenAPI description
+
+```C#
+var httpClient = new HttpClient
+{
+ BaseAddress = new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/")
+};
+
+var stream = await httpClient.GetStreamAsync("main/examples/v3.0/petstore.yaml");
+
+// Read V3 as YAML
+var openApiDocument = new OpenApiStreamReader().Read(stream, out var diagnostic);
+
+// Write V2 as JSON
+var outputString = openApiDocument.Serialize(OpenApiSpecVersion.OpenApi2_0, OpenApiConstants.Json);
+
+```
+
+# Validating/Testing OpenAPI descriptions
+In order to test the validity of an OpenApi document, we avail the following tools:
+- [Microsoft.OpenApi.Hidi](https://www.nuget.org/packages/Microsoft.OpenApi.Hidi)
+
+ A commandline tool for validating and transforming OpenAPI descriptions. [Installation guidelines and documentation](https://github.com/microsoft/OpenAPI.NET/blob/main/src/Microsoft.OpenApi.Hidi/readme.md)
+
+- Microsoft.OpenApi.Workbench
+
+ A workbench tool consisting of a GUI where you can test and convert OpenAPI descriptions in both JSON and YAML from v2-->v3 and vice versa.
+
+ #### Installation guidelines:
+ 1. Clone the repo locally by running this command:
+ `git clone https://github.com/microsoft/OpenAPI.NET.git`
+ 2. Open the solution file `(.sln)` in the root of the project with Visual Studio
+ 3. Navigate to the `src/Microsoft.OpenApi.Workbench` directory and set it as the startup project
+ 4. Run the project and you'll see a GUI pop up resembling the one below:
+
+
+ 
+
+ 5. Copy and paste your OpenAPI descriptions in the **Input Content** window or paste the path to the descriptions file in the **Input File** textbox and click on `Convert` to render the results.
+
+# Contributing
+
+This project welcomes contributions and suggestions. Most contributions require you to agree to a
+Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
+the rights to use your contribution. For details, visit https://cla.microsoft.com.
+
+When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
+a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
+provided by the bot. You will only need to do this once across all repos using our CLA.
+
+This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
+For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
+contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
+
+To provide feedback and ask questions you can use Stack Overflow with the [OpenAPI.NET](https://stackoverflow.com/questions/tagged/openapi.net) tag.