diff --git a/.changeset/solid-berries-sing.md b/.changeset/solid-berries-sing.md deleted file mode 100644 index 669201c6a08..00000000000 --- a/.changeset/solid-berries-sing.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@gradio/workflowcanvas": patch -"gradio": patch ---- - -feat:Workflow: only inline app-owned files, and keep opened HTML off the app origin diff --git a/.changeset/tangy-boats-sing.md b/.changeset/tangy-boats-sing.md deleted file mode 100644 index f5e68165340..00000000000 --- a/.changeset/tangy-boats-sing.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@gradio/client": minor -"@gradio/core": minor -"@self/spa": minor -"gradio": minor ---- - -feat:Add browser-local run history and loading diff --git a/.changeset/upset-vans-judge.md b/.changeset/upset-vans-judge.md deleted file mode 100644 index f1b2cc5d7ff..00000000000 --- a/.changeset/upset-vans-judge.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@gradio/core": patch -"gradio": patch ---- - -feat:Fix initial Spaces iframe resize after app render diff --git a/.changeset/wicked-trees-knock.md b/.changeset/wicked-trees-knock.md deleted file mode 100644 index 4bb88c35093..00000000000 --- a/.changeset/wicked-trees-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"gradio": patch ---- - -feat:Await `auth_dependency` and apply it when routes are built on an existing app diff --git a/CHANGELOG.md b/CHANGELOG.md index ec49af60183..6ce0074695e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # gradio +## 6.24.0 + +### Features + +- [#13750](https://github.com/gradio-app/gradio/pull/13750) [`e0f0790`](https://github.com/gradio-app/gradio/commit/e0f0790b6fbe591cfb6de968316596806f5b59dc) - Workflow: only inline app-owned files, and keep opened HTML off the app origin. Thanks @abidlabs! +- [#13718](https://github.com/gradio-app/gradio/pull/13718) [`a9e8382`](https://github.com/gradio-app/gradio/commit/a9e8382c4f68e938b5fceef299d7539434c6063f) - Add browser-local run history and loading. Thanks @abidlabs! +- [#13751](https://github.com/gradio-app/gradio/pull/13751) [`1c8aa23`](https://github.com/gradio-app/gradio/commit/1c8aa23263ef1d3a641690395b8f0d816b593cc3) - Fix initial Spaces iframe resize after app render. Thanks @dawoodkhan82! +- [#13749](https://github.com/gradio-app/gradio/pull/13749) [`5019a24`](https://github.com/gradio-app/gradio/commit/5019a2402779d40d7c0b42817fc73bd2df3d8022) - Await `auth_dependency` and apply it when routes are built on an existing app. Thanks @abidlabs! + ## 6.23.1 ### Fixes diff --git a/client/js/CHANGELOG.md b/client/js/CHANGELOG.md index 62ae2beb1ba..b327dc05c7e 100644 --- a/client/js/CHANGELOG.md +++ b/client/js/CHANGELOG.md @@ -1,5 +1,11 @@ # @gradio/client +## 2.5.0 + +### Features + +- [#13718](https://github.com/gradio-app/gradio/pull/13718) [`a9e8382`](https://github.com/gradio-app/gradio/commit/a9e8382c4f68e938b5fceef299d7539434c6063f) - Add browser-local run history and loading. Thanks @abidlabs! + ## 2.4.0 ### Features diff --git a/client/js/package.json b/client/js/package.json index 8a854bb46c9..dbb032c597b 100644 --- a/client/js/package.json +++ b/client/js/package.json @@ -1,6 +1,6 @@ { "name": "@gradio/client", - "version": "2.4.0", + "version": "2.5.0", "description": "Gradio API client", "type": "module", "main": "dist/index.cjs", diff --git a/gradio/CHANGELOG.md b/gradio/CHANGELOG.md index ec49af60183..6ce0074695e 100644 --- a/gradio/CHANGELOG.md +++ b/gradio/CHANGELOG.md @@ -1,5 +1,14 @@ # gradio +## 6.24.0 + +### Features + +- [#13750](https://github.com/gradio-app/gradio/pull/13750) [`e0f0790`](https://github.com/gradio-app/gradio/commit/e0f0790b6fbe591cfb6de968316596806f5b59dc) - Workflow: only inline app-owned files, and keep opened HTML off the app origin. Thanks @abidlabs! +- [#13718](https://github.com/gradio-app/gradio/pull/13718) [`a9e8382`](https://github.com/gradio-app/gradio/commit/a9e8382c4f68e938b5fceef299d7539434c6063f) - Add browser-local run history and loading. Thanks @abidlabs! +- [#13751](https://github.com/gradio-app/gradio/pull/13751) [`1c8aa23`](https://github.com/gradio-app/gradio/commit/1c8aa23263ef1d3a641690395b8f0d816b593cc3) - Fix initial Spaces iframe resize after app render. Thanks @dawoodkhan82! +- [#13749](https://github.com/gradio-app/gradio/pull/13749) [`5019a24`](https://github.com/gradio-app/gradio/commit/5019a2402779d40d7c0b42817fc73bd2df3d8022) - Await `auth_dependency` and apply it when routes are built on an existing app. Thanks @abidlabs! + ## 6.23.1 ### Fixes diff --git a/gradio/package.json b/gradio/package.json index 8a356c5db8c..e0d3c8691c2 100644 --- a/gradio/package.json +++ b/gradio/package.json @@ -1,6 +1,6 @@ { "name": "gradio", - "version": "6.23.1", + "version": "6.24.0", "description": "This is the package.json", "python": "true" } \ No newline at end of file diff --git a/home/runner/work/gradio/gradio/client/js/src/utils/run_history.d.ts b/home/runner/work/gradio/gradio/client/js/src/utils/run_history.d.ts new file mode 100644 index 00000000000..45a2c93d30d --- /dev/null +++ b/home/runner/work/gradio/gradio/client/js/src/utils/run_history.d.ts @@ -0,0 +1,63 @@ +import type { GradioEvent } from "../types"; +export type AppId = string | number | null | undefined; +/** + * Which history to read or write. `Config` satisfies this shape, so callers + * that hold one can pass it straight through. + */ +export interface RunHistoryScope { + app_id?: AppId; + /** The authenticated user, when the app uses `auth`. */ + username?: string | null; +} +export type RunStatus = "running" | "completed" | "failed"; +export interface StoredRunComponent { + type: string; + component_class_id: string; + props: Record; +} +export interface StoredRun { + id: string; + endpoint: string | number; + api_name: string; + fn_index: number; + page: string; + inputs: unknown; + outputs: unknown | null; + input_components?: (StoredRunComponent | null)[]; + output_components?: (StoredRunComponent | null)[]; + status: RunStatus; + error?: string; + started_at: string; + /** When the server started running the function, if it reported queueing. */ + process_started_at?: string; + completed_at?: string; + /** How long the function itself took, server-reported where available. */ + duration_ms?: number; + /** How long the run waited in the queue before the function started. */ + queued_ms?: number; + /** Whether the run produced its output in chunks, i.e. came from a generator. */ + streamed?: boolean; +} +interface StartRunOptions extends RunHistoryScope { + endpoint: string | number; + api_name: string; + fn_index: number; + inputs: unknown; + input_components?: (StoredRunComponent | null)[]; + output_components?: (StoredRunComponent | null)[]; +} +/** + * The URL of the run history page for an app. `root` never carries a trailing + * slash, so it cannot simply be concatenated with the path. + */ +export declare function run_history_url(root: string, api_prefix?: string): string; +export declare function read_run_history(scope: RunHistoryScope | null | undefined): StoredRun[]; +export declare function clear_run_history(scope: RunHistoryScope | null | undefined): void; +export declare function delete_run_history(scope: RunHistoryScope | null | undefined, id: string): void; +export declare function stage_run_history_replay(scope: RunHistoryScope | null | undefined, run: StoredRun): void; +export declare function consume_run_history_replay(scope: RunHistoryScope | null | undefined): StoredRun | null; +export declare function start_run_history(options: StartRunOptions): string | null; +export declare function update_run_inputs(scope: RunHistoryScope | null | undefined, id: string | null, inputs: unknown): void; +export declare function update_run_history(scope: RunHistoryScope | null | undefined, id: string | null, event: GradioEvent): void; +export declare function on_run_history_change(listener: () => void): () => void; +export {}; diff --git a/js/_spaces-test/CHANGELOG.md b/js/_spaces-test/CHANGELOG.md index ef245d129ec..121643cdd56 100644 --- a/js/_spaces-test/CHANGELOG.md +++ b/js/_spaces-test/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.0.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/theme@0.7.0 diff --git a/js/annotatedimage/CHANGELOG.md b/js/annotatedimage/CHANGELOG.md index 4caaed7a2d8..06dc4a871cb 100644 --- a/js/annotatedimage/CHANGELOG.md +++ b/js/annotatedimage/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.12.2 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/app/CHANGELOG.md b/js/app/CHANGELOG.md index 5c5924ecc75..c561aab2420 100644 --- a/js/app/CHANGELOG.md +++ b/js/app/CHANGELOG.md @@ -2,6 +2,12 @@ ## 2.3.0 +### Dependency updates + +- @gradio/client@2.5.0 + +## 2.3.0 + ### Features - [#13601](https://github.com/gradio-app/gradio/pull/13601) [`0ee5cc8`](https://github.com/gradio-app/gradio/commit/0ee5cc80e2915e5a1b074c892490a62f165cd80d) - Preserve browser-visible proxy origins for frontend assets and API requests, and retain app-level FastAPI root paths. Thanks @abidlabs! diff --git a/js/audio/CHANGELOG.md b/js/audio/CHANGELOG.md index a9ffe6c270d..7daa2077295 100644 --- a/js/audio/CHANGELOG.md +++ b/js/audio/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.24.2 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.24.2 + ### Fixes - [#13626](https://github.com/gradio-app/gradio/pull/13626) [`7d71469`](https://github.com/gradio-app/gradio/commit/7d714699ae9c47daabbd48a55f61e990c5bba1d7) - Reset audio playback position when the file is cleared or a new one is uploaded. Thanks @hysts! diff --git a/js/button/CHANGELOG.md b/js/button/CHANGELOG.md index b0ea43c9503..d5e390b0f34 100644 --- a/js/button/CHANGELOG.md +++ b/js/button/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.8.2 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/upload@0.18.2 diff --git a/js/chatbot/CHANGELOG.md b/js/chatbot/CHANGELOG.md index 60a1569e9ee..c578ec32cff 100644 --- a/js/chatbot/CHANGELOG.md +++ b/js/chatbot/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.32.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/core/CHANGELOG.md b/js/core/CHANGELOG.md index 16a803e3541..69a138687ef 100644 --- a/js/core/CHANGELOG.md +++ b/js/core/CHANGELOG.md @@ -1,5 +1,16 @@ # @gradio/core +## 1.11.0 + +### Features + +- [#13718](https://github.com/gradio-app/gradio/pull/13718) [`a9e8382`](https://github.com/gradio-app/gradio/commit/a9e8382c4f68e938b5fceef299d7539434c6063f) - Add browser-local run history and loading. Thanks @abidlabs! +- [#13751](https://github.com/gradio-app/gradio/pull/13751) [`1c8aa23`](https://github.com/gradio-app/gradio/commit/1c8aa23263ef1d3a641690395b8f0d816b593cc3) - Fix initial Spaces iframe resize after app render. Thanks @dawoodkhan82! + +### Dependency updates + +- @gradio/client@2.5.0 + ## 1.10.3 ### Fixes diff --git a/js/core/package.json b/js/core/package.json index 49e285eb156..92b8d44356b 100644 --- a/js/core/package.json +++ b/js/core/package.json @@ -1,6 +1,6 @@ { "name": "@gradio/core", - "version": "1.10.3", + "version": "1.11.0", "type": "module", "devDependencies": { "@gradio/accordion": "workspace:^", diff --git a/js/dataframe/CHANGELOG.md b/js/dataframe/CHANGELOG.md index 7d69b4cdf4e..c3804f9b29b 100644 --- a/js/dataframe/CHANGELOG.md +++ b/js/dataframe/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.24.2 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.24.2 + ### Fixes - [#13661](https://github.com/gradio-app/gradio/pull/13661) [`8647a06`](https://github.com/gradio-app/gradio/commit/8647a06d13a77aefb818565e8766474dae8eeb70) - Keep fullscreen component controls inside the visible viewport when the page has a scrollbar. Thanks @hysts! diff --git a/js/dataset/CHANGELOG.md b/js/dataset/CHANGELOG.md index 584246e4489..f47adecf959 100644 --- a/js/dataset/CHANGELOG.md +++ b/js/dataset/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.7.2 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.7.2 + ### Fixes - [#13644](https://github.com/gradio-app/gradio/pull/13644) [`f0abb1e`](https://github.com/gradio-app/gradio/commit/f0abb1ea8e61f4b886296365639b9fe0492012a9) - restore shared props lost during frontend prop partitioning. Thanks @dawoodkhan82! diff --git a/js/downloadbutton/CHANGELOG.md b/js/downloadbutton/CHANGELOG.md index 68df1c6a089..3aa150dd7ee 100644 --- a/js/downloadbutton/CHANGELOG.md +++ b/js/downloadbutton/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.5.2 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/button@0.8.2 diff --git a/js/file/CHANGELOG.md b/js/file/CHANGELOG.md index 6eef16c840b..c088924ec6a 100644 --- a/js/file/CHANGELOG.md +++ b/js/file/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.16.0 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.16.0 + ### Features - [#13329](https://github.com/gradio-app/gradio/pull/13329) [`7ac583a`](https://github.com/gradio-app/gradio/commit/7ac583a38a4c995d172033ff6e3700390201ff21) - Make builds go zoom zoom. Thanks @pngwn! diff --git a/js/fileexplorer/CHANGELOG.md b/js/fileexplorer/CHANGELOG.md index 59570d0c30b..2369db70e02 100644 --- a/js/fileexplorer/CHANGELOG.md +++ b/js/fileexplorer/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.8.0 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.8.0 + ### Features - [#13329](https://github.com/gradio-app/gradio/pull/13329) [`7ac583a`](https://github.com/gradio-app/gradio/commit/7ac583a38a4c995d172033ff6e3700390201ff21) - Make builds go zoom zoom. Thanks @pngwn! diff --git a/js/gallery/CHANGELOG.md b/js/gallery/CHANGELOG.md index 371f6614c43..6dfae67d6c6 100644 --- a/js/gallery/CHANGELOG.md +++ b/js/gallery/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.19.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/html/CHANGELOG.md b/js/html/CHANGELOG.md index 4747294af0f..11cb185a335 100644 --- a/js/html/CHANGELOG.md +++ b/js/html/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.13.2 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.13.2 + ### Fixes - [#13644](https://github.com/gradio-app/gradio/pull/13644) [`f0abb1e`](https://github.com/gradio-app/gradio/commit/f0abb1ea8e61f4b886296365639b9fe0492012a9) - restore shared props lost during frontend prop partitioning. Thanks @dawoodkhan82! diff --git a/js/image/CHANGELOG.md b/js/image/CHANGELOG.md index 0788823a89e..58cdae38703 100644 --- a/js/image/CHANGELOG.md +++ b/js/image/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.28.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/imageeditor/CHANGELOG.md b/js/imageeditor/CHANGELOG.md index ffffc1dcb53..0aa7ff51ad9 100644 --- a/js/imageeditor/CHANGELOG.md +++ b/js/imageeditor/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.20.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/imageslider/CHANGELOG.md b/js/imageslider/CHANGELOG.md index a61bd35760e..23a9e44f105 100644 --- a/js/imageslider/CHANGELOG.md +++ b/js/imageslider/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.7.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/model3D/CHANGELOG.md b/js/model3D/CHANGELOG.md index 1aa04711348..6618d326aa0 100644 --- a/js/model3D/CHANGELOG.md +++ b/js/model3D/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.18.2 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/multimodaltextbox/CHANGELOG.md b/js/multimodaltextbox/CHANGELOG.md index 32c04977097..d46f15a5fea 100644 --- a/js/multimodaltextbox/CHANGELOG.md +++ b/js/multimodaltextbox/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.14.1 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/simpleimage/CHANGELOG.md b/js/simpleimage/CHANGELOG.md index dea698ba5d3..bc2c08d2cbc 100644 --- a/js/simpleimage/CHANGELOG.md +++ b/js/simpleimage/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.10.2 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/spa/CHANGELOG.md b/js/spa/CHANGELOG.md index 0cb43fff0c1..721d311e608 100644 --- a/js/spa/CHANGELOG.md +++ b/js/spa/CHANGELOG.md @@ -1,5 +1,15 @@ # @self/spa +## 1.7.0 + +### Features + +- [#13718](https://github.com/gradio-app/gradio/pull/13718) [`a9e8382`](https://github.com/gradio-app/gradio/commit/a9e8382c4f68e938b5fceef299d7539434c6063f) - Add browser-local run history and loading. Thanks @abidlabs! + +### Dependency updates + +- @gradio/client@2.5.0 + ## 1.6.0 ### Features diff --git a/js/spa/package.json b/js/spa/package.json index 31df7545725..5d1f65cfd02 100644 --- a/js/spa/package.json +++ b/js/spa/package.json @@ -1,6 +1,6 @@ { "name": "@self/spa", - "version": "1.6.0", + "version": "1.7.0", "private": true, "type": "module", "scripts": { diff --git a/js/upload/CHANGELOG.md b/js/upload/CHANGELOG.md index 9ea2456eed6..040a70b566c 100644 --- a/js/upload/CHANGELOG.md +++ b/js/upload/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.18.2 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.18.2 + ### Features - [#13601](https://github.com/gradio-app/gradio/pull/13601) [`0ee5cc8`](https://github.com/gradio-app/gradio/commit/0ee5cc80e2915e5a1b074c892490a62f165cd80d) - Preserve browser-visible proxy origins for frontend assets and API requests, and retain app-level FastAPI root paths. Thanks @abidlabs! diff --git a/js/uploadbutton/CHANGELOG.md b/js/uploadbutton/CHANGELOG.md index c522e9d6274..aba13dde458 100644 --- a/js/uploadbutton/CHANGELOG.md +++ b/js/uploadbutton/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.10.2 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/upload@0.18.2 diff --git a/js/vibeeditor/CHANGELOG.md b/js/vibeeditor/CHANGELOG.md index 7435af22c56..505cd74385a 100644 --- a/js/vibeeditor/CHANGELOG.md +++ b/js/vibeeditor/CHANGELOG.md @@ -4,6 +4,12 @@ ### Dependency updates +- @gradio/client@2.5.0 + +## 0.3.13 + +### Dependency updates + - @gradio/client@2.4.0 - @gradio/utils@0.14.0 - @gradio/atoms@0.26.1 diff --git a/js/video/CHANGELOG.md b/js/video/CHANGELOG.md index 9dc57c20c55..5cea81c3431 100644 --- a/js/video/CHANGELOG.md +++ b/js/video/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.23.0 +### Dependency updates + +- @gradio/client@2.5.0 + +## 0.23.0 + ### Features - [#13329](https://github.com/gradio-app/gradio/pull/13329) [`7ac583a`](https://github.com/gradio-app/gradio/commit/7ac583a38a4c995d172033ff6e3700390201ff21) - Make builds go zoom zoom. Thanks @pngwn! diff --git a/js/workflowcanvas/CHANGELOG.md b/js/workflowcanvas/CHANGELOG.md index 419b9b0c305..b59dafa95d7 100644 --- a/js/workflowcanvas/CHANGELOG.md +++ b/js/workflowcanvas/CHANGELOG.md @@ -1,5 +1,15 @@ # @gradio/workflowcanvas +## 0.8.1 + +### Features + +- [#13750](https://github.com/gradio-app/gradio/pull/13750) [`e0f0790`](https://github.com/gradio-app/gradio/commit/e0f0790b6fbe591cfb6de968316596806f5b59dc) - Workflow: only inline app-owned files, and keep opened HTML off the app origin. Thanks @abidlabs! + +### Dependency updates + +- @gradio/client@2.5.0 + ## 0.8.0 ### Features diff --git a/js/workflowcanvas/package.json b/js/workflowcanvas/package.json index 0db5ae5569a..5f883220c72 100644 --- a/js/workflowcanvas/package.json +++ b/js/workflowcanvas/package.json @@ -1,6 +1,6 @@ { "name": "@gradio/workflowcanvas", - "version": "0.8.0", + "version": "0.8.1", "description": "Gradio Workflow Canvas component", "type": "module", "author": "",