Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."]
Expand Down
Loading