hyperion-rb 1.0.0.rc18 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d339041ba36ea34d86f65b15d4160dc3e8e3484e793b59bb6bd4381e496d6ef7
4
- data.tar.gz: 156ba026f90f7d422623be5d1f708d45d328567a7f708ac788f91fea80f5d63b
3
+ metadata.gz: 65702226f151c3ba8314ac5927575595aeda57a522d045cc61feaf04f87bae53
4
+ data.tar.gz: 704454f1d7b5e484b70bc09baf7047d9a6760f9a1d824402092455c4af63a8d8
5
5
  SHA512:
6
- metadata.gz: 8b8a5516872e28faa553398dcd8fb3debfc41d6e3a17e7cb31563f8a4db7a52044984826909015a31f8176e5fcebffeba4ec3129b0891f6c773a938b41ee1e0c
7
- data.tar.gz: f8c9fb9a2f0bd2935aa8d70b191107923870aaeb0030e6357f4f30469ec1284e3432dc3706168537c1218fa95a3ce3f0cc6e1fb9f56349b6ab7cf580aae7263c
6
+ metadata.gz: e210752143a969e8070de69bcf81bbc40dd509d827cb8f70dbcf44bdc1fb3692c9110000a732e2bdeb6185ea52fd07416f3d1fdc56005c5fd4dcca1e99e60fd3
7
+ data.tar.gz: 0fa86fc58fa590087cb84948569be3968a4e7515a9fd8f9de28cc191bb6c8ddb8b5d016fa4b66ed142aaa01555357320ba62bbc7bc71abf3a96cbbfd4c3be457
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.1] - 2026-04-26
4
+
5
+ ### Fixed
6
+ - Bumped `required_ruby_version` floor from `>= 3.2.0` to `>= 3.3.0` to match actual transitive dependency reality (`protocol-http2 ~> 0.26` requires Ruby >= 3.3). Previously, installing on Ruby 3.2 produced an opaque dep-resolution error mentioning protocol-http2 instead of a clean Ruby-version mismatch.
7
+ - CI matrix dropped `3.2.x` for the same reason.
8
+
9
+ ## [1.0.0] - 2026-04-26
10
+
11
+ First stable release. Same code as rc18; promoted from prerelease after smoke
12
+ install + memory profile + cross-platform CI verification.
13
+
14
+ ## [1.0.0.rc18] - 2026-04-26
15
+
16
+ ### Fixed
17
+ - **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.
18
+ - **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.
19
+
20
+ ### Added
21
+ - **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.
22
+
3
23
  ## [1.0.0.rc17] - 2026-04-26
4
24
 
5
25
  ### Performance
data/README.md CHANGED
@@ -7,7 +7,7 @@ High-performance Ruby HTTP server. Falcon-class fiber concurrency, Puma-class co
7
7
  [![License: MIT](https://img.shields.io/github/license/andrew-woblavobla/hyperion.svg)](https://github.com/andrew-woblavobla/hyperion/blob/master/LICENSE)
8
8
 
9
9
  ```sh
10
- gem install hyperion-rb --pre
10
+ gem install hyperion-rb
11
11
  bundle exec hyperion config.ru
12
12
  ```
13
13
 
@@ -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.1'
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Lobanov
@@ -181,7 +181,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
181
181
  requirements:
182
182
  - - ">="
183
183
  - !ruby/object:Gem::Version
184
- version: 3.2.0
184
+ version: 3.3.0
185
185
  required_rubygems_version: !ruby/object:Gem::Requirement
186
186
  requirements:
187
187
  - - ">="