Skip to content

Commit 31e4afd

Browse files
release: 4.55.1
1 parent fe8328f commit 31e4afd

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
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-
".": "4.55.0"
2+
".": "4.55.1"
33
}

CHANGELOG.md

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

3+
## 4.55.1 (2024-08-07)
4+
5+
Full Changelog: [v4.55.0...v4.55.1](https://github.com/openai/openai-node/compare/v4.55.0...v4.55.1)
6+
7+
### Bug Fixes
8+
9+
* **helpers/zod:** correct schema generation for recursive schemas ([cb54d93](https://github.com/openai/openai-node/commit/cb54d93162c86ecfd476733805a431aab25d86d6))
10+
11+
12+
### Chores
13+
14+
* **api:** remove old `AssistantResponseFormat` type ([#967](https://github.com/openai/openai-node/issues/967)) ([9fd94bf](https://github.com/openai/openai-node/commit/9fd94bfc35128d3bc45fbf0a65e6a8d2ea4562d5))
15+
* **internal:** update test snapshots ([bceea60](https://github.com/openai/openai-node/commit/bceea60e461c40a9e59d52772122dd612a2ff1c4))
16+
* **vendor/zodJsonSchema:** add option to duplicate top-level ref ([84b8a38](https://github.com/openai/openai-node/commit/84b8a3820b0ce1c78bfd3db468d8d2962875b4ab))
17+
18+
19+
### Documentation
20+
21+
* **examples:** add UI generation example script ([c75c017](https://github.com/openai/openai-node/commit/c75c017c16cbfe3fc60ea4ee5779782005e64463))
22+
323
## 4.55.0 (2024-08-06)
424

525
Full Changelog: [v4.54.0...v4.55.0](https://github.com/openai/openai-node/compare/v4.54.0...v4.55.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can import in Deno via:
1919
<!-- x-release-please-start-version -->
2020

2121
```ts
22-
import OpenAI from 'https://deno.land/x/[email protected].0/mod.ts';
22+
import OpenAI from 'https://deno.land/x/[email protected].1/mod.ts';
2323
```
2424

2525
<!-- x-release-please-end -->

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": "4.55.0",
3+
"version": "4.55.1",
44
"description": "The official TypeScript library for the OpenAI API",
55
"author": "OpenAI <[email protected]>",
66
"types": "dist/index.d.ts",

scripts/build-deno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g
1616
Usage:
1717
1818
\`\`\`ts
19-
import OpenAI from "https://deno.land/x/[email protected].0/mod.ts";
19+
import OpenAI from "https://deno.land/x/[email protected].1/mod.ts";
2020
2121
const client = new OpenAI();
2222
\`\`\`

src/version.ts

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

0 commit comments

Comments
 (0)