Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
594c522
Initial develop import
wtfsayo May 14, 2026
5ab639f
chore(deps): bump sha2 from 0.10.9 to 0.11.0
dependabot[bot] May 14, 2026
5e22929
docs: align agent docs with current CLI
wtfsayo May 14, 2026
94a6063
ci: remove gitleaks secret scan
wtfsayo May 14, 2026
1134d53
fix(feedback): rate limit worker submissions
wtfsayo May 14, 2026
d9bfbec
fix(feedback): tighten worker rate limits
wtfsayo May 14, 2026
55c68dc
docs(skill): align external skill metadata
wtfsayo May 14, 2026
fe1d0e8
fix(feedback): configure release endpoint and rate limit attribution
wtfsayo May 14, 2026
53f7bbe
test(feedback): assert rate limits in json output
wtfsayo May 14, 2026
8287559
Add default builder approval during setup
wtfsayo May 14, 2026
2bf73af
fix(setup): tolerate builder approval failures
wtfsayo May 14, 2026
07127eb
test: align transfer json confirmation expectation
wtfsayo May 14, 2026
aed24de
docs: restore required readme sections
wtfsayo May 14, 2026
1e5f8cd
Clean up test imports and add -y flags
wtfsayo May 14, 2026
41bad65
Add env_guard test helper and minor cleanups
wtfsayo May 14, 2026
b12cd5d
test: satisfy clippy assertions
wtfsayo May 14, 2026
8f6fc74
test: align wallet JSON prompts with machine policy
wtfsayo May 14, 2026
8779182
Revise README to emphasize agent-first CLI
wtfsayo May 14, 2026
7eaba7d
Build(deps): bump rpassword from 7.5.1 to 7.5.2
dependabot[bot] May 14, 2026
f7b8248
Build(deps): bump hypersdk from 0.2.10 to 0.2.11
dependabot[bot] May 14, 2026
2365aa5
Build(deps): bump alloy from 1.8.3 to 2.0.4
dependabot[bot] May 14, 2026
69ef730
Build(deps): bump rand from 0.9.4 to 0.10.1
dependabot[bot] May 14, 2026
78cea0f
Merge remote-tracking branch 'origin/main' into develop
wtfsayo May 14, 2026
d7cb9d8
ci: use current Intel macOS release runner
wtfsayo May 14, 2026
f3f9861
Merge pull request #7 from hypurrclaw/dependabot/cargo/rpassword-7.5.2
wtfsayo May 14, 2026
8b76749
Merge pull request #8 from hypurrclaw/dependabot/cargo/hypersdk-0.2.11
wtfsayo May 14, 2026
ded3a08
Merge pull request #9 from hypurrclaw/dependabot/cargo/alloy-2.0.4
wtfsayo May 14, 2026
b9b0c72
Merge pull request #10 from hypurrclaw/dependabot/cargo/rand-0.10.1
wtfsayo May 14, 2026
2b90cf5
Merge branch 'develop' of https://github.com/hypurrclaw/hyperliquid-c…
wtfsayo May 15, 2026
c74a3ac
Merge remote-tracking branch 'origin/main' into develop
wtfsayo May 15, 2026
12234e8
fix: align alloy and rand dependency updates
wtfsayo May 15, 2026
faeabd7
fix: keep hypersdk signer compatibility
wtfsayo May 15, 2026
f49971c
Merge pull request #11 from hypurrclaw/dependabot/cargo/alloy-signer-…
wtfsayo May 15, 2026
c1f58a6
fix: refresh qa command matrix fixtures
wtfsayo May 15, 2026
1e051f1
fix: anchor alloy v1 signer feature
wtfsayo May 15, 2026
d0d09dc
docs: clarify dual alloy signer compatibility
wtfsayo May 15, 2026
3440982
fix: harden order lifecycle safety
wtfsayo May 16, 2026
5b43263
docs: clarify signer and acting-account selectors
wtfsayo May 16, 2026
9bf98d6
Merge pull request #14 from hypurrclaw/fix/order-safety-parity
wtfsayo May 16, 2026
dda4069
chore: prepare v0.11.0 release
wtfsayo May 16, 2026
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
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
inputs:
tag:
description: "Tag to package without publishing a release"
description: "Optional label for a manual packaging run; tag pushes publish releases"
required: false

permissions:
Expand Down Expand Up @@ -51,6 +51,10 @@ jobs:
with:
key: release-${{ matrix.target }}

- name: Pre-release repository health check
shell: bash
run: bash scripts/pre-release-check.sh

- name: Build release binary
env:
HYPERLIQUID_DEFAULT_BUILDER_ADDRESS: ${{ vars.HYPERLIQUID_DEFAULT_BUILDER_ADDRESS }}
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.11.0 - 2026-05-17

Highlights:

- Hardened order lifecycle safety for `--on-behalf-of` across cancel, cancel-all, modify, TP/SL, TWAP, and scheduled cancel flows so acting-account selectors are carried into lookups, dry-run previews, and live `vaultAddress` submissions.
- Added prompt-gated safety for mainnet scheduled cancel-all actions, including `--yes` bypass support for intentional automation.
- Clarified signer versus acting-account selector semantics in public docs and machine-readable schemas.
- Preserved Hypersdk / Alloy 1 signer compatibility while allowing app-level Alloy 2 helpers and refreshed dependency pins for `hypersdk`, `alloy`, `rand`, `rpassword`, and `sha2`.
- Refreshed QA command matrix fixtures and bounded subscription output checks for agent-safe automation.
- Aligned release packaging and pre-release health checks for Linux, macOS, and Windows artifacts, plus self-update asset lookup for the supported Linux/macOS tarballs.

## 0.1.0 - 2026-05-15

Initial public release of `hyperliquid-cli`.
Expand Down
Loading
Loading