From 6799cb61eae1849d1f448bfde91b0e05099d82e7 Mon Sep 17 00:00:00 2001 From: Jose Arriaga Maldonado Date: Tue, 11 Mar 2025 19:17:44 -0700 Subject: [PATCH 1/2] Prepare 2.2.0-beta.3 release (Part 2) --- .github/workflows/live-test.yml | 2 +- .github/workflows/release.yml | 2 +- CHANGELOG.md | 16 ++++++++++------ 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/live-test.yml b/.github/workflows/live-test.yml index 53715b93b..d0ef905fe 100644 --- a/.github/workflows/live-test.yml +++ b/.github/workflows/live-test.yml @@ -27,7 +27,7 @@ jobs: - name: Run live tests run: dotnet test ./tests/OpenAI.Tests.csproj --configuration Release - --filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual" + --filter="TestCategory!=Smoke&TestCategory!=Assistants&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual" --logger "trx;LogFilePrefix=live" --results-directory ${{github.workspace}}/artifacts/test-results ${{ env.version_suffix_args}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b821dc4b..4d28b2e85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,7 @@ jobs: - name: Run Live Tests run: dotnet test ./tests/OpenAI.Tests.csproj --configuration Release - --filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual" + --filter="TestCategory!=Smoke&TestCategory!=Assistants&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual" --logger "trx;LogFilePrefix=live" --results-directory ${{ github.workspace }}/artifacts/test-results ${{ env.version_suffix_args }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b668cb2d..3123ffee3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,18 @@ # Release History -## 2.2.0-beta.3 (Unreleased) +## 2.2.0-beta.3 (2025-03-11) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- OpenAI.Responses: + - Enabled support for the new Responses API. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa)) + - Added a new `OpenAIResponseClient` in a corresponding scenario namespace. +- OpenAI.Chat: + - Enabled support for web search. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa)) + - Added a `WebSearchOptions` property to `ChatCompletionOptions` ([`web_search_options` in the REST API](https://platform.openai.com/docs/api-reference/chat/create)). + - Added an `Annotations` property to `ChatCompletion`. +- OpenAI.Files: + - Enabled support for user data and evals files. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa)) ## 2.2.0-beta.2 (2025-02-18) From b4ca24f96a4491e69c9df2feb381e7649270c458 Mon Sep 17 00:00:00 2001 From: Jose Arriaga Maldonado Date: Tue, 11 Mar 2025 19:25:35 -0700 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3123ffee3..ca9a7325b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - OpenAI.Responses: - Enabled support for the new Responses API. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa)) - Added a new `OpenAIResponseClient` in a corresponding scenario namespace. + - This release aims to bring the new Responses API to .NET as soon as possible. Details, examples, and comprehensive updates for other operations are coming soon! - OpenAI.Chat: - Enabled support for web search. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa)) - Added a `WebSearchOptions` property to `ChatCompletionOptions` ([`web_search_options` in the REST API](https://platform.openai.com/docs/api-reference/chat/create)).