Skip to content

Commit 7fa9b6f

Browse files
chore: update versions (#10316)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent e742dcc commit 7fa9b6f

File tree

126 files changed

+613
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+613
-118
lines changed

.changeset/funny-heads-play.md

-6
This file was deleted.

.changeset/funny-pets-win.md

-6
This file was deleted.

.changeset/long-snakes-notice.md

-6
This file was deleted.

.changeset/metal-bugs-follow.md

-6
This file was deleted.

.changeset/metal-cows-remain.md

-7
This file was deleted.

.changeset/rich-ducks-grow.md

-7
This file was deleted.

.changeset/some-cases-notice.md

-5
This file was deleted.

.changeset/sour-apples-boil.md

-8
This file was deleted.

.changeset/tall-geese-hammer.md

-5
This file was deleted.

.changeset/wise-moose-exist.md

-7
This file was deleted.

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# gradio
22

3+
## 5.12.0
4+
5+
### Features
6+
7+
- [#10323](https://github.com/gradio-app/gradio/pull/10323) [`391a4d0`](https://github.com/gradio-app/gradio/commit/391a4d09a90406b768eee30e1c12a0bc84fc27a2) - Add `.previous_value` to `gr.EditData`. Thanks @abidlabs!
8+
- [#10270](https://github.com/gradio-app/gradio/pull/10270) [`bb11a2a`](https://github.com/gradio-app/gradio/commit/bb11a2a702ca04fde245e7d54d155cbcbde7791e) - [ZeroGPU] Handshake-based postMessage. Thanks @cbensimon!
9+
- [#10305](https://github.com/gradio-app/gradio/pull/10305) [`be40307`](https://github.com/gradio-app/gradio/commit/be40307d1d11421e01bf91fa5e05ec4ab97b09d8) - Add support for thinking LLMs directly in `gr.ChatInterface`. Thanks @abidlabs!
10+
- [#10226](https://github.com/gradio-app/gradio/pull/10226) [`58b8391`](https://github.com/gradio-app/gradio/commit/58b839196e17776cbd0d48997905496f7746d31f) - Improve tool UI and support nested thoughts. Thanks @hannahblair!
11+
12+
### Fixes
13+
14+
- [#10327](https://github.com/gradio-app/gradio/pull/10327) [`e0cb47f`](https://github.com/gradio-app/gradio/commit/e0cb47f0c5040049fb942a381c0335de4bf77d67) - Fix webcam. Thanks @Col0ring!
15+
- [#10308](https://github.com/gradio-app/gradio/pull/10308) [`3543418`](https://github.com/gradio-app/gradio/commit/354341826a629d06640ce3ec5e5881bcccd6e339) - ImageEditor: Trigger input event even if change event not defined. Thanks @freddyaboulton!
16+
- [#10322](https://github.com/gradio-app/gradio/pull/10322) [`d2691e7`](https://github.com/gradio-app/gradio/commit/d2691e7436f722781ee61db43ce3f2d5ccc3e253) - Quick Fix: Multimodal microphone audio not clearing. Thanks @dawoodkhan82!
17+
- [#10331](https://github.com/gradio-app/gradio/pull/10331) [`decb594`](https://github.com/gradio-app/gradio/commit/decb5944552e951525c283e069e116c1ff6b6807) - Update guide for `gr.load_chat` and allow `**kwargs`. Thanks @abidlabs!
18+
- [#10332](https://github.com/gradio-app/gradio/pull/10332) [`e742dcc`](https://github.com/gradio-app/gradio/commit/e742dcccb376692c9ddd5a6c251080e7c5936574) - Allow users to add a custom API route. Thanks @aliabid94!
19+
- [#10324](https://github.com/gradio-app/gradio/pull/10324) [`343503d`](https://github.com/gradio-app/gradio/commit/343503d62eabab7af1a8a524d16a8e076a75dd67) - Support `gr.load()`-ing Gradio apps with `Blocks.load()` events. Thanks @abidlabs!
20+
321
## 5.11.0
422

523
### Features

client/js/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @gradio/client
22

3+
## 1.10.0
4+
5+
### Features
6+
7+
- [#10270](https://github.com/gradio-app/gradio/pull/10270) [`bb11a2a`](https://github.com/gradio-app/gradio/commit/bb11a2a702ca04fde245e7d54d155cbcbde7791e) - [ZeroGPU] Handshake-based postMessage. Thanks @cbensimon!
8+
9+
### Fixes
10+
11+
- [#10332](https://github.com/gradio-app/gradio/pull/10332) [`e742dcc`](https://github.com/gradio-app/gradio/commit/e742dcccb376692c9ddd5a6c251080e7c5936574) - Allow users to add a custom API route. Thanks @aliabid94!
12+
313
## 1.9.0
414

515
### Features

client/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/client",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"description": "Gradio API client",
55
"type": "module",
66
"main": "dist/index.js",

client/python/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# gradio_client
22

3+
## 1.5.4
4+
5+
### Fixes
6+
7+
- [#10332](https://github.com/gradio-app/gradio/pull/10332) [`e742dcc`](https://github.com/gradio-app/gradio/commit/e742dcccb376692c9ddd5a6c251080e7c5936574) - Allow users to add a custom API route. Thanks @aliabid94!
8+
39
## 1.5.3
410

511
### Features

client/python/gradio_client/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# gradio_client
22

3+
## 1.5.4
4+
5+
### Fixes
6+
7+
- [#10332](https://github.com/gradio-app/gradio/pull/10332) [`e742dcc`](https://github.com/gradio-app/gradio/commit/e742dcccb376692c9ddd5a6c251080e7c5936574) - Allow users to add a custom API route. Thanks @aliabid94!
8+
39
## 1.5.3
410

511
### Features

client/python/gradio_client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gradio_client",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "",
55
"python": "true",
66
"main_changeset": true,

gradio/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# gradio
22

3+
## 5.12.0
4+
5+
### Features
6+
7+
- [#10323](https://github.com/gradio-app/gradio/pull/10323) [`391a4d0`](https://github.com/gradio-app/gradio/commit/391a4d09a90406b768eee30e1c12a0bc84fc27a2) - Add `.previous_value` to `gr.EditData`. Thanks @abidlabs!
8+
- [#10270](https://github.com/gradio-app/gradio/pull/10270) [`bb11a2a`](https://github.com/gradio-app/gradio/commit/bb11a2a702ca04fde245e7d54d155cbcbde7791e) - [ZeroGPU] Handshake-based postMessage. Thanks @cbensimon!
9+
- [#10305](https://github.com/gradio-app/gradio/pull/10305) [`be40307`](https://github.com/gradio-app/gradio/commit/be40307d1d11421e01bf91fa5e05ec4ab97b09d8) - Add support for thinking LLMs directly in `gr.ChatInterface`. Thanks @abidlabs!
10+
- [#10226](https://github.com/gradio-app/gradio/pull/10226) [`58b8391`](https://github.com/gradio-app/gradio/commit/58b839196e17776cbd0d48997905496f7746d31f) - Improve tool UI and support nested thoughts. Thanks @hannahblair!
11+
12+
### Fixes
13+
14+
- [#10327](https://github.com/gradio-app/gradio/pull/10327) [`e0cb47f`](https://github.com/gradio-app/gradio/commit/e0cb47f0c5040049fb942a381c0335de4bf77d67) - Fix webcam. Thanks @Col0ring!
15+
- [#10308](https://github.com/gradio-app/gradio/pull/10308) [`3543418`](https://github.com/gradio-app/gradio/commit/354341826a629d06640ce3ec5e5881bcccd6e339) - ImageEditor: Trigger input event even if change event not defined. Thanks @freddyaboulton!
16+
- [#10322](https://github.com/gradio-app/gradio/pull/10322) [`d2691e7`](https://github.com/gradio-app/gradio/commit/d2691e7436f722781ee61db43ce3f2d5ccc3e253) - Quick Fix: Multimodal microphone audio not clearing. Thanks @dawoodkhan82!
17+
- [#10331](https://github.com/gradio-app/gradio/pull/10331) [`decb594`](https://github.com/gradio-app/gradio/commit/decb5944552e951525c283e069e116c1ff6b6807) - Update guide for `gr.load_chat` and allow `**kwargs`. Thanks @abidlabs!
18+
- [#10332](https://github.com/gradio-app/gradio/pull/10332) [`e742dcc`](https://github.com/gradio-app/gradio/commit/e742dcccb376692c9ddd5a6c251080e7c5936574) - Allow users to add a custom API route. Thanks @aliabid94!
19+
- [#10324](https://github.com/gradio-app/gradio/pull/10324) [`343503d`](https://github.com/gradio-app/gradio/commit/343503d62eabab7af1a8a524d16a8e076a75dd67) - Support `gr.load()`-ing Gradio apps with `Blocks.load()` events. Thanks @abidlabs!
20+
321
## 5.11.0
422

523
### Features

gradio/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gradio",
3-
"version": "5.11.0",
3+
"version": "5.12.0",
44
"description": "",
55
"python": "true"
66
}

js/_spaces-test/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
### Dependency updates
66

7+
- @gradio/client@1.10.0
8+
9+
## 0.0.1
10+
11+
### Dependency updates
12+
713
- @gradio/client@1.9.0
814

915
## 0.0.1

js/_website/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# website
22

3+
## 0.46.0
4+
5+
### Features
6+
7+
- [#10305](https://github.com/gradio-app/gradio/pull/10305) [`be40307`](https://github.com/gradio-app/gradio/commit/be40307d1d11421e01bf91fa5e05ec4ab97b09d8) - Add support for thinking LLMs directly in `gr.ChatInterface`. Thanks @abidlabs!
8+
9+
### Dependency updates
10+
11+
- @gradio/code@0.10.12
12+
- @gradio/paramviewer@0.6.3
13+
314
## 0.45.0
415

516
### Features

js/_website/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "website",
3-
"version": "0.45.0",
3+
"version": "0.46.0",
44
"private": true,
55
"scripts": {
66
"dev": "pip install boto3 && python generate_jsons/generate.py && vite dev",

js/accordion/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @gradio/accordion
22

3+
## 0.5.5
4+
5+
### Dependency updates
6+
7+
- @gradio/atoms@0.13.1
8+
- @gradio/statustracker@0.10.1
9+
- @gradio/column@0.2.0
10+
311
## 0.5.4
412

513
### Dependency updates

js/accordion/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/accordion",
3-
"version": "0.5.4",
3+
"version": "0.5.5",
44
"description": "Gradio UI packages",
55
"type": "module",
66
"author": "",

js/annotatedimage/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @gradio/annotatedimage
22

3+
## 0.9.2
4+
5+
### Dependency updates
6+
7+
- @gradio/atoms@0.13.1
8+
- @gradio/statustracker@0.10.1
9+
- @gradio/client@1.10.0
10+
- @gradio/icons@0.10.0
11+
- @gradio/upload@0.14.5
12+
313
## 0.9.1
414

515
### Dependency updates

js/annotatedimage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/annotatedimage",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "Gradio UI packages",
55
"type": "module",
66
"author": "",

js/app/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @self/app
22

3+
## 1.46.0
4+
5+
### Features
6+
7+
- [#10270](https://github.com/gradio-app/gradio/pull/10270) [`bb11a2a`](https://github.com/gradio-app/gradio/commit/bb11a2a702ca04fde245e7d54d155cbcbde7791e) - [ZeroGPU] Handshake-based postMessage. Thanks @cbensimon!
8+
9+
### Dependency updates
10+
11+
- @gradio/client@1.10.0
12+
- @gradio/core@0.6.1
13+
314
## 1.45.0
415

516
### Features

js/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@self/app",
3-
"version": "1.45.0",
3+
"version": "1.46.0",
44
"private": true,
55
"scripts": {
66
"dev": "vite dev",

js/atoms/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @gradio/atoms
22

3+
## 0.13.1
4+
5+
### Dependency updates
6+
7+
- @gradio/icons@0.10.0
8+
39
## 0.13.0
410

511
### Features

js/atoms/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/atoms",
3-
"version": "0.13.0",
3+
"version": "0.13.1",
44
"description": "Gradio UI packages",
55
"type": "module",
66
"main": "src/index.ts",

js/audio/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @gradio/audio
22

3+
## 0.15.1
4+
5+
### Dependency updates
6+
7+
- @gradio/atoms@0.13.1
8+
- @gradio/statustracker@0.10.1
9+
- @gradio/client@1.10.0
10+
- @gradio/icons@0.10.0
11+
- @gradio/upload@0.14.5
12+
- @gradio/button@0.4.1
13+
314
## 0.15.0
415

516
### Features

js/audio/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/audio",
3-
"version": "0.15.0",
3+
"version": "0.15.1",
44
"description": "Gradio UI packages",
55
"type": "module",
66
"author": "",

js/box/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @gradio/box
22

3+
## 0.2.10
4+
5+
### Dependency updates
6+
7+
- @gradio/atoms@0.13.1
8+
39
## 0.2.9
410

511
### Dependency updates

js/box/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/box",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"description": "Gradio UI packages",
55
"type": "module",
66
"author": "",

js/button/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @gradio/button
22

3+
## 0.4.1
4+
5+
### Dependency updates
6+
7+
- @gradio/client@1.10.0
8+
- @gradio/upload@0.14.5
9+
310
## 0.4.0
411

512
### Features

js/button/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gradio/button",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Gradio UI packages",
55
"type": "module",
66
"author": "",

0 commit comments

Comments
 (0)