Skip to content

Commit e749a52

Browse files
authored
Prepare 2.2.0-beta.3 release (Part 2) (#370)
1 parent 61f3cf5 commit e749a52

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/live-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run live tests
2828
run: dotnet test ./tests/OpenAI.Tests.csproj
2929
--configuration Release
30-
--filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual"
30+
--filter="TestCategory!=Smoke&TestCategory!=Assistants&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual"
3131
--logger "trx;LogFilePrefix=live"
3232
--results-directory ${{github.workspace}}/artifacts/test-results
3333
${{ env.version_suffix_args}}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Run Live Tests
5050
run: dotnet test ./tests/OpenAI.Tests.csproj
5151
--configuration Release
52-
--filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual"
52+
--filter="TestCategory!=Smoke&TestCategory!=Assistants&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual"
5353
--logger "trx;LogFilePrefix=live"
5454
--results-directory ${{ github.workspace }}/artifacts/test-results
5555
${{ env.version_suffix_args }}

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# Release History
22

3-
## 2.2.0-beta.3 (Unreleased)
3+
## 2.2.0-beta.3 (2025-03-11)
44

55
### Features Added
66

7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
7+
- OpenAI.Responses:
8+
- Enabled support for the new Responses API. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa))
9+
- Added a new `OpenAIResponseClient` in a corresponding scenario namespace.
10+
- 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!
11+
- OpenAI.Chat:
12+
- Enabled support for web search. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa))
13+
- Added a `WebSearchOptions` property to `ChatCompletionOptions` ([`web_search_options` in the REST API](https://platform.openai.com/docs/api-reference/chat/create)).
14+
- Added an `Annotations` property to `ChatCompletion`.
15+
- OpenAI.Files:
16+
- Enabled support for user data and evals files. ([0ca4c06](https://github.com/openai/openai-dotnet/commit/0ca4c062c2fce219ce42cb4d2f1f2ab2056811aa))
1217

1318
## 2.2.0-beta.2 (2025-02-18)
1419

0 commit comments

Comments
 (0)