@gradio/client 0.7.1 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# @gradio/client
|
2
2
|
|
3
|
+
## 0.7.2
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#6327](https://github.com/gradio-app/gradio/pull/6327) [`bca6c2c80`](https://github.com/gradio-app/gradio/commit/bca6c2c80f7e5062427019de45c282238388af95) - Restore query parameters in request. Thanks [@aliabid94](https://github.com/aliabid94)!
|
8
|
+
|
3
9
|
## 0.7.1
|
4
10
|
|
5
11
|
### Features
|
package/dist/index.js
CHANGED
@@ -728,7 +728,7 @@ function api_factory(fetch_implementation, WebSocket_factory) {
|
|
728
728
|
host,
|
729
729
|
config.path,
|
730
730
|
true
|
731
|
-
)}/queue/join?${params}`
|
731
|
+
)}/queue/join?${url_params ? url_params + "&" : ""}${params}`
|
732
732
|
);
|
733
733
|
eventSource = new EventSource(url);
|
734
734
|
eventSource.onmessage = async function(event) {
|
package/package.json
CHANGED