Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/create-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node'
runs-on: ubuntu-latest
environment: publish
permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.70.1"
".": "4.70.2"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 4.70.2 (2024-11-01)

Full Changelog: [v4.70.1...v4.70.2](https://github.com/openai/openai-node/compare/v4.70.1...v4.70.2)

### Bug Fixes

* add permissions to github workflow ([ee75e00](https://github.com/openai/openai-node/commit/ee75e00b0fbf82553b219ee8948a8077e9c26a24))
* skip deno ecosystem test ([5b181b0](https://github.com/openai/openai-node/commit/5b181b01b62139f8da35d426914c82b8425af141))

## 4.70.1 (2024-11-01)

Full Changelog: [v4.70.0...v4.70.1](https://github.com/openai/openai-node/compare/v4.70.0...v4.70.1)
Expand Down
19 changes: 10 additions & 9 deletions ecosystem-tests/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,16 @@ const projectRunners = {
await run('bun', ['test']);
}
},
deno: async () => {
// we don't need to explicitly install the package here
// because our deno setup relies on `rootDir/deno` to exist
// which is an artifact produced from our build process
await run('deno', ['task', 'install']);
await run('deno', ['task', 'check']);

if (state.live) await run('deno', ['task', 'test']);
},
// Temporarily comment this out until we can test with JSR transformations end-to-end.
// deno: async () => {
// // we don't need to explicitly install the package here
// // because our deno setup relies on `rootDir/deno` to exist
// // which is an artifact produced from our build process
// await run('deno', ['task', 'install']);
// await run('deno', ['task', 'check']);

// if (state.live) await run('deno', ['task', 'test']);
// },
};

let projectNames = Object.keys(projectRunners) as Array<keyof typeof projectRunners>;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openai",
"version": "4.70.1",
"version": "4.70.2",
"description": "The official TypeScript library for the OpenAI API",
"author": "OpenAI <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '4.70.1'; // x-release-please-version
export const VERSION = '4.70.2'; // x-release-please-version