Skip to content

0.13.0

Choose a tag to compare

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

SSLContext moved from ssl/net to lori

Server.ssl() now takes a lori.SSLContext instead of an ssl/net.SSLContext. If you use HTTPS, change your import and construction site:

Before:

use lori = "lori"
use ssl_net = "ssl/net"

// ...
ssl_net.SSLContext

After:

use lori = "lori"

// ...
lori.SSLContext

[0.13.0] - 2026-09-07

Changed

  • SSLContext moved from ssl/net to lori (PR #125)