Releases: ponylang/net_ssl
1.3.3
1.3.2
Fix bug when using OpenSSL 3.2
OpenSSL 3.2 introduced a bug in itself or exposed one in NetSSL via a change in behavior. We believe the bug is in OpenSSL, either way, it was a problem.
HTTPS using the Ponylang HTTP library get requests would hang when in release mode and segfault due to infinite recurion when in debug mode. We've introduced a fix and a regression test has been added to ponylang/http
.
[1.3.2] - 2024-01-14
Fixed
- Fix bug triggered by OpenSSL 3.2.0 (PR #107)
1.3.1
Update the URL for Windows LibreSSL downloads
Previously, as part of the Windows install process of net_ssl
, we would download a copy of LibreSSL from ftp.openbsd.org, build and install it.
We've found that ftp.openbsd.org has become flakey but cdn.openbsd.org has been stable.
There's no change that you need to do as a user for this update, however, if you are having trouble with this library on Windows due to it being unable to successfully download LibreSSL, this update is for you.
[1.3.1] - 2023-04-27
Changed
- Change location we download LibreSSL from for Windows users (PR #85)
1.3.0
1.2.1
Update to work with change Pony 0.49.0
The object capabilities system in the Pony standard library was reworked and we've updated to match it.
Update to work with ponytest name change in Pony 0.49.0
The Pony unit testing framework PonyTest had its package name renamed from ponytest
to pony_test
to match standard library naming conventions. We've updated to account for the new name.
Remove hardcoding of Visual Studio version
We don't need a specific hardcoded version to build scripts.
[1.2.1] - 2022-02-26
Fixed
1.2.0
1.1.8
Update to work with latest ponyc
The most recent ponyc implements RFC #65 which changes the type of Env.root
.
We've updated accordingly. You won't be able to use this and future versions of the library without a corresponding update to your ponyc version.
[1.1.8] - 2022-01-16
Changed
- Update to reflect change in type of Env.root (PR #64)
1.1.7
Add path to Homebrew's LibreSSL on ARM macOS
With the release of ponyc 0.45.0, Apple Silicon is now a supported platform, which means that the default install location of Homebrew formulas has changed. This release of net_ssl allows to build the library without using the ponyc --path
option to include LibreSSL.
[1.1.7] - 2021-11-01
Added
- Add path to Homebrew's LibreSSL on ARM macOS (PR #54)
1.1.6
1.1.5
Forward prepare for coming breaking FFI change in ponyc
Added FFI declarations to all FFI calls in the library. The change has no impact on end users, but will future proof against a coming breaking change in FFI in the ponyc compiler. Users of this version of the library won't be impacted by the coming change.
[1.1.5] - 2021-04-10
Changed
- Remove explicit return type from FFI calls (PR #48)