From 79ee1b69e7646c461e35661d9758301e547d739a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:17:04 +0000 Subject: [PATCH 1/3] chore(internal): add dev dependency (#9) --- package.json | 1 + yarn.lock | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/package.json b/package.json index bd3a1ac..8d499e4 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "eslint": "^8.49.0", "eslint-plugin-prettier": "^5.0.1", "eslint-plugin-unused-imports": "^3.0.0", + "iconv-lite": "^0.6.3", "jest": "^29.4.0", "prettier": "^3.0.0", "ts-jest": "^29.1.0", diff --git a/yarn.lock b/yarn.lock index 0f17a27..10ebd6d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1959,6 +1959,13 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" +iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + ignore@^5.2.0, ignore@^5.2.4: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" @@ -3041,6 +3048,11 @@ safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +"safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + semver@^6.3.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" From 07e3a26ac3698057e0d19675bc62cb66051b1346 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:20:39 +0000 Subject: [PATCH 2/3] fix(types): remove leftover polyfill usage (#10) --- src/_shims/node-types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_shims/node-types.d.ts b/src/_shims/node-types.d.ts index b31698f..c159e5f 100644 --- a/src/_shims/node-types.d.ts +++ b/src/_shims/node-types.d.ts @@ -7,7 +7,7 @@ import * as fd from 'formdata-node'; export { type Agent } from 'node:http'; export { type Readable } from 'node:stream'; export { type ReadStream as FsReadStream } from 'node:fs'; -export { ReadableStream } from 'web-streams-polyfill'; +export { ReadableStream } from 'node:stream/web'; export const fetch: typeof nf.default; From fc63ba796a66c733b182a7df721d09187778b920 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:52:57 +0000 Subject: [PATCH 3/3] release: 0.1.0-alpha.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c5e8a3e..17473a2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.2" + ".": "0.1.0-alpha.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dcaa41f..1e49247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## 0.1.0-alpha.3 (2024-09-18) + +Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/runwayml/sdk-node/compare/v0.1.0-alpha.2...v0.1.0-alpha.3) + +### Features + +* **api:** update via SDK Studio ([066deb5](https://github.com/runwayml/sdk-node/commit/066deb57fb55b0ca92e994f8ad16a618d84b0d16)) +* **api:** update via SDK Studio ([098e240](https://github.com/runwayml/sdk-node/commit/098e2405b65807563b7dc7da2e3c56d343931bb7)) +* **api:** update via SDK Studio ([#6](https://github.com/runwayml/sdk-node/issues/6)) ([3af37b9](https://github.com/runwayml/sdk-node/commit/3af37b946a4c3510ba540e63283d45599a42d7ad)) + + +### Bug Fixes + +* **types:** remove leftover polyfill usage ([#10](https://github.com/runwayml/sdk-node/issues/10)) ([07e3a26](https://github.com/runwayml/sdk-node/commit/07e3a26ac3698057e0d19675bc62cb66051b1346)) + + +### Chores + +* go live ([#1](https://github.com/runwayml/sdk-node/issues/1)) ([31681bf](https://github.com/runwayml/sdk-node/commit/31681bf4c11dddd043d1d520e047647ba0dcccb2)) +* go live ([#1](https://github.com/runwayml/sdk-node/issues/1)) ([449f5b6](https://github.com/runwayml/sdk-node/commit/449f5b62ef152a10cdf801b8d5c9c1210dcade6f)) +* **internal:** add dev dependency ([#9](https://github.com/runwayml/sdk-node/issues/9)) ([79ee1b6](https://github.com/runwayml/sdk-node/commit/79ee1b69e7646c461e35661d9758301e547d739a)) +* **internal:** codegen related update ([d7fc06e](https://github.com/runwayml/sdk-node/commit/d7fc06e345811d4ad04ea9113974f849b874004a)) +* **internal:** codegen related update ([af1190c](https://github.com/runwayml/sdk-node/commit/af1190c7fabd201fce1cc448407d161b7a982280)) +* update SDK settings ([#3](https://github.com/runwayml/sdk-node/issues/3)) ([8f505a6](https://github.com/runwayml/sdk-node/commit/8f505a6a454c83c1681285c43a6796d3c351ae3c)) + + +### Documentation + +* update CONTRIBUTING.md ([c86786d](https://github.com/runwayml/sdk-node/commit/c86786d6ba662f2f7a131fd00c0d659b306cdea5)) + ## 0.1.0-alpha.2 (2024-09-16) Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/runwayml/sdk-node/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) diff --git a/package.json b/package.json index 8d499e4..cb512c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@runwayml/sdk", - "version": "0.1.0-alpha.2", + "version": "0.1.0-alpha.3", "description": "The official TypeScript library for the RunwayML API", "author": "RunwayML ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index a528f63..a64b06c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.1.0-alpha.2'; // x-release-please-version +export const VERSION = '0.1.0-alpha.3'; // x-release-please-version