publish new versions (#2534)

Co-authored-by: amrbashir <48618675+amrbashir@users.noreply.github.com>
fix/upload/reqwest-features http-js-v2.4.1
github-actions[bot] 3 months ago committed by GitHub
parent d3183aa99d
commit 5347de8db9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +0,0 @@
---
"http": patch
"http-js": patch
---
Fix `fetch` blocking until the whole response is read even if it was a streaming response.

4
Cargo.lock generated

@ -206,7 +206,7 @@ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
[[package]]
name = "api"
version = "2.0.21"
version = "2.0.22"
dependencies = [
"log",
"serde",
@ -6705,7 +6705,7 @@ dependencies = [
[[package]]
name = "tauri-plugin-http"
version = "2.4.0"
version = "2.4.1"
dependencies = [
"data-url",
"http",

@ -1,5 +1,11 @@
# Changelog
## \[2.0.18]
### Dependencies
- Upgraded to `http-js@2.4.1`
## \[2.0.17]
### Dependencies

@ -1,7 +1,7 @@
{
"name": "api",
"private": true,
"version": "2.0.17",
"version": "2.0.18",
"type": "module",
"scripts": {
"dev": "vite --clearScreen false",
@ -20,7 +20,7 @@
"@tauri-apps/plugin-geolocation": "^2.2.0",
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
"@tauri-apps/plugin-haptics": "^2.2.0",
"@tauri-apps/plugin-http": "^2.4.0",
"@tauri-apps/plugin-http": "^2.4.1",
"@tauri-apps/plugin-nfc": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.2",
"@tauri-apps/plugin-opener": "^2.2.6",

@ -1,5 +1,11 @@
# Changelog
## \[2.0.22]
### Dependencies
- Upgraded to `http@2.4.1`
## \[2.0.21]
### Dependencies

@ -1,7 +1,7 @@
[package]
name = "api"
publish = false
version = "2.0.21"
version = "2.0.22"
description = "An example Tauri Application showcasing the api"
edition = "2021"
rust-version = { workspace = true }
@ -27,7 +27,7 @@ tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager",
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.0" }
tauri-plugin-http = { path = "../../../plugins/http", features = [
"multipart",
], version = "2.4.0" }
], version = "2.4.1" }
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.2", features = [
"windows7-compat",
] }

@ -1,5 +1,9 @@
# Changelog
## \[2.4.1]
- [`d3183aa9`](https://github.com/tauri-apps/plugins-workspace/commit/d3183aa99da7ca67e627394132ddeb3b85ccef06) ([#2522](https://github.com/tauri-apps/plugins-workspace/pull/2522) by [@adrieljss](https://github.com/tauri-apps/plugins-workspace/../../adrieljss)) Fix `fetch` blocking until the whole response is read even if it was a streaming response.
## \[2.4.0]
- [`cb38f54f`](https://github.com/tauri-apps/plugins-workspace/commit/cb38f54f4a4ef30995283cd82166c62da17bac44) ([#2479](https://github.com/tauri-apps/plugins-workspace/pull/2479) by [@adrieljss](https://github.com/tauri-apps/plugins-workspace/../../adrieljss)) Add stream support for HTTP stream responses.

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-http"
version = "2.4.0"
version = "2.4.1"
description = "Access an HTTP client written in Rust."
edition = { workspace = true }
authors = { workspace = true }

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-http",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT OR Apache-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"

@ -84,7 +84,7 @@ importers:
specifier: ^2.2.0
version: link:../../plugins/haptics
'@tauri-apps/plugin-http':
specifier: ^2.4.0
specifier: ^2.4.1
version: link:../../plugins/http
'@tauri-apps/plugin-nfc':
specifier: ^2.2.0
@ -4209,4 +4209,4 @@ snapshots:
zod@3.24.2: {}
zwitch@1.0.5: {}
zwitch@1.0.5: {}

Loading…
Cancel
Save