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
7 changes: 7 additions & 0 deletions .changeset/puny-parts-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"fnm": patch
---

Fix networking in corporate root-CA environments on Mac OS

This change enables os-native TLS handling in the `reqwest` crate, which allows fnm to make network requests in corporate environments that, for security reasons, proxy all traffic and have their own root certificate authority.
105 changes: 105 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ indoc = "2.0.5"
log = "0.4.21"
env_logger = "0.11.3"
encoding_rs_io = "0.1.7"
reqwest = { version = "0.12.4", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "brotli"], default-features = false }
reqwest = { version = "0.12.4", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "brotli", "native-tls"], default-features = false }
url = "2.5.0"
sysinfo = "0.30.12"
thiserror = "1.0.61"
Expand Down