mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
chore: update versions (#5817)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
796145e2c4
commit
1265a9ac13
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/client": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix calls to the component server so that `gr.FileExplorer` works on Spaces
|
@ -1,5 +1,11 @@
|
||||
# gradio
|
||||
|
||||
## 3.47.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5816](https://github.com/gradio-app/gradio/pull/5816) [`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb) - Fix calls to the component server so that `gr.FileExplorer` works on Spaces. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 3.47.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/client
|
||||
|
||||
## 0.5.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5816](https://github.com/gradio-app/gradio/pull/5816) [`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb) - Fix calls to the component server so that `gr.FileExplorer` works on Spaces. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/client",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"description": "Gradio API client",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# gradio
|
||||
|
||||
## 3.47.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5816](https://github.com/gradio-app/gradio/pull/5816) [`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb) - Fix calls to the component server so that `gr.FileExplorer` works on Spaces. Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
|
||||
## 3.47.0
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio",
|
||||
"version": "3.47.0",
|
||||
"version": "3.47.1",
|
||||
"description": "",
|
||||
"python": "true"
|
||||
}
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/app
|
||||
|
||||
## 1.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb)]:
|
||||
- @gradio/client@0.5.1
|
||||
- @gradio/file@0.2.1
|
||||
- @gradio/fileexplorer@0.2.1
|
||||
- @gradio/uploadbutton@0.0.11
|
||||
|
||||
## 1.7.0
|
||||
|
||||
### Highlights
|
||||
@ -8,7 +18,7 @@
|
||||
|
||||
Thanks to a new capability that allows components to communicate directly with the server _without_ passing data via the value, we have created a new `FileExplorer` component.
|
||||
|
||||
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
|
||||
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
|
||||
|
||||
Users can then navigate the virtual filesystem and select files which will be accessible in your predict function. This component will allow developers to build more complex spaces, with more flexible input options.
|
||||
|
||||
@ -16,17 +26,17 @@ Users can then navigate the virtual filesystem and select files which will be ac
|
||||
|
||||
For more information check the [`FileExplorer` documentation](https://gradio.app/docs/fileexplorer).
|
||||
|
||||
Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#5794](https://github.com/gradio-app/gradio/pull/5794) [`f096c3ae1`](https://github.com/gradio-app/gradio/commit/f096c3ae168c0df00f90fe131c1e48c572e0574b) - Throw helpful error when media devices are not found. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#5794](https://github.com/gradio-app/gradio/pull/5794) [`f096c3ae1`](https://github.com/gradio-app/gradio/commit/f096c3ae168c0df00f90fe131c1e48c572e0574b) - Throw helpful error when media devices are not found. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
|
||||
## 1.6.4
|
||||
|
||||
### Features
|
||||
|
||||
- [#5124](https://github.com/gradio-app/gradio/pull/5124) [`6e56a0d9b`](https://github.com/gradio-app/gradio/commit/6e56a0d9b0c863e76c69e1183d9d40196922b4cd) - Lite: Websocket queueing. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
- [#5124](https://github.com/gradio-app/gradio/pull/5124) [`6e56a0d9b`](https://github.com/gradio-app/gradio/commit/6e56a0d9b0c863e76c69e1183d9d40196922b4cd) - Lite: Websocket queueing. Thanks [@whitphx](https://github.com/whitphx)!
|
||||
|
||||
## 1.6.3
|
||||
|
||||
@ -295,4 +305,4 @@ Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
||||
|
||||
- [#4995](https://github.com/gradio-app/gradio/pull/4995) [`3f8c210b`](https://github.com/gradio-app/gradio/commit/3f8c210b01ef1ceaaf8ee73be4bf246b5b745bbf) - Implement left and right click in `Gallery` component and show implicit images in `Gallery` grid. Thanks [@hannahblair](https://github.com/hannahblair)!
|
||||
- [#4993](https://github.com/gradio-app/gradio/pull/4993) [`dc07a9f9`](https://github.com/gradio-app/gradio/commit/dc07a9f947de44b419d8384987a02dcf94977851) - Bringing back the "Add download button for audio" PR by [@leuryr](https://github.com/leuryr). Thanks [@abidlabs](https://github.com/abidlabs)!
|
||||
- [#4979](https://github.com/gradio-app/gradio/pull/4979) [`44ac8ad0`](https://github.com/gradio-app/gradio/commit/44ac8ad08d82ea12c503dde5c78f999eb0452de2) - Allow setting sketch color default. Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
- [#4979](https://github.com/gradio-app/gradio/pull/4979) [`44ac8ad0`](https://github.com/gradio-app/gradio/commit/44ac8ad08d82ea12c503dde5c78f999eb0452de2) - Allow setting sketch color default. Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/app",
|
||||
"version": "1.7.0",
|
||||
"version": "1.7.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/file
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb)]:
|
||||
- @gradio/client@0.5.1
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Highlights
|
||||
@ -8,7 +15,7 @@
|
||||
|
||||
Thanks to a new capability that allows components to communicate directly with the server _without_ passing data via the value, we have created a new `FileExplorer` component.
|
||||
|
||||
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
|
||||
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
|
||||
|
||||
Users can then navigate the virtual filesystem and select files which will be accessible in your predict function. This component will allow developers to build more complex spaces, with more flexible input options.
|
||||
|
||||
@ -16,7 +23,7 @@ Users can then navigate the virtual filesystem and select files which will be ac
|
||||
|
||||
For more information check the [`FileExplorer` documentation](https://gradio.app/docs/fileexplorer).
|
||||
|
||||
Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
|
||||
## 0.1.6
|
||||
|
||||
@ -122,4 +129,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
||||
- Updated dependencies []:
|
||||
- @gradio/utils@0.0.2
|
||||
- @gradio/atoms@0.0.2
|
||||
- @gradio/upload@0.0.2
|
||||
- @gradio/upload@0.0.2
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/file",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "./index.svelte",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/fileexplorer
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb)]:
|
||||
- @gradio/client@0.5.1
|
||||
- @gradio/file@0.2.1
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Highlights
|
||||
@ -8,7 +16,7 @@
|
||||
|
||||
Thanks to a new capability that allows components to communicate directly with the server _without_ passing data via the value, we have created a new `FileExplorer` component.
|
||||
|
||||
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
|
||||
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
|
||||
|
||||
Users can then navigate the virtual filesystem and select files which will be accessible in your predict function. This component will allow developers to build more complex spaces, with more flexible input options.
|
||||
|
||||
@ -16,4 +24,4 @@ Users can then navigate the virtual filesystem and select files which will be ac
|
||||
|
||||
For more information check the [`FileExplorer` documentation](https://gradio.app/docs/fileexplorer).
|
||||
|
||||
Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
Thanks [@aliabid94](https://github.com/aliabid94)!
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/fileexplorer",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "./index.svelte",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/uploadbutton
|
||||
|
||||
## 0.0.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`796145e2c`](https://github.com/gradio-app/gradio/commit/796145e2c48c4087bec17f8ec0be4ceee47170cb)]:
|
||||
- @gradio/client@0.5.1
|
||||
|
||||
## 0.0.10
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/uploadbutton",
|
||||
"version": "0.0.10",
|
||||
"version": "0.0.11",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "index.svelte",
|
||||
|
Loading…
x
Reference in New Issue
Block a user