-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update versions #5038
Merged
Merged
chore: update versions #5038
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
All the demos for this PR have been deployed at https://huggingface.co/spaces/gradio-pr-deploys/pr-5038-all-demos You can install the changes in this PR by running: pip install https://gradio-builds.s3.amazonaws.com/de7941f96f618124f9e153515e26e1730d9224bf/gradio-3.39.0-py3-none-any.whl |
pngwn
force-pushed
the
changeset-release/main
branch
from
July 28, 2023 21:03
032c355
to
f980588
Compare
🎉 Chromatic build completed! There are 0 visual changes to review. |
pngwn
force-pushed
the
changeset-release/main
branch
from
July 28, 2023 22:26
f980588
to
ca5d535
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
July 30, 2023 04:50
ca5d535
to
ba6ce76
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
July 31, 2023 12:36
ba6ce76
to
cde9c38
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
July 31, 2023 14:58
cde9c38
to
c8b1489
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
July 31, 2023 17:35
c8b1489
to
2bdca72
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 1, 2023 11:47
2bdca72
to
e911acb
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 1, 2023 16:19
e911acb
to
fb96794
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 1, 2023 16:26
fb96794
to
f687165
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 1, 2023 16:29
f687165
to
1ebc911
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 1, 2023 17:17
1ebc911
to
7e5cbec
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 1, 2023 20:06
7e5cbec
to
48fb119
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 2, 2023 16:36
48fb119
to
0dbeab8
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 3, 2023 19:32
239b4fb
to
9cbcd83
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 3, 2023 21:04
9cbcd83
to
f7575f1
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 9, 2023 19:12
f7575f1
to
d01b0f7
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 9, 2023 19:14
d01b0f7
to
609ee05
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 9, 2023 20:41
609ee05
to
a79a99e
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 9, 2023 23:06
a79a99e
to
26e7196
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 10, 2023 14:15
26e7196
to
5cf1291
Compare
pngwn
force-pushed
the
changeset-release/main
branch
from
August 10, 2023 15:05
5cf1291
to
2d890b2
Compare
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@gradio/[email protected]
Features
61129052
- Update dependency esbuild to ^0.19.0. Thanks @renovate!8b4eb8ca
- JS Client: Fixes cannot read properties of null (reading 'is_file'). Thanks @raymondtri!Fixes
67265a58
- Allow supporting >1000 files ingr.File()
andgr.UploadButton()
. Thanks @abidlabs![email protected]
Highlights
Client.predict will now return the final output for streaming endpoints (#5057
35856f8b
)This is a breaking change (for gradio_client only)!
Previously,
Client.predict
would only return the first output of an endpoint that streamed results. This was causing confusion for developers that wanted to call these streaming demos via the client.We realize that developers using the client don't know the internals of whether a demo streams or not, so we're changing the behavior of predict to match developer expectations.
Using
Client.predict
will now return the final output of a streaming endpoint. This will make it even easier to use gradio apps via the client.Thanks @freddyaboulton!
Features
2745075a
- Add deploy_discord to docs. Thanks @freddyaboulton!Fixes
136adc9c
- Ensuregradio_client
is backwards compatible withgradio==3.24.1
. Thanks @abidlabs![email protected]
Highlights
Client.predict will now return the final output for streaming endpoints (#5057
35856f8b
)This is a breaking change (for gradio_client only)!
Previously,
Client.predict
would only return the first output of an endpoint that streamed results. This was causing confusion for developers that wanted to call these streaming demos via the client.We realize that developers using the client don't know the internals of whether a demo streams or not, so we're changing the behavior of predict to match developer expectations.
Using
Client.predict
will now return the final output of a streaming endpoint. This will make it even easier to use gradio apps via the client.Thanks @freddyaboulton!
Features
d7f83823
- solve how can I config root_path dynamically? how can I config root_path dynamically? #4968. Thanks @eastonsuo!6693660a
- Add download button to selected images inGallery
. Thanks @hannahblair!61129052
- Update dependency esbuild to ^0.19.0. Thanks @renovate!80be7a1c
- chatbot conversation nodes can contain a copy button. Thanks @fazpu!0b74a159
- Useimportlib
in favor of deprecatedpkg_resources
. Thanks @jayceslesar!3b9494f5
- Lite: Fix the analytics module to use asyncio to work in the Wasm env. Thanks @whitphx!5244c587
- Allow new lines inHighlightedText
with/n
and preserve whitespace. Thanks @hannahblair!2745075a
- Add deploy_discord to docs. Thanks @freddyaboulton!0dc49b4c
- Add support for async functions and async generators togr.ChatInterface
. Thanks @abidlabs!883ac364
- Addstep
param toNumber
. Thanks @hannahblair!22aa5eba
- Use font size--text-md
for<code>
in Chatbot messages. Thanks @jaywonchung!f5539c76
- Enhancement: Add focus event to textbox and number component. Thanks @JodyZ0203!34f6b22e
- Strip leading and trailing spaces from username in login route. Thanks @sweep-ai!144df459
- Addshow_edit_button
param togr.Audio
. Thanks @hannahblair!eaa1ce14
- Enhancing Tamil Translation: Language Refinement 🌟. Thanks @sanjaiyan-dev!8b4eb8ca
- JS Client: Fixes cannot read properties of null (reading 'is_file'). Thanks @raymondtri!e6317d77
- Update dependency extendable-media-recorder to v8. Thanks @renovate!13e47835
- chore(deps): update dependency extendable-media-recorder to v8. Thanks @renovate!37caa2e0
- Add icon and link params togr.Button
. Thanks @hannahblair!Fixes
7d897165
-gr.Dropdown
now has correct behavior in static mode as well as when an option is selected. Thanks @abidlabs!667875b2
- Live audio streaming outputhighlight:
Now supports loading streamed outputs
Allows users to use generators to stream audio out, yielding consecutive chunks of audio. Requires
streaming=True
to be set on the output audio.From the backend, streamed outputs are served from the
/stream/
endpoint instead of the/file/
endpoint. Currently just used to serve audio streaming output. The output JSON will haveis_stream
:true
, instead ofis_file
:true
in the file data object. Thanks @aliabid94!1b017e68
- Addinteractive
args togr.ColorPicker
. Thanks @hannahblair!56d2609d
- Reset textbox value to empty string when value is None. Thanks @hannahblair!67265a58
- Allow supporting >1000 files ingr.File()
andgr.UploadButton()
. Thanks @abidlabs!80727bbe
- Fix dataset features and dataset preview for HuggingFaceDatasetSaver. Thanks @freddyaboulton!620e4645
-gr.Dropdown()
now supports values with arbitrary characters and doesn't clear value when re-focused. Thanks @abidlabs!136adc9c
- Ensuregradio_client
is backwards compatible withgradio==3.24.1
. Thanks @abidlabs!97d804c7
- [Spaces] ZeroGPU Queue fix. Thanks @cbensimon!cd1353fa
- Fixes the display of minutes in the video player. Thanks @abidlabs!b84a35b7
- Add icon and link to DuplicateButton. Thanks @aliabd!f6c491b0
- highlightedtext throws an error basing on model. Thanks @rajeunoia!@gradio/[email protected]
Patch Changes
667875b2
]:@gradio/[email protected]
Patch Changes
667875b2
]:@gradio/[email protected]
Patch Changes
667875b2
,37caa2e0
]:@gradio/[email protected]
Patch Changes
61129052
,667875b2
,67265a58
,8b4eb8ca
]:@gradio/[email protected]
Patch Changes
667875b2
]:@gradio/[email protected]
Patch Changes
667875b2
]:@gradio/[email protected]
Patch Changes
667875b2
]:@gradio/[email protected]
Patch Changes
61129052
,667875b2
,67265a58
,8b4eb8ca
,37caa2e0
]:[email protected]
Features
2745075a
- Add deploy_discord to docs. Thanks @freddyaboulton!Fixes
b84a35b7
- Add icon and link to DuplicateButton. Thanks @aliabd!42488c07
- Correct gradio version on website. Thanks @aliabd!@gradio/[email protected]
Highlights
Client.predict will now return the final output for streaming endpoints (#5057
35856f8b
)This is a breaking change (for gradio_client only)!
Previously,
Client.predict
would only return the first output of an endpoint that streamed results. This was causing confusion for developers that wanted to call these streaming demos via the client.We realize that developers using the client don't know the internals of whether a demo streams or not, so we're changing the behavior of predict to match developer expectations.
Using
Client.predict
will now return the final output of a streaming endpoint. This will make it even easier to use gradio apps via the client.Thanks @freddyaboulton!
Features
6693660a
- Add download button to selected images inGallery
. Thanks @hannahblair!5244c587
- Allow new lines inHighlightedText
with/n
and preserve whitespace. Thanks @hannahblair!883ac364
- Addstep
param toNumber
. Thanks @hannahblair!f5539c76
- Enhancement: Add focus event to textbox and number component. Thanks @JodyZ0203!eaa1ce14
- Enhancing Tamil Translation: Language Refinement 🌟. Thanks @sanjaiyan-dev!@gradio/[email protected]
Features
144df459
- Addshow_edit_button
param togr.Audio
. Thanks @hannahblair!e6317d77
- Update dependency extendable-media-recorder to v8. Thanks @renovate!13e47835
- chore(deps): update dependency extendable-media-recorder to v8. Thanks @renovate!@gradio/[email protected]
Features
37caa2e0
- Add icon and link params togr.Button
. Thanks @hannahblair!@gradio/[email protected]
Features
80be7a1c
- chatbot conversation nodes can contain a copy button. Thanks @fazpu!22aa5eba
- Use font size--text-md
for<code>
in Chatbot messages. Thanks @jaywonchung!@gradio/[email protected]
Fixes
1b017e68
- Addinteractive
args togr.ColorPicker
. Thanks @hannahblair!@gradio/[email protected]
Fixes
7d897165
-gr.Dropdown
now has correct behavior in static mode as well as when an option is selected. Thanks @abidlabs!620e4645
-gr.Dropdown()
now supports values with arbitrary characters and doesn't clear value when re-focused. Thanks @abidlabs!@gradio/[email protected]
Features
6693660a
- Add download button to selected images inGallery
. Thanks @hannahblair!@gradio/[email protected]
Features
5244c587
- Allow new lines inHighlightedText
with/n
and preserve whitespace. Thanks @hannahblair!@gradio/[email protected]
Features
883ac364
- Addstep
param toNumber
. Thanks @hannahblair!f5539c76
- Enhancement: Add focus event to textbox and number component. Thanks @JodyZ0203!@gradio/[email protected]
Features
f5539c76
- Enhancement: Add focus event to textbox and number component. Thanks @JodyZ0203!Fixes
56d2609d
- Reset textbox value to empty string when value is None. Thanks @hannahblair!@gradio/[email protected]
Fixes
667875b2
- Live audio streaming outputhighlight:
Now supports loading streamed outputs
Allows users to use generators to stream audio out, yielding consecutive chunks of audio. Requires
streaming=True
to be set on the output audio.From the backend, streamed outputs are served from the
/stream/
endpoint instead of the/file/
endpoint. Currently just used to serve audio streaming output. The output JSON will haveis_stream
:true
, instead ofis_file
:true
in the file data object. Thanks @aliabid94!@gradio/[email protected]
Fixes
cd1353fa
- Fixes the display of minutes in the video player. Thanks @abidlabs!