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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -0
  3. data/lib/hyperion/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d339041ba36ea34d86f65b15d4160dc3e8e3484e793b59bb6bd4381e496d6ef7
4
- data.tar.gz: 156ba026f90f7d422623be5d1f708d45d328567a7f708ac788f91fea80f5d63b
3
+ metadata.gz: 85d66793d64b68cd4a7abcabddbe39f0bff7e2f2ba79b94ea1e3347badd0cee5
4
+ data.tar.gz: f1f42a47ce8849487f56c14b2e1ac1787f02617cc28972ecfd904233663b9acf
5
5
  SHA512:
6
- metadata.gz: 8b8a5516872e28faa553398dcd8fb3debfc41d6e3a17e7cb31563f8a4db7a52044984826909015a31f8176e5fcebffeba4ec3129b0891f6c773a938b41ee1e0c
7
- data.tar.gz: f8c9fb9a2f0bd2935aa8d70b191107923870aaeb0030e6357f4f30469ec1284e3432dc3706168537c1218fa95a3ce3f0cc6e1fb9f56349b6ab7cf580aae7263c
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hyperion
4
- VERSION = '1.0.0.rc18'
4
+ VERSION = '1.0.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyperion-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc18
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Lobanov