Skip to content

0.9.0

Choose a tag to compare

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

SSLContext now comes from lori instead of ponylang/ssl

Lori 0.22.0 replaced its ponylang/ssl dependency with its own SSL types. If you create an SSLContext to pass to WebSocketServer.ssl, import it from lori instead of ssl/net:

Before:

use ssl_net = "ssl/net"

// ...
ssl_net.SSLContext

After:

use lori = "lori"

// ...
lori.SSLContext

[0.9.0] - 2026-09-07

Changed

  • SSLContext now comes from lori instead of ponylang/ssl (PR #80)