0.11.0
SSLContext now comes from lori instead of ponylang/ssl
If you pass a custom SSLContext to Credentials, import it from lori instead of ssl/net:
Before:
use ssl = "ssl/net"
let ctx =
recover val
ssl.SSLContext.>set_client_verify(false)
end
let creds = Credentials(auth where ssl_ctx' = ctx)After:
use lori = "lori"
let ctx =
recover val
lori.SSLContext.>set_client_verify(false)
end
let creds = Credentials(auth where ssl_ctx' = ctx)[0.11.0] - 2026-09-07
Changed
- SSLContext now comes from lori instead of ponylang/ssl (PR #149)