Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .release-notes/fix-crash-dispose-before-initialization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Fix crash when dispose() arrives before connection initialization

Fixed a crash that could occur when `dispose()` was called on a connection actor before its internal initialization completed. The race between initialization and disposal is unlikely but was observed on macOS arm64 CI.
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The `ssl` option is required because this library and lori depend on the `ssl` p

Package: `stallion` (repo name is `stallion`, Pony package name is `stallion`)

Built on lori (v0.12.0). Lori provides raw TCP I/O with a connection-actor model: `_on_received(data: Array[U8] iso)` for incoming data, `TCPConnection.send(data): (SendToken | SendError)` for outgoing, plus backpressure notifications, SSL support, per-connection ASIO-level idle timers, and general-purpose one-shot timers.
Built on lori (v0.13.0). Lori provides raw TCP I/O with a connection-actor model: `_on_received(data: Array[U8] iso)` for incoming data, `TCPConnection.send(data): (SendToken | SendError)` for outgoing, plus backpressure notifications, SSL support, per-connection ASIO-level idle timers, and general-purpose one-shot timers.

### Key design decisions

Expand Down
2 changes: 1 addition & 1 deletion corral.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"deps": [
{
"locator": "github.com/ponylang/lori.git",
"version": "0.12.0"
"version": "0.13.0"
},
{
"locator": "github.com/ponylang/ssl.git",
Expand Down
Loading