From 67deda8918f83fc53bf165053a5e2bdbf5531375 Mon Sep 17 00:00:00 2001 From: martintomka Date: Thu, 18 Jun 2026 14:59:11 +0200 Subject: [PATCH] chore: technical release of anyspawn@0.5.5 --- Cargo.lock | 12 ++--- Cargo.toml | 12 ++--- crates/anyspawn/CHANGELOG.md | 6 +++ crates/anyspawn/Cargo.toml | 2 +- crates/anyspawn/README.md | 14 +++--- crates/anyspawn_azure/CHANGELOG.md | 6 +++ crates/anyspawn_azure/Cargo.toml | 2 +- crates/anyspawn_azure/README.md | 8 +-- crates/cachet/CHANGELOG.md | 6 +++ crates/cachet/Cargo.toml | 2 +- crates/cachet/README.md | 26 +++++----- crates/fetch/CHANGELOG.md | 6 +++ crates/fetch/Cargo.toml | 2 +- crates/fetch/README.md | 80 +++++++++++++++--------------- crates/fetch_azure/CHANGELOG.md | 6 +++ crates/fetch_azure/Cargo.toml | 2 +- crates/fetch_azure/README.md | 6 +-- crates/fetch_hyper/CHANGELOG.md | 6 +++ crates/fetch_hyper/Cargo.toml | 2 +- crates/fetch_hyper/README.md | 12 ++--- 20 files changed, 127 insertions(+), 91 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19cc31de8..cc7906fe3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,7 +79,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "anyspawn" -version = "0.5.4" +version = "0.5.5" dependencies = [ "criterion", "futures", @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "anyspawn_azure" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyspawn", "async-trait", @@ -614,7 +614,7 @@ dependencies = [ [[package]] name = "cachet" -version = "0.7.1" +version = "0.7.2" dependencies = [ "alloc_tracker", "anyspawn", @@ -1230,7 +1230,7 @@ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" [[package]] name = "fetch" -version = "0.11.2" +version = "0.11.3" dependencies = [ "alloc_tracker", "anyspawn", @@ -1281,7 +1281,7 @@ dependencies = [ [[package]] name = "fetch_azure" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyspawn", "anyspawn_azure", @@ -1301,7 +1301,7 @@ dependencies = [ [[package]] name = "fetch_hyper" -version = "0.4.2" +version = "0.4.3" dependencies = [ "anyspawn", "bytes", diff --git a/Cargo.toml b/Cargo.toml index c27799b3d..7dacf2881 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,11 +23,11 @@ homepage = "https://github.com/microsoft/oxidizer" [workspace.dependencies] # local dependencies -anyspawn = { path = "crates/anyspawn", default-features = false, version = "0.5.4" } -anyspawn_azure = { path = "crates/anyspawn_azure", default-features = false, version = "0.1.0" } +anyspawn = { path = "crates/anyspawn", default-features = false, version = "0.5.5" } +anyspawn_azure = { path = "crates/anyspawn_azure", default-features = false, version = "0.1.1" } bytesbuf = { path = "crates/bytesbuf", default-features = false, version = "0.5.5" } bytesbuf_io = { path = "crates/bytesbuf_io", default-features = false, version = "0.5.6" } -cachet = { path = "crates/cachet", default-features = false, version = "0.7.1" } +cachet = { path = "crates/cachet", default-features = false, version = "0.7.2" } cachet_memory = { path = "crates/cachet_memory", default-features = false, version = "0.3.5" } cachet_service = { path = "crates/cachet_service", default-features = false, version = "0.2.6" } cachet_tier = { path = "crates/cachet_tier", default-features = false, version = "0.2.4" } @@ -35,9 +35,9 @@ data_privacy = { path = "crates/data_privacy", default-features = false, version data_privacy_core = { path = "crates/data_privacy_core", default-features = false, version = "0.1.1" } data_privacy_macros = { path = "crates/data_privacy_macros", default-features = false, version = "0.10.2" } data_privacy_macros_impl = { path = "crates/data_privacy_macros_impl", default-features = false, version = "0.10.2" } -fetch = { path = "crates/fetch", default-features = false, version = "0.11.2" } -fetch_azure = { path = "crates/fetch_azure", default-features = false, version = "0.1.1" } -fetch_hyper = { path = "crates/fetch_hyper", default-features = false, version = "0.4.2" } +fetch = { path = "crates/fetch", default-features = false, version = "0.11.3" } +fetch_azure = { path = "crates/fetch_azure", default-features = false, version = "0.1.2" } +fetch_hyper = { path = "crates/fetch_hyper", default-features = false, version = "0.4.3" } fetch_options = { path = "crates/fetch_options", default-features = false, version = "0.2.2" } fetch_tls = { path = "crates/fetch_tls", default-features = false, version = "0.2.3" } fundle = { path = "crates/fundle", default-features = false, version = "0.3.3" } diff --git a/crates/anyspawn/CHANGELOG.md b/crates/anyspawn/CHANGELOG.md index 815cc4be8..8f60d4aa6 100644 --- a/crates/anyspawn/CHANGELOG.md +++ b/crates/anyspawn/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.5] - 2026-06-18 + +- 🔧 Maintenance + + - technical release + ## [0.5.4] - 2026-06-11 - 🔧 Maintenance diff --git a/crates/anyspawn/Cargo.toml b/crates/anyspawn/Cargo.toml index 084e30830..588780c6f 100644 --- a/crates/anyspawn/Cargo.toml +++ b/crates/anyspawn/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "anyspawn" description = "A generic task spawner compatible with any async runtime." -version = "0.5.4" +version = "0.5.5" readme = "README.md" keywords = ["oxidizer", "async", "runtime", "futures"] categories = ["asynchronous"] diff --git a/crates/anyspawn/README.md b/crates/anyspawn/README.md index 571381175..65fdc08b5 100644 --- a/crates/anyspawn/README.md +++ b/crates/anyspawn/README.md @@ -54,11 +54,11 @@ contention-free, NUMA-friendly task dispatch. This crate was developed as part of The Oxidizer Project. Browse this crate's source code. - [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQblHE7Bl8YSN4bb97k0EOW-rkbZQa-GdodS-cbCkeYjGZgZ-BhZIKCaGFueXNwYXduZTAuNS40gmx0aHJlYWRfYXdhcmVlMC43LjQ - [__link0]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=Spawner - [__link1]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=SpawnCustom - [__link2]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=CustomSpawnerBuilder + [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQblHE7Bl8YSN4bb97k0EOW-rkbZQa-GdodS-cbCkeYjGZgZ-BhZIKCaGFueXNwYXduZTAuNS41gmx0aHJlYWRfYXdhcmVlMC43LjQ + [__link0]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=Spawner + [__link1]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=SpawnCustom + [__link2]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=CustomSpawnerBuilder [__link3]: https://docs.rs/thread_aware/0.7.4/thread_aware/?search=ThreadAware - [__link4]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=SpawnCustom - [__link5]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=Spawner::new_tokio - [__link6]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=Spawner::new_tokio_with_handle + [__link4]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=SpawnCustom + [__link5]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=Spawner::new_tokio + [__link6]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=Spawner::new_tokio_with_handle diff --git a/crates/anyspawn_azure/CHANGELOG.md b/crates/anyspawn_azure/CHANGELOG.md index 7298e7a85..fd8cef824 100644 --- a/crates/anyspawn_azure/CHANGELOG.md +++ b/crates/anyspawn_azure/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.1.1] - 2026-06-18 + +- 🔧 Maintenance + + - Now requires `0.5.5` of `anyspawn` + ## [0.1.0] - ✨ Features diff --git a/crates/anyspawn_azure/Cargo.toml b/crates/anyspawn_azure/Cargo.toml index 21929b51f..fdac4645c 100644 --- a/crates/anyspawn_azure/Cargo.toml +++ b/crates/anyspawn_azure/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "anyspawn_azure" description = "Azure SDK async runtime and process executor backed by an anyspawn spawner and a tick clock." -version = "0.1.0" +version = "0.1.1" readme = "README.md" keywords = ["oxidizer", "azure", "async", "runtime", "spawner"] categories = ["asynchronous"] diff --git a/crates/anyspawn_azure/README.md b/crates/anyspawn_azure/README.md index b0f4f9611..c7cef7db5 100644 --- a/crates/anyspawn_azure/README.md +++ b/crates/anyspawn_azure/README.md @@ -48,10 +48,10 @@ fn install_runtime(spawner: Spawner, clock: Clock) { This crate was developed as part of The Oxidizer Project. Browse this crate's source code. - [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQbG3R9HTN6WQcb7BPkFt-c1lwbFJyoKmJddDMbd44aiRZ9MR1hZISCaGFueXNwYXduZTAuNS40gm5hbnlzcGF3bl9henVyZWUwLjEuMIJqYXp1cmVfY29yZWUxLjAuMIJkdGlja2UwLjMuNA - [__link0]: https://crates.io/crates/anyspawn/0.5.4 + [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQbG3R9HTN6WQcb7BPkFt-c1lwbFJyoKmJddDMbd44aiRZ9MR1hZISCaGFueXNwYXduZTAuNS41gm5hbnlzcGF3bl9henVyZWUwLjEuMYJqYXp1cmVfY29yZWUxLjAuMIJkdGlja2UwLjMuNA + [__link0]: https://crates.io/crates/anyspawn/0.5.5 [__link1]: https://crates.io/crates/tick/0.3.4 [__link2]: https://docs.rs/azure_core/1.0.0/azure_core/?search=async_runtime::AsyncRuntime - [__link3]: https://docs.rs/anyspawn_azure/0.1.0/anyspawn_azure/?search=Runtime - [__link4]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=Spawner + [__link3]: https://docs.rs/anyspawn_azure/0.1.1/anyspawn_azure/?search=Runtime + [__link4]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=Spawner [__link5]: https://docs.rs/tick/0.3.4/tick/?search=Clock diff --git a/crates/cachet/CHANGELOG.md b/crates/cachet/CHANGELOG.md index d9b22e9b7..f38621527 100644 --- a/crates/cachet/CHANGELOG.md +++ b/crates/cachet/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.7.2] - 2026-06-18 + +- 🔧 Maintenance + + - Now requires `0.5.5` of `anyspawn` + ## [0.7.1] - 2026-06-18 - 🔧 Maintenance diff --git a/crates/cachet/Cargo.toml b/crates/cachet/Cargo.toml index d601082c3..755024efb 100644 --- a/crates/cachet/Cargo.toml +++ b/crates/cachet/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "cachet" description = "A composable, customizable multi-tier caching library with rich feature support." -version = "0.7.1" +version = "0.7.2" readme = "README.md" keywords = ["oxidizer", "caching", "concurrency"] categories = ["caching", "concurrency"] diff --git a/crates/cachet/README.md b/crates/cachet/README.md index ce967a0d6..9190e00b9 100644 --- a/crates/cachet/README.md +++ b/crates/cachet/README.md @@ -280,29 +280,29 @@ See the `telemetry_accumulator` example for a DashMap-based accumulation pattern This crate was developed as part of The Oxidizer Project. Browse this crate's source code. - [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQb_xlIDv3a6WgboIYzdhk5tYwbm8NaNvZXwrcbhIXs0eaeycFhZIiCaGJ5dGVzYnVmZTAuNS41gmZjYWNoZXRlMC43LjGCbWNhY2hldF9tZW1vcnllMC4zLjWCbmNhY2hldF9zZXJ2aWNlZTAuMi42gmtjYWNoZXRfdGllcmUwLjIuNIJkdGlja2UwLjMuNIJndHJhY2luZ2YwLjEuNDSCaXVuaWZsaWdodGUwLjIuNA - [__link0]: https://docs.rs/cachet/0.7.1/cachet/?search=TimeToRefresh + [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQb_xlIDv3a6WgboIYzdhk5tYwbm8NaNvZXwrcbhIXs0eaeycFhZIiCaGJ5dGVzYnVmZTAuNS41gmZjYWNoZXRlMC43LjKCbWNhY2hldF9tZW1vcnllMC4zLjWCbmNhY2hldF9zZXJ2aWNlZTAuMi42gmtjYWNoZXRfdGllcmUwLjIuNIJkdGlja2UwLjMuNIJndHJhY2luZ2YwLjEuNDSCaXVuaWZsaWdodGUwLjIuNA + [__link0]: https://docs.rs/cachet/0.7.2/cachet/?search=TimeToRefresh [__link1]: https://crates.io/crates/uniflight/0.2.4 [__link10]: https://docs.rs/cachet_tier/0.2.4/cachet_tier/?search=CacheTier - [__link11]: https://docs.rs/cachet/0.7.1/cachet/?search=InsertPolicy - [__link12]: https://docs.rs/cachet/0.7.1/cachet/?search=TimeToRefresh + [__link11]: https://docs.rs/cachet/0.7.2/cachet/?search=InsertPolicy + [__link12]: https://docs.rs/cachet/0.7.2/cachet/?search=TimeToRefresh [__link13]: https://docs.rs/cachet_tier/0.2.4/cachet_tier/?search=Error [__link14]: https://crates.io/crates/cachet_tier/0.2.4 [__link15]: https://crates.io/crates/cachet_memory/0.3.5 [__link16]: https://docs.rs/moka [__link17]: https://crates.io/crates/cachet_service/0.2.6 - [__link18]: https://docs.rs/cachet/0.7.1/cachet/?search=telemetry::attributes + [__link18]: https://docs.rs/cachet/0.7.2/cachet/?search=telemetry::attributes [__link19]: https://docs.rs/bytesbuf/0.5.5/bytesbuf/?search=BytesView - [__link2]: https://docs.rs/cachet/0.7.1/cachet/?search=CacheBuilder::stampede_protection + [__link2]: https://docs.rs/cachet/0.7.2/cachet/?search=CacheBuilder::stampede_protection [__link20]: https://crates.io/crates/tracing/0.1.44 - [__link21]: https://docs.rs/cachet/0.7.1/cachet/?search=telemetry::attributes - [__link22]: https://docs.rs/cachet/0.7.1/cachet/?search=telemetry::handler::CacheEventHandler - [__link23]: https://docs.rs/cachet/0.7.1/cachet/?search=telemetry::handler::CacheTierEvent - [__link24]: https://docs.rs/cachet/0.7.1/cachet/?search=telemetry::handler::CacheOperationEvent + [__link21]: https://docs.rs/cachet/0.7.2/cachet/?search=telemetry::attributes + [__link22]: https://docs.rs/cachet/0.7.2/cachet/?search=telemetry::handler::CacheEventHandler + [__link23]: https://docs.rs/cachet/0.7.2/cachet/?search=telemetry::handler::CacheTierEvent + [__link24]: https://docs.rs/cachet/0.7.2/cachet/?search=telemetry::handler::CacheOperationEvent [__link3]: https://docs.rs/cachet_tier/0.2.4/cachet_tier/?search=CacheTier [__link4]: https://docs.rs/cachet_tier/0.2.4/cachet_tier/?search=DynamicCache - [__link5]: https://docs.rs/cachet/0.7.1/cachet/?search=InsertPolicy + [__link5]: https://docs.rs/cachet/0.7.2/cachet/?search=InsertPolicy [__link6]: https://docs.rs/tick/0.3.4/tick/?search=Clock - [__link7]: https://docs.rs/cachet/0.7.1/cachet/?search=Cache - [__link8]: https://docs.rs/cachet/0.7.1/cachet/?search=CacheBuilder + [__link7]: https://docs.rs/cachet/0.7.2/cachet/?search=Cache + [__link8]: https://docs.rs/cachet/0.7.2/cachet/?search=CacheBuilder [__link9]: https://docs.rs/cachet_tier/0.2.4/cachet_tier/?search=CacheEntry diff --git a/crates/fetch/CHANGELOG.md b/crates/fetch/CHANGELOG.md index 41efdbbbe..cb0fb56da 100644 --- a/crates/fetch/CHANGELOG.md +++ b/crates/fetch/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.11.3] - 2026-06-18 + +- 🔧 Maintenance + + - Now requires `0.5.5` of `anyspawn` + ## [0.11.2] - 2026-06-18 - 🔧 Maintenance diff --git a/crates/fetch/Cargo.toml b/crates/fetch/Cargo.toml index 3d5aee25b..97809cf2d 100644 --- a/crates/fetch/Cargo.toml +++ b/crates/fetch/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "fetch" description = "HTTP client with resilience, observability, and Tokio runtime support." -version = "0.11.2" +version = "0.11.3" readme = "README.md" keywords = ["http", "client", "async", "resilience", "observability"] categories = ["network-programming"] diff --git a/crates/fetch/README.md b/crates/fetch/README.md index 0215af6c8..a325252c3 100644 --- a/crates/fetch/README.md +++ b/crates/fetch/README.md @@ -712,19 +712,19 @@ fetch = { version = "*", features = ["json", "tokio"] } This crate was developed as part of The Oxidizer Project. Browse this crate's source code. - [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQbRcdYrc3P77cbVjz14MYzPFkbTKiKwHYuBbcbSr09Rcd_lPZhZIeCZWJ5dGVzZjEuMTEuMYJoYnl0ZXNidWZlMC41LjWCZWZldGNoZjAuMTEuMoJvaHR0cF9leHRlbnNpb25zZTAuNi4ygmdsYXllcmVkZTAuMy40gmhzZWF0YmVsdGUwLjUuN4JtdGVtcGxhdGVkX3VyaWUwLjMuMg - [__link0]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient + [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQbRcdYrc3P77cbVjz14MYzPFkbTKiKwHYuBbcbSr09Rcd_lPZhZIeCZWJ5dGVzZjEuMTEuMYJoYnl0ZXNidWZlMC41LjWCZWZldGNoZjAuMTEuM4JvaHR0cF9leHRlbnNpb25zZTAuNi4ygmdsYXllcmVkZTAuMy40gmhzZWF0YmVsdGUwLjUuN4JtdGVtcGxhdGVkX3VyaWUwLjMuMg + [__link0]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient [__link1]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=RequestHandler - [__link10]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient::post - [__link11]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient::put - [__link12]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient::delete - [__link13]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient::request + [__link10]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient::post + [__link11]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient::put + [__link12]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient::delete + [__link13]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient::request [__link14]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpRequestBuilder - [__link15]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClientBuilder::base_uri + [__link15]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClientBuilder::base_uri [__link16]: https://docs.rs/templated_uri/0.3.2/templated_uri/?search=BaseUri [__link17]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpRequestBuilder::fetch [__link18]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpResponse - [__link19]: https://docs.rs/fetch/0.11.2/fetch/?search=http::Response + [__link19]: https://docs.rs/fetch/0.11.3/fetch/?search=http::Response [__link2]: https://docs.rs/reqwest/ [__link20]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpResponse::ensure_success [__link21]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpResponse::status @@ -734,43 +734,43 @@ This crate was developed as part of The Oxidizer Project. Br [__link25]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpBody::into_bytes [__link26]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpBody::into_json [__link27]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpRequestBuilder::fetch - [__link28]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_text - [__link29]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_bytes - [__link3]: https://docs.rs/fetch/0.11.2/fetch/custom/index.html - [__link30]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_json - [__link31]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_json_ref + [__link28]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_text + [__link29]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_bytes + [__link3]: https://docs.rs/fetch/0.11.3/fetch/custom/index.html + [__link30]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_json + [__link31]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_json_ref [__link32]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=HttpBody - [__link33]: https://docs.rs/fetch/0.11.2/fetch/?search=http::Response - [__link34]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpResponse::ensure_success - [__link35]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_text_body - [__link36]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_bytes_body - [__link37]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_json_body + [__link33]: https://docs.rs/fetch/0.11.3/fetch/?search=http::Response + [__link34]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpResponse::ensure_success + [__link35]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_text_body + [__link36]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_bytes_body + [__link37]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_json_body [__link38]: https://crates.io/crates/templated_uri/0.3.2 [__link39]: https://docs.rs/templated_uri/0.3.2/templated_uri/?search=Uri - [__link4]: https://docs.rs/fetch/0.11.2/fetch/?search=custom::create_builder + [__link4]: https://docs.rs/fetch/0.11.3/fetch/?search=custom::create_builder [__link40]: https://datatracker.ietf.org/doc/html/rfc6570 [__link41]: https://docs.rs/templated_uri/0.3.2/templated_uri/?search=Uri - [__link42]: https://docs.rs/fetch/0.11.2/fetch/?search=handlers::Logging + [__link42]: https://docs.rs/fetch/0.11.3/fetch/?search=handlers::Logging [__link43]: https://docs.rs/templated_uri/0.3.2/templated_uri/?search=Uri [__link44]: https://docs.rs/templated_uri/0.3.2/templated_uri/?search=PathAndQueryTemplate - [__link45]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::json - [__link46]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_json - [__link47]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_json_ref - [__link48]: https://docs.rs/fetch/0.11.2/fetch/?search=Json - [__link49]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpBody::into_json + [__link45]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::json + [__link46]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_json + [__link47]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_json_ref + [__link48]: https://docs.rs/fetch/0.11.3/fetch/?search=Json + [__link49]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpBody::into_json [__link5]: https://docs.rs/reqwest/ - [__link50]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpRequestBuilder::fetch_json_body - [__link51]: https://docs.rs/fetch/0.11.2/fetch/?search=Json + [__link50]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpRequestBuilder::fetch_json_body + [__link51]: https://docs.rs/fetch/0.11.3/fetch/?search=Json [__link52]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=RequestHandler [__link53]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=RequestHandler [__link54]: https://docs.rs/reqwest/ - [__link55]: https://docs.rs/fetch/0.11.2/fetch/custom/index.html - [__link56]: https://docs.rs/fetch/0.11.2/fetch/?search=custom::create_builder - [__link57]: https://docs.rs/fetch/0.11.2/fetch/?search=pipeline::StandardRequestPipeline - [__link58]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClientBuilder::standard_pipeline - [__link59]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClientBuilder::custom_pipeline + [__link55]: https://docs.rs/fetch/0.11.3/fetch/custom/index.html + [__link56]: https://docs.rs/fetch/0.11.3/fetch/?search=custom::create_builder + [__link57]: https://docs.rs/fetch/0.11.3/fetch/?search=pipeline::StandardRequestPipeline + [__link58]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClientBuilder::standard_pipeline + [__link59]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClientBuilder::custom_pipeline [__link6]: https://docs.rs/hyper/ - [__link60]: https://docs.rs/fetch/0.11.2/fetch/?search=handlers::Dispatch + [__link60]: https://docs.rs/fetch/0.11.3/fetch/?search=handlers::Dispatch [__link61]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=RequestHandler [__link62]: https://docs.rs/bytesbuf/0.5.5/bytesbuf/?search=BytesView [__link63]: https://docs.rs/bytes @@ -778,20 +778,20 @@ This crate was developed as part of The Oxidizer Project. Br [__link65]: https://docs.rs/bytes/1.11.1/bytes/?search=Buf [__link66]: https://docs.rs/bytes/1.11.1/bytes/?search=BufMut [__link67]: https://docs.rs/bytes - [__link68]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient + [__link68]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient [__link69]: https://docs.rs/templated_uri/0.3.2/templated_uri/?search=Uri - [__link7]: https://docs.rs/fetch/0.11.2/fetch/custom/index.html + [__link7]: https://docs.rs/fetch/0.11.3/fetch/custom/index.html [__link70]: https://docs.rs/bytesbuf/0.5.5/bytesbuf/?search=BytesView [__link71]: https://docs.rs/bytesbuf/0.5.5/bytesbuf/?search=BytesView [__link72]: https://docs.rs/bytesbuf/0.5.5/bytesbuf/?search=BytesView - [__link73]: https://docs.rs/fetch/0.11.2/fetch/http/index.html + [__link73]: https://docs.rs/fetch/0.11.3/fetch/http/index.html [__link74]: https://crates.io/crates/http_extensions/0.6.2 [__link75]: https://crates.io/crates/seatbelt/0.5.7 [__link76]: https://docs.rs/layered/0.3.4/layered/?search=Service - [__link77]: https://docs.rs/fetch/0.11.2/fetch/?search=pipeline::StandardRequestPipeline + [__link77]: https://docs.rs/fetch/0.11.3/fetch/?search=pipeline::StandardRequestPipeline [__link78]: https://docs.rs/rustls [__link79]: https://docs.rs/aws-lc-rs - [__link8]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient::builder_tokio + [__link8]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient::builder_tokio [__link80]: https://docs.rs/rustls-platform-verifier - [__link81]: https://docs.rs/fetch/0.11.2/fetch/?search=tls::TlsOptions::builder_rustls - [__link9]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient::get + [__link81]: https://docs.rs/fetch/0.11.3/fetch/?search=tls::TlsOptions::builder_rustls + [__link9]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient::get diff --git a/crates/fetch_azure/CHANGELOG.md b/crates/fetch_azure/CHANGELOG.md index 9b65b6fa8..b3b91d5de 100644 --- a/crates/fetch_azure/CHANGELOG.md +++ b/crates/fetch_azure/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.1.2] - 2026-06-18 + +- 🔧 Maintenance + + - Now requires `0.5.5` of `anyspawn` + ## [0.1.1] - 2026-06-18 - 🔧 Maintenance diff --git a/crates/fetch_azure/Cargo.toml b/crates/fetch_azure/Cargo.toml index 987914a59..f40748ed5 100644 --- a/crates/fetch_azure/Cargo.toml +++ b/crates/fetch_azure/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "fetch_azure" description = "Azure SDK HTTP transport backed by the fetch HTTP client." -version = "0.1.1" +version = "0.1.2" readme = "README.md" keywords = ["oxidizer", "azure", "fetch", "http", "transport"] categories = ["network-programming"] diff --git a/crates/fetch_azure/README.md b/crates/fetch_azure/README.md index 46e35881c..f885797b8 100644 --- a/crates/fetch_azure/README.md +++ b/crates/fetch_azure/README.md @@ -43,7 +43,7 @@ let options = ClientOptions { This crate was developed as part of The Oxidizer Project. Browse this crate's source code. - [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQbbmImiFehOUcbSWj7AJ0Zo0QbEU03KDZjzxUbIR9apRz2JO5hZIOCamF6dXJlX2NvcmVlMS4wLjCCZWZldGNoZjAuMTEuMoJrZmV0Y2hfYXp1cmVlMC4xLjE - [__link0]: https://docs.rs/fetch/0.11.2/fetch/?search=HttpClient + [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQbbmImiFehOUcbSWj7AJ0Zo0QbEU03KDZjzxUbIR9apRz2JO5hZIOCamF6dXJlX2NvcmVlMS4wLjCCZWZldGNoZjAuMTEuM4JrZmV0Y2hfYXp1cmVlMC4xLjI + [__link0]: https://docs.rs/fetch/0.11.3/fetch/?search=HttpClient [__link1]: https://docs.rs/azure_core/1.0.0/azure_core/?search=http::HttpClient - [__link2]: https://docs.rs/fetch_azure/0.1.1/fetch_azure/?search=HttpClient + [__link2]: https://docs.rs/fetch_azure/0.1.2/fetch_azure/?search=HttpClient diff --git a/crates/fetch_hyper/CHANGELOG.md b/crates/fetch_hyper/CHANGELOG.md index 6c6635fc8..6c4e3046f 100644 --- a/crates/fetch_hyper/CHANGELOG.md +++ b/crates/fetch_hyper/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.4.3] - 2026-06-18 + +- 🔧 Maintenance + + - Now requires `0.5.5` of `anyspawn` + ## [0.4.2] - 2026-06-18 - 🔧 Maintenance diff --git a/crates/fetch_hyper/Cargo.toml b/crates/fetch_hyper/Cargo.toml index 637b3eb0b..73f361418 100644 --- a/crates/fetch_hyper/Cargo.toml +++ b/crates/fetch_hyper/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "fetch_hyper" description = "Hyper-based HTTP transport utilities for fetch." -version = "0.4.2" +version = "0.4.3" readme = "README.md" keywords = ["oxidizer", "hyper", "fetch", "http", "tls"] categories = ["network-programming"] diff --git a/crates/fetch_hyper/README.md b/crates/fetch_hyper/README.md index 990b32b43..d006b7a41 100644 --- a/crates/fetch_hyper/README.md +++ b/crates/fetch_hyper/README.md @@ -39,11 +39,11 @@ The runtime is supplied by the caller via an [`anyspawn::Spawner`][__link6]. This crate was developed as part of The Oxidizer Project. Browse this crate's source code. - [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQb1PafKPRqQnMbycEo89Tdc1Ibs7VR1QL49eUbNVExL_GkLMNhZISCaGFueXNwYXduZTAuNS40gmtmZXRjaF9oeXBlcmUwLjQuMoJtZmV0Y2hfb3B0aW9uc2UwLjIuMoJvaHR0cF9leHRlbnNpb25zZTAuNi4y - [__link0]: https://docs.rs/fetch_hyper/0.4.2/fetch_hyper/?search=HyperTransportBuilder - [__link1]: https://docs.rs/fetch_hyper/0.4.2/fetch_hyper/?search=Connect + [__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQb1PafKPRqQnMbycEo89Tdc1Ibs7VR1QL49eUbNVExL_GkLMNhZISCaGFueXNwYXduZTAuNS41gmtmZXRjaF9oeXBlcmUwLjQuM4JtZmV0Y2hfb3B0aW9uc2UwLjIuMoJvaHR0cF9leHRlbnNpb25zZTAuNi4y + [__link0]: https://docs.rs/fetch_hyper/0.4.3/fetch_hyper/?search=HyperTransportBuilder + [__link1]: https://docs.rs/fetch_hyper/0.4.3/fetch_hyper/?search=Connect [__link2]: https://docs.rs/fetch_options/0.2.2/fetch_options/?search=TransportOptions - [__link3]: https://docs.rs/fetch_hyper/0.4.2/fetch_hyper/?search=HyperTransport + [__link3]: https://docs.rs/fetch_hyper/0.4.3/fetch_hyper/?search=HyperTransport [__link4]: https://docs.rs/http_extensions/0.6.2/http_extensions/?search=RequestHandler - [__link5]: https://docs.rs/fetch_hyper/0.4.2/fetch_hyper/?search=HyperTransportBuilder::build - [__link6]: https://docs.rs/anyspawn/0.5.4/anyspawn/?search=Spawner + [__link5]: https://docs.rs/fetch_hyper/0.4.3/fetch_hyper/?search=HyperTransportBuilder::build + [__link6]: https://docs.rs/anyspawn/0.5.5/anyspawn/?search=Spawner