Skip to content

0.11.0

Choose a tag to compare

@ponylang-main ponylang-main released this 07 Sep 17:17
· 22 commits to main since this release

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)