0.13.0
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.SSLContextAfter:
use lori = "lori"
// ...
lori.SSLContext[0.13.0] - 2026-09-07
Changed
- SSLContext moved from ssl/net to lori (PR #125)