omq-cli 0.5.2 → 0.5.3
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 +8 -0
- data/lib/omq/cli/version.rb +1 -1
- data/lib/omq/cli.rb +6 -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: e279857e2f3a00719143f4a8e4acec228ec3dd4fff595762d8a46aa7d9205ac2
|
|
4
|
+
data.tar.gz: 9fd8f925a13d9e0f54eeea65f4b13153547b270173c3e1904d82318c50b08981
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 729730a75a5173ba8217e4ae3d28bafa42257332d0b8082df3b8267f224f398dd8da93dfa7db05970580dc40fe23bc511a3d4864b0fea75db1a5b55795b537a4
|
|
7
|
+
data.tar.gz: ae2e82d0661e30cb7746f10b82d489d4bbbbcfd77df134ac4ebc6e7fbef0bc107cd26761ad7c0dc7b52368a1c017095033fca53acdc33fe8028d3facab3b643a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.3 — 2026-04-07
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **HTTPS debug endpoint uses localhost.rb** — `OMQ_DEBUG_URI=https://...` now
|
|
8
|
+
uses `Localhost::Authority` for self-signed TLS, fixing "no shared cipher"
|
|
9
|
+
errors when accessing the async-debug web UI in a browser.
|
|
10
|
+
|
|
3
11
|
## 0.5.2 — 2026-04-07
|
|
4
12
|
|
|
5
13
|
### Fixed
|
data/lib/omq/cli/version.rb
CHANGED
data/lib/omq/cli.rb
CHANGED
|
@@ -211,7 +211,12 @@ module OMQ
|
|
|
211
211
|
if ENV["OMQ_DEBUG_URI"]
|
|
212
212
|
begin
|
|
213
213
|
require "async/debug"
|
|
214
|
-
debug_ep = Async::HTTP::Endpoint.parse
|
|
214
|
+
debug_ep = Async::HTTP::Endpoint.parse(ENV["OMQ_DEBUG_URI"])
|
|
215
|
+
if debug_ep.scheme == "https"
|
|
216
|
+
require "localhost"
|
|
217
|
+
debug_ep = Async::HTTP::Endpoint.parse(ENV["OMQ_DEBUG_URI"],
|
|
218
|
+
ssl_context: Localhost::Authority.fetch.server_context)
|
|
219
|
+
end
|
|
215
220
|
rescue LoadError
|
|
216
221
|
abort "OMQ_DEBUG_URI requires the async-debug gem: gem install async-debug"
|
|
217
222
|
end
|