Last Week in Pony - July 20, 2025
Welcome to the July 20, 2025 edition of Last Week in Pony! This week we’re ending support for MacOS on Intel processors and introducing the new ponylang/ssl library. It replaces the deprecated crypto and net_ssl libraries. We also have several new releases, including ponylang/ssl 1.0.0.
MacOS for Intel Support is Coming to an End¶
GitHub announced they’re ending support for MacOS on Intel processors in November.
We’ll remove Intel MacOS support from our CI sometime before then. Changes we make will no longer be tested on Intel MacOS. We won’t be providing pre-built versions of ponyc, corral, and ponyup for Intel MacOS anymore.
If you’re using Pony on Intel MacOS, you’ll need to build everything from source.
We haven’t decided exactly when we’ll remove support, but it’ll be sometime before November 2025.
Items of Note¶
New OpenSSL/LibreSSL Support Library¶
We had two libraries before: ponylang/crypto and ponylang/net_ssl. Both were API wrappers around OpenSSL and LibreSSL. We’ve merged them into a single library called ponylang/ssl.
We’ve deprecated ponylang/crypto and ponylang/net_ssl. They’re now read-only repositories. Use ponylang/ssl instead.
The transition is straightforward:
- Update your corral.json to point at the new dependency
- Update your use statements from
use crypto
anduse net_ssl
touse ssl/crypto
anduse ssl/net
Pony Development Sync¶
The recording of the July 15th, 2025 sync is available.
Office Hours¶
This week’s Office Hours had myself and Niclas. We talked a lot about Sweden and Swedish things. Eventually we ended with him showing me what he’s been working on. It’s pretty cool. You should grab me and have him give you a demo.
Releases¶
- ponylang/github_rest_api 0.2.1
- ponylang/http 0.6.4
- ponylang/http_server 0.6.3
- ponylang/lori 0.6.2
- ponylang/postgres 0.2.2
- ponylang/ssl 1.0.0
Last Week In Pony is a weekly blog post to catch you up on the latest news for the Pony programming language. To learn more about Pony, check out our website or our Zulip community.
Got something you think should be featured? There’s a GitHub issue for that! Add a comment to the open “Last Week in Pony” issue.