|
1 | 1 | # Release History |
2 | 2 |
|
3 | | -## (Unreleased) |
| 3 | +## 2.11.0 (2026-06-05) |
| 4 | + |
| 5 | +### Acknowledgments |
| 6 | + |
| 7 | +Thank you to our developer community members who helped to make the OpenAI client library better with their contributions to this release: |
| 8 | + |
| 9 | +- [@Rohan5commit](https://github.com/Rohan5commit) |
| 10 | +- [@kiwigitops](https://github.com/kiwigitops) |
| 11 | +- [@yucheng-fu](https://github.com/yucheng-fu) |
| 12 | +- [@arpitjain099](https://github.com/arpitjain099) |
| 13 | +- [@adityasingh2400](https://github.com/adityasingh2400) |
| 14 | + |
| 15 | +### Features Added |
| 16 | + |
| 17 | +- OpenAI.Chat: |
| 18 | + - Added support for specifying high-level guidance regarding the context window size to use during a web search. |
| 19 | + - Added the `ChatWebSearchContextSize` extensible enum. |
| 20 | + - Added the `SearchContextSize` property to `ChatWebSearchOptions`. |
| 21 | +- OpenAI.Skills: |
| 22 | + - Added support for managing reusable, versioned agent skills. |
| 23 | + - Introduced the new `SkillClient` with the following methods: |
| 24 | + - `UploadSkill` and `UploadSkillAsync` |
| 25 | + - `UpdateSkill` and `UpdateSkillAsync` |
| 26 | + - `GetSkill` and `GetSkillAsync` |
| 27 | + - `GetSkills` and `GetSkillsAsync` |
| 28 | + - `DownloadSkill` and `DownloadSkillAsync` |
| 29 | + - `DeleteSkill` and `DeleteSkillAsync` |
| 30 | + - `UploadSkillVersion` and `UploadSkillVersionAsync` |
| 31 | + - `GetSkillVersion` and `GetSkillVersionAsync` |
| 32 | + - `GetSkillVersions` and `GetSkillVersionsAsync` |
| 33 | + - `DownloadSkillVersion` and `DownloadSkillVersionAsync` |
| 34 | + - `DeleteSkillVersion` and `DeleteSkillVersionAsync` |
| 35 | +- OpenAI.Responses: |
| 36 | + - Added support for retrieving the log probabilities of output tokens. |
| 37 | + - Added the `ResponseTokenLogProbabilityDetails` type. |
| 38 | + - Added the `ResponseTokenTopLogProbabilityDetails` type. |
| 39 | + - Added the `OutputTextTokenLogProbabilities` property to `ResponseContentPart`. |
| 40 | + - Added the `TokenLogProbabilities` property to `StreamingResponseOutputTextDeltaUpdate`. |
| 41 | + - Added the `TokenLogProbabilities` property to `StreamingResponseOutputTextDoneUpdate`. |
| 42 | + - Added support for retrieving the function name in applicable function call argument streaming events. |
| 43 | + - Added `FunctionName` property to `StreamingResponseFunctionCallArgumentsDoneUpdate`. |
| 44 | + - Added extensibility to the `ResponseItem` class hierarchy. |
| 45 | + - Added the `ResponseItemKind` extensible enum. |
| 46 | + - Added the `Kind` property to `ResponseItem`. |
| 47 | + - Added a protected constructor to `ResponseItem` that takes a `ResponseItemKind` parameter. |
| 48 | + - Added extensibility to the `ResponseTool` class hierarchy. |
| 49 | + - Added the `ResponseToolKind` extensible Enum. |
| 50 | + - Added the `Kind` property to `ResponseTool`. |
| 51 | + - Added a protected constructor to `ResponseTool` that takes a `ResponseToolKind` parameter. |
| 52 | + - Added extensibility to the `StreamingResponseUpdate` class hierarchy. |
| 53 | + - Added the `StreamingResponseUpdateKind` extensible enum. |
| 54 | + - Added the `Kind` property to `StreamingResponseUpdate`. |
| 55 | + - Added a protected constructor to `StreamingResponseUpdate` that takes a `StreamingResponseUpdateKind` parameter. |
4 | 56 |
|
5 | 57 | ### Bugs Fixed |
6 | 58 |
|
7 | 59 | - OpenAI.Assistants: |
8 | | - - Fixed a `NullReferenceException` when an Assistants streaming response delivered an unmodeled `error` event. The SSE `error` frame is now surfaced as a `ClientResultException` so the failure is observable, while the unknown-event path stays covered. |
| 60 | + - Fixed a `NullReferenceException` when a streaming response delivered an unmodeled `error` event. The SSE `error` frame is now surfaced as a `ClientResultException` so the failure is observable, while the unknown-event path stays covered. |
| 61 | +- OpenAI.Files: |
| 62 | + - Fixed an issue where the `UploadFile` and `UploadFileAsync` method overloads in `OpenAIFileClient` that take a `filePath` were incorrectly using the entire path as the filename. |
| 63 | +- OpenAI.Realtime: |
| 64 | + - Fixed an issue where the `AudioEndTime` property of `RealtimeClientCommandConversationItemTruncate` was incorrectly serialized as a float instead of an integer. |
| 65 | + |
| 66 | +### Breaking Changes in Experimental APIs |
| 67 | + |
| 68 | +- OpenAI.Audio: |
| 69 | + - Changed the type of the `KnownSpeakerReferenceUris` property of `AudioTranscriptionOptions` from `IList<Uri>` to `IList<string>`. |
| 70 | +- OpenAI.Containers: |
| 71 | + - Renamed the `CreateContainerFile` and `CreateContainerFileAsync` methods of `ContainerClient` to `UploadContainerFile` and `UploadContainerFileAsync`. |
| 72 | + - Changed the type of the `Order` property of `ContainerFileCollectionOptions` from `ContainerCollectionOrder?` to `ContainerFileCollectionOrder?`. |
| 73 | +- OpenAI.Realtime: |
| 74 | + - Changed the type of the `Options` property of `RealtimeClientSettings` from `OpenAIClientOptions` to `RealtimeClientOptions`. |
| 75 | +- OpenAI.Responses: |
| 76 | + - Moved the `AddResponsesClient` and `AddKeyedResponsesClient` `IHostApplicationBuilder` extension methods under the `OpenAI.Responses` namespace. |
| 77 | + - Removed the `action` and `background` parameters from the constructor of `ImageGenerationCallResponseItem`. |
| 78 | + - Removed the `ImageGenToolCallBackground` type in favor of `ImageGenerationToolBackground`. |
| 79 | + - Removed the `ImageGenToolCallOutputFormat` type in favor of `ImageGenerationToolOutputFileFormat`. |
| 80 | + - Removed the `ImageGenToolCallQuality` type in favor of `ImageGenerationToolQuality`. |
| 81 | + - Removed the `ImageGenToolCallSize` type in favor of `ImageGenerationToolSize`. |
| 82 | + - Changed the type of the `Action` property of `ImageGenerationCallResponseItem` from `ImageGenerationToolAction` to `ImageGenerationToolAction?`. |
| 83 | + - Changed the type of the `Background` property of `ImageGenerationCallResponseItem` from `ImageGenToolCallBackground` to `ImageGenerationToolBackground?`. |
| 84 | + - Changed the type of the `OutputFormat` property of `ImageGenerationCallResponseItem` from `ImageGenToolCallOutputFormat` to `ImageGenerationToolOutputFileFormat?`. |
| 85 | + - Changed the type of the `Quality` property of `ImageGenerationCallResponseItem` from `ImageGenToolCallQuality` to `ImageGenerationToolQuality?`. |
| 86 | + - Changed the type of the `Size` property of `ImageGenerationCallResponseItem` from `ImageGenToolCallSize` to `ImageGenerationToolSize?`. |
| 87 | + - Renamed the `OutputFormat` property of `ImageGenerationCallResponseItem` to `OutputFileFormat`. |
| 88 | + - Changed the type of the `Options` property of `ResponsesClientSettings` from `OpenAIClientOptions` to `ResponsesClientOptions`. |
| 89 | + - Changed the type of the `options` parameters in the constructors of `ResponsesClient` from `OpenAIClientOptions` to `ResponsesClientOptions`. |
| 90 | + - Reordered the parameters of the following methods of the `ResponsesClient` for consistency: |
| 91 | + - `CompactResponse` and `CompactResponseAsync` |
| 92 | + - `GetInputTokenCount` and `GetInputTokenCountAsync` |
| 93 | + - Renamed `StreamingResponseTextAnnotationAddedUpdate` to `StreamingResponseOutputTextAnnotationAddedUpdate`. |
9 | 94 |
|
10 | 95 | ## 2.10.0 (2026-04-03) |
11 | 96 |
|
|
0 commit comments