0.9.0
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.SSLContextAfter:
use lori = "lori"
// ...
lori.SSLContext[0.9.0] - 2026-09-07
Changed
- SSLContext now comes from lori instead of ponylang/ssl (PR #80)