Skip to content
Merged
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [Unreleased]

### Changed
- `rustls` feature now enables both `rustls-tls-native-roots` and `rustls-tls-webpki-roots` for reqwest
- Provides support for system certificates (including those installed by Cloudflare WARP or corporate VPNs)
- Falls back to bundled Mozilla certificates in minimal environments
- Both certificate stores are merged, providing maximum compatibility

## v0.20.0 -- 2025-10-29

### Added
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ native-tls = [
]
rustls = [
"dep:rustls_sys",
"reqwest?/rustls-tls",
"reqwest?/rustls-tls-native-roots",
"reqwest?/rustls-tls-webpki-roots",
"suppaftp?/rustls",
"rust-s3?/sync-rustls-tls"
]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ oneio = { version = "0.20", features = ["async"] }
- `s3` - S3-compatible storage

**TLS Backends** (for HTTPS - mutually exclusive):
- `rustls` - Pure Rust TLS (use with `http`)
- `rustls` - Pure Rust TLS (use with `http`). Uses both system certificates and bundled Mozilla certificates for maximum compatibility with corporate VPNs and minimal environments.
- `native-tls` - Platform native TLS (use with `http`)

**Additional**:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ oneio = { version = "0.20", features = ["async"] }
- `s3` - S3-compatible storage

**TLS Backends** (for HTTPS - mutually exclusive):
- `rustls` - Pure Rust TLS (use with `http`)
- `rustls` - Pure Rust TLS (use with `http`). Uses both system certificates and bundled Mozilla certificates for maximum compatibility with corporate VPNs and minimal environments.
- `native-tls` - Platform native TLS (use with `http`)

**Additional**:
Expand Down