Skip to content
This repository was archived by the owner on Sep 11, 2026. It is now read-only.

0.22.0

Latest

Choose a tag to compare

@ponylang-main ponylang-main released this 07 Sep 16:09
· 6 commits to main since this release

Replace ponylang/ssl dependency with lori's own SSL types

SSL, DTLS, SSLContext, DTLSContext, X509, and the ALPN types are now part of the lori package. ponylang/ssl is no longer a dependency.

Drop any use "ssl/net" import. The types come through use "lori" and are not interchangeable with ponylang/ssl's ssl/net types.

Before:

use "lori"
use "ssl/net"

let ctx = SSLContext

After:

use "lori"

let ctx = SSLContext

[0.22.0] - 2026-09-07

Changed

  • Replace ponylang/ssl dependency with lori's own SSL types (PR #401)