omq-cli 0.14.5 → 0.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/omq/cli/base_runner.rb +1 -1
- data/lib/omq/cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e3050d7165339cb111711aebe54240077303952ae7f8ff149bcbc04584bbd43
|
|
4
|
+
data.tar.gz: a58e91a00af3189aa8ac183d39637744e34311f8e99f53ffdfaf8c5681f0ab31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1c6dbcd552e0d808a0a130eab0cda40c90a03636df335c132da2d6ca754cc94be66edd8798d0768d74b698c9886b88d887ab71d7bc25ed5478035d20899fae1
|
|
7
|
+
data.tar.gz: 9ac43e61b051ae44e7475dc640109cc227dffc81cae115d515960880d0de95afadda75a993e1c965d73e4cbc13a770e94913c0b912f0355e7ec2084421577881
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.14.6 — 2026-04-14
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **Bare `omq push -c tcp://…` on a terminal no longer exits
|
|
8
|
+
immediately.** `BaseRunner#run_send_logic` only fell through to
|
|
9
|
+
`run_stdin_send` when `stdin_ready?` was true, and `stdin_ready?`
|
|
10
|
+
hard-codes `false` on a tty — so `omq push` / `omq pub` /
|
|
11
|
+
`omq scatter` / `omq radio` / `omq pair` with no `-d` / `-f` /
|
|
12
|
+
`-e` / `-I` connected, sent nothing, and disconnected. The
|
|
13
|
+
elsif now also matches `config.stdin_is_tty`, so an interactive
|
|
14
|
+
run reads lines from the terminal the way `omq req` and
|
|
15
|
+
`omq rep` already did.
|
|
16
|
+
|
|
3
17
|
## 0.14.5 — 2026-04-14
|
|
4
18
|
|
|
5
19
|
### Fixed
|
data/lib/omq/cli/base_runner.rb
CHANGED
|
@@ -207,7 +207,7 @@ module OMQ
|
|
|
207
207
|
elsif config.data || config.file
|
|
208
208
|
parts = eval_send_expr(read_next)
|
|
209
209
|
send_msg(parts) if parts
|
|
210
|
-
elsif stdin_ready?
|
|
210
|
+
elsif stdin_ready? || config.stdin_is_tty
|
|
211
211
|
run_stdin_send(n)
|
|
212
212
|
elsif @send_eval_proc
|
|
213
213
|
parts = eval_send_expr(nil)
|
data/lib/omq/cli/version.rb
CHANGED