Releases: palkan/acli
Releases · palkan/acli
0.6.0
Features
-
Adde
--pong
option to enable pong commands. -
Added
\h offset:<N>
support.
Now you can retrieve the last observed stream history by offset.
- Added messages meta information to output.
Now you can see history related information in addition to message contents:
{"action":"broadcast","test":3} # stream_id=all epoch=pHWQ offset=3
0.5.0
0.4.1
0.4.0
0.3.1
Features
- Add
--channel-params
option.
Now you can connect and subscribe to a parameterized channel via a single command.
Fixes
-
Fix using namespaced Ruby classes as channel names.
-
Handle
reject_subscription
message.
Changes
- Linux binaries are now statically compiled.
0.3.0
Features
- Add HTTP headers support.
Example:
acli -u example.com --headers="x-api-token:secret,cookie:username=John"
- Added
disconnect
messages support.
Changes
- Replaced
-m
option with--quit-after
.
Fixed
- Fixed query string support.
Now ?q=s
is passed to the server.
Support TLS
Secure connections are now supported (i.e. wss://...
).
Installation
- MacOS
curl -L https://github.com/palkan/acli/releases/download/0.2.0/acli-macos-x86_64 > /usr/local/bin/acli
chmod +x /usr/local/bin/acli
- Linux
curl -L https://github.com/palkan/acli/releases/download/0.2.0/acli-linux-x86_64 > /usr/local/bin/acli
chmod +x /usr/local/bin/acli
Initial release
Provides basic functionality:
-
Connect to Action Cable server (non-secure,
ws://
, only) -
Subscribe to a channel
-
Perform an action
-
Receive messages.