raptor 0.15.0 → 0.15.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: 064ae83daf94da7f8f08e7e8ec641da9d340980d7b79b74f5135a0cb6bbba420
4
- data.tar.gz: a672546792de83d7567980cd37eb10d123a528b20c741ea03c9edd599e59dd92
3
+ metadata.gz: d2048ec0cf41ced4050d0b53949d96c71cfab42e921c05bd4db16e03099c441d
4
+ data.tar.gz: 5c0eacc1154ea6e8ed72ccd29dee4770347dbf773f8087895b9de2be1b9c699b
5
5
  SHA512:
6
- metadata.gz: 558d707115b817ab6312c0c2b9ea118953b30a642d7d2b6fc7dffd8544fc3cf85b5add06eb97f4db837568cb67fca32f833a729adc89c9d62af2b2194243125f
7
- data.tar.gz: a6a82af2ad505fd6c452f957b126c58522848163e80df0b6b856054c345837f4c46ce458370670c1a62f33255cfcd24c21df77bb0e556cd4c6f6d53485b95bfb
6
+ metadata.gz: 3844c94223e342793ce75e329f4c86dab40ce353a6d7041e06d4c01f26569102df7a26bba0324f829558363d254e7521862fbe2f846b0de4c1af55f2a1f59062
7
+ data.tar.gz: d595b6670b26bc19a8805c48d17bd44ebc5a1e075a8b8cc44db811a0b5f79052862ad160514d109758271010161c5fd9b516e71ef9a2637a7fff25e64aafac2b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.15.1] - 2026-08-16
4
+
5
+ - Regenerate the server RBS signatures
6
+
3
7
  ## [0.15.0] - 2026-08-16
4
8
 
5
9
  - Yield between accepts when the thread pool queue exceeds the pool size
data/README.md CHANGED
@@ -37,7 +37,7 @@ run proc { |_env| [200, { "content-type" => "text/plain" }, ["Hello, World!"]] }
37
37
  ```
38
38
  > bundle exec raptor -w 4 -t 3 hello_world.ru
39
39
  [Raptor 33061|Main|Main] Cluster initializing:
40
- [Raptor 33061|Main|Main] ├─ Version: 0.15.0
40
+ [Raptor 33061|Main|Main] ├─ Version: 0.15.1
41
41
  [Raptor 33061|Main|Main] ├─ Ruby Version: ruby 4.0.6 (2026-07-14 revision 03b6d3f889) +YJIT +PRISM [arm64-darwin23]
42
42
  [Raptor 33061|Main|Main] ├─ Environment: development
43
43
  [Raptor 33061|Main|Main] ├─ Master PID: 33061
@@ -193,7 +193,7 @@ Worker 1 (phase 0): pid=91351, requests=1199, busy=1/3, backlog=0, booted, last_
193
193
 
194
194
  ## (Micro) Benchmarks
195
195
 
196
- Raptor 0.15.0 vs Puma 8.0.2 vs PumaPlus 0.1.0 vs Falcon 0.57.0 across two workload profiles. **IO-bound** is a GET
196
+ Raptor 0.15.1 vs Puma 8.0.2 vs PumaPlus 0.1.0 vs Falcon 0.57.0 across two workload profiles. **IO-bound** is a GET
197
197
  endpoint that interleaves 5-10 short sleeps (total 2.5-15ms) with small CPU work, simulating a read path that makes
198
198
  several DB or cache calls. **CPU-bound** is a POST endpoint that accepts a small JSON body, interleaves 3-5 chunks of
199
199
  JSON item building (total 450-1500 items) with sub-100µs sleeps, and returns the built array, simulating a write path
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Raptor
5
- VERSION = "0.15.0"
5
+ VERSION = "0.15.1"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raptor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Young