hyperion-rb 1.0.0.rc18 → 1.0.0
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/hyperion/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: 85d66793d64b68cd4a7abcabddbe39f0bff7e2f2ba79b94ea1e3347badd0cee5
|
|
4
|
+
data.tar.gz: f1f42a47ce8849487f56c14b2e1ac1787f02617cc28972ecfd904233663b9acf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d028d0c624bf56d64cc6b9859043deeec7c2c7c677a632d5a890cb6190468f97cc2632fccd9d90a6e1f5c4fcedd056c326e0873f012a3ac09a1546f931793ec
|
|
7
|
+
data.tar.gz: fbcb9b5fec440bf89fe54d3744bdab755582809aaeb4f7f098b7f4d7678e60f494cf5395f7ed6d05a8ebeb816c9e8c3bd7ced0da18d126b4812e22084883342d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.0] - 2026-04-26
|
|
4
|
+
|
|
5
|
+
First stable release. Same code as rc18; promoted from prerelease after smoke
|
|
6
|
+
install + memory profile + cross-platform CI verification.
|
|
7
|
+
|
|
8
|
+
## [1.0.0.rc18] - 2026-04-26
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Silent stdout when redirected** — `Logger#initialize` now sets `@out.sync = @err.sync = true` on real `IO` destinations so log lines reach the consumer immediately even when stdout is piped (Docker, systemd, kubectl logs). Without this, Ruby/glibc 4-KiB block-buffered short writes and operators saw nothing until the buffer filled.
|
|
12
|
+
- **Bundler auto-require footgun** — added `lib/hyperion-rb.rb` 1-line shim so `gem 'hyperion-rb'` in a Gemfile (with implicit auto-require) works without `require: 'hyperion'`. The canonical `require 'hyperion'` continues to work.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **TLS chain support** — `--tls-cert PATH` now parses a multi-cert PEM (leaf + intermediate). The leaf is presented as the server cert; subsequent certs become `extra_chain_cert` so production deployments with intermediate CAs work without manual config gymnastics. New spec covers the 2-cert chain handshake.
|
|
16
|
+
|
|
3
17
|
## [1.0.0.rc17] - 2026-04-26
|
|
4
18
|
|
|
5
19
|
### Performance
|
data/lib/hyperion/version.rb
CHANGED