Skip to content

Commit f4f5fde

Browse files
Merge pull request #1541 from openai/release-please--branches--master--changes--next--components--openai
release: 5.3.0
2 parents a9e959f + 5a83783 commit f4f5fde

File tree

7 files changed

+19
-7
lines changed

7 files changed

+19
-7
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.2.0"
2+
".": "5.3.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 111
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-4865dda2b62927bd141cbc85f81be3d88602f103e2c581e15eb1caded3e3aaa2.yml
3-
openapi_spec_hash: 7d14a9b23ef4ac93ea46d629601b6f6b
4-
config_hash: ed1e6b3c5f93d12b80d31167f55c557c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-3ae9c18dd7ccfc3ac5206f24394665f563a19015cfa8847b2801a2694d012abc.yml
3+
openapi_spec_hash: 48175b03b58805cd5c80793c66fd54e5
4+
config_hash: 4caff63b74a41f71006987db702f2918

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 5.3.0 (2025-06-10)
4+
5+
Full Changelog: [v5.2.0...v5.3.0](https://github.com/openai/openai-node/compare/v5.2.0...v5.3.0)
6+
7+
### Features
8+
9+
* **api:** Add o3-pro model IDs ([9988f8e](https://github.com/openai/openai-node/commit/9988f8ea50a370abfc03bc97882d1ddd83837217))
10+
311
## 5.2.0 (2025-06-09)
412

513
Full Changelog: [v5.1.1...v5.2.0](https://github.com/openai/openai-node/compare/v5.1.1...v5.2.0)

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openai/openai",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"exports": {
55
".": "./index.ts",
66
"./helpers/zod": "./helpers/zod.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openai",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "The official TypeScript library for the OpenAI API",
55
"author": "OpenAI <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/shared.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export type AllModels =
55
| ChatModel
66
| 'o1-pro'
77
| 'o1-pro-2025-03-19'
8+
| 'o3-pro'
9+
| 'o3-pro-2025-06-10'
810
| 'computer-use-preview'
911
| 'computer-use-preview-2025-03-11';
1012

@@ -297,5 +299,7 @@ export type ResponsesModel =
297299
| ChatModel
298300
| 'o1-pro'
299301
| 'o1-pro-2025-03-19'
302+
| 'o3-pro'
303+
| 'o3-pro-2025-06-10'
300304
| 'computer-use-preview'
301305
| 'computer-use-preview-2025-03-11';

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '5.2.0'; // x-release-please-version
1+
export const VERSION = '5.3.0'; // x-release-please-version

0 commit comments

Comments
 (0)