From 37e14f00ca6b2a0e41cb5ae17a1e498b16dfab2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=20Karpel=C3=A8s?= Date: Tue, 14 Jul 2026 08:39:10 +0900 Subject: [PATCH] chore: release v0.1.6 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12a35d5..e4f9570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/KarpelesLab/rsurl/compare/v0.1.5...v0.1.6) - 2026-07-13 + +### Fixed + +- *(http2)* raise receive windows so downloads aren't capped at window/RTT +- *(http1)* don't apply the buffered body cap to streaming responses +- *(proxy)* honor NO_PROXY leading-dot entries and route MQTT publish through the connector + +### Other + +- apply rustfmt to the recent refactor/fix commits +- *(net)* unify the plain/TLS transport enum across mail/ftp/ldap +- *(bittorrent)* dedupe compact-peer decode and the storage read path +- *(tls)* centralize the STARTTLS plaintext-injection guard +- centralize the control-byte rejection guard shared across protocols +- hoist duplicated HTTP header validation and userinfo split into shared homes +- *(http)* route all redirect paths through a single redirect_request +- stop being a Cargo workspace; curl-compat is a standalone sub-crate + ## [0.1.5](https://github.com/KarpelesLab/rsurl/compare/rsurl-v0.1.4...rsurl-v0.1.5) - 2026-07-01 ### Added diff --git a/Cargo.toml b/Cargo.toml index ecbd991..f82cb2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsurl" -version = "0.1.5" +version = "0.1.6" edition = "2021" rust-version = "1.88" authors = ["Karpelès Lab Inc."]