Skip to content

0.11.0

Choose a tag to compare

@ponylang-main ponylang-main released this 07 Sep 23:21
· 15 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 SSLRequired or SSLPreferred, import it from lori instead of ssl/net:

Before:

use "ssl/net"

// ...
SSLContext

After:

use lori = "lori"

// ...
lori.SSLContext

Update to work with ponyc 0.71.0

Updated for compatibility with ponyc 0.71.0.

[0.11.0] - 2026-09-07

Changed

  • SSLContext now comes from lori instead of ponylang/ssl (PR #258)
  • Update to work with ponyc 0.71.0 (PR #259)