jup.sh 0.1.0-alpha.14 Draft Release Notes
Status: draft.
v0.1.0-alpha.14 is planned as an intent event log checkpoint. It adds a
local audit trail for review decisions and transaction request attempts before
the system supports real transaction construction or receipts.
This draft still does not sign, submit, confirm, or settle a transaction.
What This Draft Adds
- Local intent events API:
GET /api/intents/:intentId/events.
- CLI events command:
jup-sh intent events <intent_id> --json.
- Event append support for:
- review approval;
- review rejection;
- transaction request blocked by policy/review state;
- transaction request ready but not implemented.
eventCounton intent status summaries.- Server smoke coverage for transaction request and review events.
- Alpha CLI smoke coverage for review approval and rejection events.
Event Shape
Example:
{
"intentId": "intent_xxx",
"events": [
{
"at": "2026-05-12T00:00:00.000Z",
"type": "review.approved",
"reviewer": "local",
"reason": "known vendor"
}
]
}
Safety Boundary
The event log is a local audit scaffold. It is not an authenticated hosted audit trail and should not be treated as production compliance evidence.
The useful property is continuity: future transaction signatures, confirmations, and receipts can be appended to the same event timeline instead of appearing as disconnected state.
Current Boundary
The npm alpha package remains jup-sh@0.1.0-alpha.7 until a runtime release is
prepared and published.
Verification
Run:
npm run release:check