puma 3.6.2 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puma might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +3 -4
- data/{History.txt → History.md} +121 -82
- data/Manifest.txt +1 -3
- data/README.md +7 -1
- data/Rakefile +4 -4
- data/docs/systemd.md +27 -0
- data/ext/puma_http11/http11_parser.c +1 -0
- data/ext/puma_http11/http11_parser.h +1 -0
- data/ext/puma_http11/http11_parser.rl +1 -0
- data/ext/puma_http11/io_buffer.c +7 -7
- data/ext/puma_http11/mini_ssl.c +17 -6
- data/ext/puma_http11/puma_http11.c +1 -0
- data/lib/puma.rb +5 -5
- data/lib/puma/binder.rb +6 -3
- data/lib/puma/cli.rb +3 -0
- data/lib/puma/client.rb +4 -4
- data/lib/puma/cluster.rb +25 -4
- data/lib/puma/commonlogger.rb +19 -20
- data/lib/puma/compat.rb +3 -7
- data/lib/puma/configuration.rb +3 -1
- data/lib/puma/const.rb +7 -36
- data/lib/puma/control_cli.rb +27 -27
- data/lib/puma/detect.rb +3 -1
- data/lib/puma/events.rb +5 -6
- data/lib/puma/io_buffer.rb +1 -1
- data/lib/puma/launcher.rb +10 -9
- data/lib/puma/null_io.rb +6 -13
- data/lib/puma/rack/builder.rb +3 -0
- data/lib/puma/rack/urlmap.rb +9 -8
- data/lib/puma/runner.rb +11 -0
- data/lib/puma/single.rb +2 -0
- data/lib/puma/thread_pool.rb +13 -13
- data/lib/puma/util.rb +1 -5
- data/lib/rack/handler/puma.rb +9 -2
- data/puma.gemspec +1 -1
- data/tools/jungle/init.d/README.md +7 -2
- data/tools/jungle/init.d/puma +1 -1
- metadata +7 -9
- data/lib/puma/rack/backports/uri/common_18.rb +0 -59
- data/lib/puma/rack/backports/uri/common_192.rb +0 -55
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc3c48f788e2c231b8c32f2fb614bfe64254d472
|
4
|
+
data.tar.gz: 15c2ef0421bfbdc5d865ff00120e2a403c10112b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 994b8585be5cb983fed367e55fa47b92f433de644c791622f99b47fdc3006469f70d41b73ff6e691be6bd52cc79e55d5d7eb5956eea82cdc978b33a86eb8590f
|
7
|
+
data.tar.gz: 369f7e8e50ce92734b5d3d53bf2e26b3d1d3a6a0bc9f74f8d0c2f9c9ab9510a17cde417db19b322459184eca874e6997f22fdb930bd543dd88539d174cc6e3e1
|
data/Gemfile
CHANGED
@@ -1,13 +1,12 @@
|
|
1
|
-
source "
|
1
|
+
source "https://rubygems.org"
|
2
2
|
|
3
3
|
gem "hoe"
|
4
4
|
gem "hoe-git"
|
5
5
|
gem "hoe-ignore"
|
6
6
|
gem "rdoc"
|
7
7
|
gem "rake-compiler"
|
8
|
-
gem "test-unit", "~> 3.0"
|
9
8
|
|
10
|
-
gem "rack"
|
11
|
-
gem
|
9
|
+
gem "rack", "< 3.0"
|
10
|
+
gem "minitest", "~> 5.9"
|
12
11
|
|
13
12
|
gem "jruby-openssl", :platform => "jruby"
|
data/{History.txt → History.md}
RENAMED
@@ -1,12 +1,51 @@
|
|
1
|
-
|
1
|
+
## 3.7.0 / 2017-01-04
|
2
|
+
|
3
|
+
* 6 minor features:
|
4
|
+
* Allow rack handler to accept ssl host. (#1129)
|
5
|
+
* Refactor TTOU processing. TTOU now handles multiple signals at once. (#1165)
|
6
|
+
* Pickup any remaining chunk data as the next request.
|
7
|
+
* Prevent short term thread churn - increased auto trim default to 30 seconds.
|
8
|
+
* Raise error when `stdout` or `stderr` is not writable. (#1175)
|
9
|
+
* Add Rack 2.0 support to gemspec. (#1068)
|
10
|
+
|
11
|
+
* 5 refactors:
|
12
|
+
* Compare host and server name only once per call. (#1091)
|
13
|
+
* Minor refactor on Thread pool (#1088)
|
14
|
+
* Removed a ton of unused constants, variables and files.
|
15
|
+
* Use MRI macros when allocating heap memory
|
16
|
+
* Use hooks for on_booted event. (#1160)
|
17
|
+
|
18
|
+
* 14 bugfixes:
|
19
|
+
* Add eof? method to NullIO? (#1169)
|
20
|
+
* Fix Puma startup in provided init.d script (#1061)
|
21
|
+
* Fix default SSL mode back to none. (#1036)
|
22
|
+
* Fixed the issue of @listeners getting nil io (#1120)
|
23
|
+
* Make `get_dh1024` compatible with OpenSSL v1.1.0 (#1178)
|
24
|
+
* More gracefully deal with SSL sessions. Fixes #1002
|
25
|
+
* Move puma.rb to just autoloads. Fixes #1063
|
26
|
+
* MiniSSL: Provide write as <<. Fixes #1089
|
27
|
+
* Prune bundler should inherit fds (#1114)
|
28
|
+
* Replace use of Process.getpgid which does not behave as intended on all platforms (#1110)
|
29
|
+
* Transfer encoding header should be downcased before comparison (#1135)
|
30
|
+
* Use same write log logic for hijacked requests. (#1081)
|
31
|
+
* Fix `uninitialized constant Puma::StateFile` (#1138)
|
32
|
+
* Fix access priorities of each level in LeveledOptions (#1118)
|
33
|
+
|
34
|
+
* 3 others:
|
35
|
+
|
36
|
+
* Lots of tests added/fixed/improved. Switched to Minitest from Test::Unit. Big thanks to @frodsan.
|
37
|
+
* Lots of documentation added/improved.
|
38
|
+
* Add license indicators to the HTTP extension. (#1075)
|
39
|
+
|
40
|
+
## 3.6.2 / 2016-11-22
|
2
41
|
|
3
42
|
* 1 bug fix:
|
4
43
|
|
5
44
|
* Revert #1118/Fix access priorities of each level in LeveledOptions. This
|
6
45
|
had an unintentional side effect of changing the importance of command line
|
7
|
-
options, such as -p.
|
46
|
+
options, such as -p.
|
8
47
|
|
9
|
-
|
48
|
+
## 3.6.1 / 2016-11-21
|
10
49
|
|
11
50
|
* 8 bug fixes:
|
12
51
|
|
@@ -24,13 +63,13 @@
|
|
24
63
|
* Nate Berkopec (@nateberkopec)
|
25
64
|
* Richard Schneeman (@schneems)
|
26
65
|
|
27
|
-
|
66
|
+
## 3.6.0 / 2016-07-24
|
28
67
|
|
29
68
|
* 12 bug fixes:
|
30
69
|
* Add ability to detect a shutting down server. Fixes #932
|
31
70
|
* Add support for Expect: 100-continue. Fixes #519
|
32
71
|
* Check SSLContext better. Fixes #828
|
33
|
-
* Clarify behavior of '-t
|
72
|
+
* Clarify behavior of '-t num'. Fixes #984
|
34
73
|
* Don't default to VERIFY_PEER. Fixes #1028
|
35
74
|
* Don't use ENV['PWD'] on windows. Fixes #1023
|
36
75
|
* Enlarge the scope of catching app exceptions. Fixes #1027
|
@@ -40,7 +79,7 @@
|
|
40
79
|
* Just rescue exception to return a 500. Fixes #1027
|
41
80
|
* Redirect IO in the jruby daemon mode. Fixes #778
|
42
81
|
|
43
|
-
|
82
|
+
## 3.5.2 / 2016-07-20
|
44
83
|
|
45
84
|
* 1 bug fix:
|
46
85
|
* Don't let persistent_timeout be nil
|
@@ -48,12 +87,12 @@
|
|
48
87
|
* 1 PR merged:
|
49
88
|
* Merge pull request #1021 from benzrf/patch-1
|
50
89
|
|
51
|
-
|
90
|
+
## 3.5.1 / 2016-07-20
|
52
91
|
|
53
92
|
* 1 bug fix:
|
54
93
|
* Be sure to only listen on host:port combos once. Fixes #1022
|
55
94
|
|
56
|
-
|
95
|
+
## 3.5.0 / 2016-07-18
|
57
96
|
|
58
97
|
* 1 minor features:
|
59
98
|
* Allow persistent_timeout to be configured via the dsl.
|
@@ -92,7 +131,7 @@
|
|
92
131
|
* Merge pull request #981 from zach-chai/patch-1
|
93
132
|
* Merge pull request #993 from scorix/master
|
94
133
|
|
95
|
-
|
134
|
+
## 3.4.0 / 2016-04-07
|
96
135
|
|
97
136
|
* 2 minor features:
|
98
137
|
* Add ability to force threads to stop on shutdown. Fixes #938
|
@@ -115,7 +154,7 @@
|
|
115
154
|
* Merge pull request #946 from vipulnsward/rm-pid
|
116
155
|
* Merge pull request #947 from vipulnsward/housekeeping-typos
|
117
156
|
|
118
|
-
|
157
|
+
## 3.3.0 / 2016-04-05
|
119
158
|
|
120
159
|
* 2 minor features:
|
121
160
|
* Allow overriding options of Configuration object
|
@@ -130,7 +169,7 @@
|
|
130
169
|
* Merge pull request #940 from kyledrake/signalsdoc
|
131
170
|
* Merge pull request #942 from dekellum/socket-activate-improve
|
132
171
|
|
133
|
-
|
172
|
+
## 3.2.0 / 2016-03-20
|
134
173
|
|
135
174
|
* 1 deprecation removal:
|
136
175
|
* Delete capistrano.rb
|
@@ -144,7 +183,7 @@
|
|
144
183
|
* Merge pull request #927 from jlecour/gemfile_variants
|
145
184
|
* Merge pull request #931 from joneslee85/patch-10
|
146
185
|
|
147
|
-
|
186
|
+
## 3.1.1 / 2016-03-17
|
148
187
|
|
149
188
|
* 4 bug fixes:
|
150
189
|
* Disable USR1 usage on JRuby
|
@@ -157,7 +196,7 @@
|
|
157
196
|
* Merge pull request #921 from swrobel/patch-1
|
158
197
|
* Merge pull request #924 from tbrisker/patch-1
|
159
198
|
|
160
|
-
|
199
|
+
## 3.1.0 / 2016-03-05
|
161
200
|
|
162
201
|
* 1 minor feature:
|
163
202
|
* Add 'import' directive to config file. Fixes #916
|
@@ -168,7 +207,7 @@
|
|
168
207
|
* Recreate the proper args manually. Fixes #910
|
169
208
|
* Require 'time' to get iso8601. Fixes #914
|
170
209
|
|
171
|
-
|
210
|
+
## 3.0.2 / 2016-02-26
|
172
211
|
|
173
212
|
* 5 bug fixes:
|
174
213
|
|
@@ -184,7 +223,7 @@
|
|
184
223
|
* Merge pull request #902 from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
|
185
224
|
* Merge pull request #905 from Eric-Guo/master
|
186
225
|
|
187
|
-
|
226
|
+
## 3.0.1 / 2016-02-25
|
188
227
|
|
189
228
|
* 1 bug fix:
|
190
229
|
|
@@ -192,7 +231,7 @@
|
|
192
231
|
websockets entirely. Seems no server has both hijack and async.callback
|
193
232
|
and thus faye is totally confused what to do and doesn't work.
|
194
233
|
|
195
|
-
|
234
|
+
## 3.0.0 / 2016-02-25
|
196
235
|
|
197
236
|
* 2 major changes:
|
198
237
|
|
@@ -242,7 +281,7 @@
|
|
242
281
|
* Merge pull request #897 from zendesk/master
|
243
282
|
* Merge pull request #899 from kch/kch-readme-fixes
|
244
283
|
|
245
|
-
|
284
|
+
## 2.16.0 / 2016-01-27
|
246
285
|
|
247
286
|
* 7 minor features:
|
248
287
|
|
@@ -282,13 +321,13 @@
|
|
282
321
|
* Merge pull request #860 from zendesk/expose_old_worker_count
|
283
322
|
* Merge pull request #861 from zendesk/allow_control_url_umask
|
284
323
|
|
285
|
-
|
324
|
+
## 2.15.3 / 2015-11-07
|
286
325
|
|
287
326
|
* 1 bug fix:
|
288
327
|
|
289
328
|
* Fix JRuby parser
|
290
329
|
|
291
|
-
|
330
|
+
## 2.15.2 / 2015-11-06
|
292
331
|
|
293
332
|
* 2 bug fixes:
|
294
333
|
* ext/puma_http11: handle duplicate headers as per RFC
|
@@ -298,13 +337,13 @@
|
|
298
337
|
* Merge pull request #818 from unleashed/support-duplicate-headers
|
299
338
|
* Merge pull request #819 from VictorLowther/fix-ca-and-verify_null-exception
|
300
339
|
|
301
|
-
|
340
|
+
## 2.15.1 / 2015-11-06
|
302
341
|
|
303
342
|
* 1 bug fix:
|
304
343
|
|
305
344
|
* Allow older openssl versions
|
306
345
|
|
307
|
-
|
346
|
+
## 2.15.0 / 2015-11-06
|
308
347
|
|
309
348
|
* 6 minor features:
|
310
349
|
* Allow setting ca without setting a verify mode
|
@@ -353,7 +392,7 @@
|
|
353
392
|
* Merge pull request #814 from schneems/schneems/worker_timeout-docs
|
354
393
|
* Merge pull request #817 from unleashed/worker-boot-timeout
|
355
394
|
|
356
|
-
|
395
|
+
## 2.14.0 / 2015-09-18
|
357
396
|
|
358
397
|
* 1 minor feature:
|
359
398
|
* Make building with SSL support optional
|
@@ -361,33 +400,33 @@
|
|
361
400
|
* 1 bug fix:
|
362
401
|
* Use Rack::Builder if available. Fixes #735
|
363
402
|
|
364
|
-
|
403
|
+
## 2.13.4 / 2015-08-16
|
365
404
|
|
366
405
|
* 1 bug fix:
|
367
406
|
* Use the environment possible set by the config early and from
|
368
407
|
the config file later (if set).
|
369
408
|
|
370
|
-
|
409
|
+
## 2.13.3 / 2015-08-15
|
371
410
|
|
372
411
|
Seriously, I need to revamp config with tests.
|
373
412
|
|
374
413
|
* 1 bug fix:
|
375
414
|
* Fix preserving options before cleaning for state. Fixes #769
|
376
415
|
|
377
|
-
|
416
|
+
## 2.13.2 / 2015-08-15
|
378
417
|
|
379
418
|
The "clearly I don't have enough tests for the config" release.
|
380
419
|
|
381
420
|
* 1 bug fix:
|
382
421
|
* Fix another place binds wasn't initialized. Fixes #767
|
383
422
|
|
384
|
-
|
423
|
+
## 2.13.1 / 2015-08-15
|
385
424
|
|
386
425
|
* 2 bug fixes:
|
387
426
|
* Fix binds being masked in config files. Fixes #765
|
388
427
|
* Use options from the config file properly in pumactl. Fixes #764
|
389
428
|
|
390
|
-
|
429
|
+
## 2.13.0 / 2015-08-14
|
391
430
|
|
392
431
|
* 1 minor feature:
|
393
432
|
* Add before_fork hooks option.
|
@@ -406,7 +445,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
406
445
|
* Merge pull request #759 from BenV/fix-centos6-build
|
407
446
|
* Merge pull request #761 from looker/no-log
|
408
447
|
|
409
|
-
|
448
|
+
## 2.12.3 / 2015-08-03
|
410
449
|
|
411
450
|
* 8 minor bugs fixed:
|
412
451
|
* Fix Capistrano 'uninitialized constant Puma' error.
|
@@ -427,13 +466,13 @@ The "clearly I don't have enough tests for the config" release.
|
|
427
466
|
* 1 test fix:
|
428
467
|
* Add 1.8.7, rbx-1 (allow failures) to Travis.
|
429
468
|
|
430
|
-
|
469
|
+
## 2.12.2 / 2015-07-17
|
431
470
|
|
432
471
|
* 2 bug fix:
|
433
472
|
* Pull over and use Rack::URLMap. Fixes #741
|
434
473
|
* Stub out peercert on JRuby for now. Fixes #739
|
435
474
|
|
436
|
-
|
475
|
+
## 2.12.1 / 2015-07-16
|
437
476
|
|
438
477
|
* 2 bug fixes:
|
439
478
|
* Use a constant format. Fixes #737
|
@@ -445,7 +484,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
445
484
|
* 1 PR merged:
|
446
485
|
* Merge pull request #736 from paulanunda/paulanunda/typo-fix
|
447
486
|
|
448
|
-
|
487
|
+
## 2.12.0 / 2015-07-14
|
449
488
|
|
450
489
|
* 13 bug fixes:
|
451
490
|
* Add thread reaping to thread pool
|
@@ -494,7 +533,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
494
533
|
* Merge pull request #729 from allaire/patch-1
|
495
534
|
* Merge pull request #730 from iamjarvo/container-infrastructure
|
496
535
|
|
497
|
-
|
536
|
+
## 2.11.3 / 2015-05-18
|
498
537
|
|
499
538
|
* 5 bug fixes:
|
500
539
|
* Be sure to unlink tempfiles after a request. Fixes #690
|
@@ -505,7 +544,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
505
544
|
* 1 PR merged:
|
506
545
|
* Merge pull request #698 from looker/hang-handshake
|
507
546
|
|
508
|
-
|
547
|
+
## 2.11.2 / 2015-04-11
|
509
548
|
|
510
549
|
* 2 minor features:
|
511
550
|
* Add `on_worker_fork` hook, which allows to mimic Unicorn's behavior
|
@@ -528,7 +567,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
528
567
|
* Merge pull request #667 from JuanitoFatas/doc/gemspec
|
529
568
|
* Merge pull request #672 from chulkilee/refactor
|
530
569
|
|
531
|
-
|
570
|
+
## 2.11.1 / 2015-02-11
|
532
571
|
|
533
572
|
* 2 bug fixes:
|
534
573
|
* Avoid crash in strange restart conditions
|
@@ -538,7 +577,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
538
577
|
* Merge pull request #644 from bpaquet/master
|
539
578
|
* Merge pull request #646 from mkonecny/master
|
540
579
|
|
541
|
-
|
580
|
+
## 2.11.0 / 2015-01-20
|
542
581
|
|
543
582
|
* 9 bug fixes:
|
544
583
|
* Add mode as an additional bind option to unix sockets. Fixes #630
|
@@ -571,7 +610,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
571
610
|
* Merge pull request #639 from ebeigarts/fix-phased-restarts
|
572
611
|
* Merge pull request #640 from codehotter/issue-612-dependent-requests-deadlock
|
573
612
|
|
574
|
-
|
613
|
+
## 2.10.2 / 2014-11-26
|
575
614
|
|
576
615
|
* 1 bug fix:
|
577
616
|
* Conditionalize thread local cleaning, fixes perf degradation fix
|
@@ -579,7 +618,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
579
618
|
overhead to a each request, so it has to be turned on explicitly
|
580
619
|
if a user needs it.
|
581
620
|
|
582
|
-
|
621
|
+
## 2.10.1 / 2014-11-24
|
583
622
|
|
584
623
|
* 1 bug fix:
|
585
624
|
* Load the app after daemonizing because the app might start threads.
|
@@ -590,7 +629,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
590
629
|
If you're app has problems starting up, start it without daemon mode initially
|
591
630
|
to test.
|
592
631
|
|
593
|
-
|
632
|
+
## 2.10.0 / 2014-11-23
|
594
633
|
|
595
634
|
* 3 minor features:
|
596
635
|
* Added on_worker_shutdown hook mechanism
|
@@ -619,7 +658,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
619
658
|
* Merge pull request #608 from Gu1/master
|
620
659
|
* Merge remote-tracking branch 'origin/pr/538'
|
621
660
|
|
622
|
-
|
661
|
+
## 2.9.2 / 2014-10-25
|
623
662
|
|
624
663
|
* 8 bug fixes:
|
625
664
|
* Fix puma-wild handling a restart properly. Fixes #550
|
@@ -639,7 +678,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
639
678
|
* Merge pull request #581 from alexch/slightly-better-logging
|
640
679
|
* Merge pull request #590 from looker/jruby_disable_sslv3
|
641
680
|
|
642
|
-
|
681
|
+
## 2.9.1 / 2014-09-05
|
643
682
|
|
644
683
|
* 4 bug fixes:
|
645
684
|
* Cleanup the SSL related structures properly, fixes memory leak
|
@@ -651,7 +690,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
651
690
|
* Merge pull request #561 from theoldreader/sighup
|
652
691
|
* Merge pull request #570 from havenwood/spawn-thread-edge-case
|
653
692
|
|
654
|
-
|
693
|
+
## 2.9.0 / 2014-07-12
|
655
694
|
|
656
695
|
* 1 minor feature:
|
657
696
|
* Add SSL support for JRuby
|
@@ -675,7 +714,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
675
714
|
* Merge pull request #544 from chulkilee/bsd-3-clause
|
676
715
|
* Merge pull request #551 from jcxplorer/patch-1
|
677
716
|
|
678
|
-
|
717
|
+
## 2.8.2 / 2014-04-12
|
679
718
|
|
680
719
|
* 4 bug fixes:
|
681
720
|
* During upgrade, change directory in main process instead of workers.
|
@@ -702,7 +741,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
702
741
|
* Merge pull request #517 from misfo/patch-1
|
703
742
|
* Merge pull request #518 from LongMan/master
|
704
743
|
|
705
|
-
|
744
|
+
## 2.8.1 / 2014-03-06
|
706
745
|
|
707
746
|
* 1 bug fixes:
|
708
747
|
* Run puma-wild with proper deps for prune_bundler
|
@@ -718,7 +757,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
718
757
|
* Merge pull request #490 from tobinibot/patch-1
|
719
758
|
* Merge pull request #491 from brianknight10/clarify-no-config
|
720
759
|
|
721
|
-
|
760
|
+
## 2.8.0 / 2014-02-28
|
722
761
|
|
723
762
|
* 8 minor features:
|
724
763
|
* Add ability to autoload a config file. Fixes #438
|
@@ -761,13 +800,13 @@ The "clearly I don't have enough tests for the config" release.
|
|
761
800
|
* Merge pull request #482 from prathamesh-sonpatki/signals-doc-cleanup
|
762
801
|
* Merge pull request #483 from YotpoLtd/master
|
763
802
|
|
764
|
-
|
803
|
+
## 2.7.1 / 2013-12-05
|
765
804
|
|
766
805
|
* 1 bug fix:
|
767
806
|
|
768
807
|
* Keep STDOUT/STDERR the right mode. Fixes #422
|
769
808
|
|
770
|
-
|
809
|
+
## 2.7.0 / 2013-12-03
|
771
810
|
|
772
811
|
* 1 minor feature:
|
773
812
|
* Adding TTIN and TTOU to increment/decrement workers
|
@@ -784,7 +823,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
784
823
|
* Increase the max URI path length to 2048 chars from 1024 chars
|
785
824
|
* Upstart jungle use config/puma.rb instead
|
786
825
|
|
787
|
-
|
826
|
+
## 2.6.0 / 2013-09-13
|
788
827
|
|
789
828
|
* 2 minor features:
|
790
829
|
* Add support for event hooks
|
@@ -797,14 +836,14 @@ The "clearly I don't have enough tests for the config" release.
|
|
797
836
|
* Handle BrokenPipe, StandardError and IOError in fat_wrote and break out
|
798
837
|
* Return success status to the invoking environment
|
799
838
|
|
800
|
-
|
839
|
+
## 2.5.1 / 2013-08-13
|
801
840
|
|
802
841
|
* 2 bug fixes:
|
803
842
|
|
804
843
|
* Keep jruby daemon mode from retrying on a hot restart
|
805
844
|
* Extract version from const.rb in gemspec
|
806
845
|
|
807
|
-
|
846
|
+
## 2.5.0 / 2013-08-08
|
808
847
|
|
809
848
|
* 2 minor features:
|
810
849
|
* Allow configuring pumactl with config.rb
|
@@ -826,12 +865,12 @@ The "clearly I don't have enough tests for the config" release.
|
|
826
865
|
* Remove obsolete pumactl instructions; refer to pumactl for details
|
827
866
|
* Make Bundler used puma.gemspec version agnostic
|
828
867
|
|
829
|
-
|
868
|
+
## 2.4.1 / 2013-08-07
|
830
869
|
|
831
870
|
* 1 experimental feature:
|
832
871
|
* Support raw tcp servers (aka Lopez Express mode)
|
833
872
|
|
834
|
-
|
873
|
+
## 2.4.0 / 2013-07-22
|
835
874
|
|
836
875
|
* 5 minor features:
|
837
876
|
* Add PUMA_JRUBY_DAEMON_OPTS to get around agent starting twice
|
@@ -854,13 +893,13 @@ The "clearly I don't have enough tests for the config" release.
|
|
854
893
|
* Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes #309
|
855
894
|
|
856
895
|
|
857
|
-
|
896
|
+
## 2.3.2 / 2013-07-08
|
858
897
|
|
859
898
|
* 1 bug fix:
|
860
899
|
|
861
900
|
* Move starting control server to after daemonization.
|
862
901
|
|
863
|
-
|
902
|
+
## 2.3.1 / 2013-07-06
|
864
903
|
|
865
904
|
* 2 bug fixes:
|
866
905
|
|
@@ -870,7 +909,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
870
909
|
* 1 doc change:
|
871
910
|
* Better document some platform constraints
|
872
911
|
|
873
|
-
|
912
|
+
## 2.3.0 / 2013-07-05
|
874
913
|
|
875
914
|
* 1 major bug fix:
|
876
915
|
|
@@ -889,13 +928,13 @@ The "clearly I don't have enough tests for the config" release.
|
|
889
928
|
* Refactored modes into seperate classes that CLI uses
|
890
929
|
* Changed CLI to take an Events object instead of stdout/stderr (API change)
|
891
930
|
|
892
|
-
|
931
|
+
## 2.2.2 / 2013-07-02
|
893
932
|
|
894
933
|
* 1 bug fix:
|
895
934
|
|
896
935
|
* Fix restart_command in the config
|
897
936
|
|
898
|
-
|
937
|
+
## 2.2.1 / 2013-07-02
|
899
938
|
|
900
939
|
* 1 minor feature:
|
901
940
|
|
@@ -905,7 +944,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
905
944
|
|
906
945
|
* Pass custom restart command in JRuby
|
907
946
|
|
908
|
-
|
947
|
+
## 2.2.0 / 2013-07-01
|
909
948
|
|
910
949
|
* 1 major feature:
|
911
950
|
|
@@ -916,14 +955,14 @@ The "clearly I don't have enough tests for the config" release.
|
|
916
955
|
* Don't leak info when not in development. Fixes #256
|
917
956
|
* Load the app, then bind the ports
|
918
957
|
|
919
|
-
|
958
|
+
## 2.1.1 / 2013-06-20
|
920
959
|
|
921
960
|
* 2 minor bug fixes:
|
922
961
|
|
923
962
|
* Fix daemonization on jruby
|
924
963
|
* Load the application before daemonizing. Fixes #285
|
925
964
|
|
926
|
-
|
965
|
+
## 2.1.0 / 2013-06-18
|
927
966
|
|
928
967
|
* 3 minor features:
|
929
968
|
* Allow listening socket to be configured via Capistrano variable
|
@@ -952,13 +991,13 @@ The "clearly I don't have enough tests for the config" release.
|
|
952
991
|
* Add some documentation for Clustered mode
|
953
992
|
* Added quotes to /etc/puma.conf
|
954
993
|
|
955
|
-
|
994
|
+
## 2.0.1 / 2013-04-30
|
956
995
|
|
957
996
|
* 1 bug fix:
|
958
997
|
|
959
998
|
* Fix not starting on JRuby properly
|
960
999
|
|
961
|
-
|
1000
|
+
## 2.0.0 / 2013-04-29
|
962
1001
|
|
963
1002
|
RailsConf 2013 edition!
|
964
1003
|
|
@@ -975,7 +1014,7 @@ RailsConf 2013 edition!
|
|
975
1014
|
* Fix stdout/stderr logs to sync outputs
|
976
1015
|
* allow binding to IPv6 addresses
|
977
1016
|
|
978
|
-
|
1017
|
+
## 2.0.0.b7 / 2013-03-18
|
979
1018
|
|
980
1019
|
* 5 minor enhancements:
|
981
1020
|
|
@@ -1000,7 +1039,7 @@ RailsConf 2013 edition!
|
|
1000
1039
|
* Write out the state post-daemonize. Fixes #189
|
1001
1040
|
* Prevent crash when all workers are gone
|
1002
1041
|
|
1003
|
-
|
1042
|
+
## 2.0.0.b6 / 2013-02-06
|
1004
1043
|
|
1005
1044
|
* 2 minor enhancements:
|
1006
1045
|
|
@@ -1011,7 +1050,7 @@ RailsConf 2013 edition!
|
|
1011
1050
|
|
1012
1051
|
* Change directory in working during upgrade. Fixes #185
|
1013
1052
|
|
1014
|
-
|
1053
|
+
## 2.0.0.b5 / 2013-02-05
|
1015
1054
|
|
1016
1055
|
* 2 major features:
|
1017
1056
|
* Add phased worker upgrade
|
@@ -1028,7 +1067,7 @@ RailsConf 2013 edition!
|
|
1028
1067
|
* Move write_pid to after we daemonize. Fixes #180
|
1029
1068
|
* Redirect IO properly and emit message for checkpointing
|
1030
1069
|
|
1031
|
-
|
1070
|
+
## 2.0.0.b4 / 2012-12-12
|
1032
1071
|
|
1033
1072
|
* 4 bug fixes:
|
1034
1073
|
* Properly check #syswrite's value for variable sized buffers. Fixes #170
|
@@ -1036,12 +1075,12 @@ RailsConf 2013 edition!
|
|
1036
1075
|
* Handle char vs byte and mixing syswrite with write properly
|
1037
1076
|
* made MiniSSL validate key/cert file existence
|
1038
1077
|
|
1039
|
-
|
1078
|
+
## 2.0.0.b3 / 2012-11-22
|
1040
1079
|
|
1041
1080
|
* 1 bug fix:
|
1042
1081
|
* Package right files in gem
|
1043
1082
|
|
1044
|
-
|
1083
|
+
## 2.0.0.b2 / 2012-11-18
|
1045
1084
|
* 5 minor feature:
|
1046
1085
|
* Now Puma is bundled with an capistrano recipe. Just require
|
1047
1086
|
'puma/capistrano' in you deploy.rb
|
@@ -1059,7 +1098,7 @@ RailsConf 2013 edition!
|
|
1059
1098
|
* Be sure to empty the drain the todo before shutting down. Fixes #155
|
1060
1099
|
* allow for alternate locations for status app
|
1061
1100
|
|
1062
|
-
|
1101
|
+
## 2.0.0.b1 / 2012-09-11
|
1063
1102
|
|
1064
1103
|
* 1 major feature:
|
1065
1104
|
* Optional worker process mode (-w) to allow for process scaling in
|
@@ -1072,30 +1111,30 @@ RailsConf 2013 edition!
|
|
1072
1111
|
NOTE: SSL support in JRuby is not supported at present. Support will
|
1073
1112
|
be added back in a future date when a java Puma::MiniSSL is added.
|
1074
1113
|
|
1075
|
-
|
1114
|
+
## 1.6.3 / 2012-09-04
|
1076
1115
|
|
1077
1116
|
* 1 bug fix:
|
1078
1117
|
* Close sockets waiting in the reactor when a hot restart is performed
|
1079
1118
|
so that browsers reconnect on the next request
|
1080
1119
|
|
1081
|
-
|
1120
|
+
## 1.6.2 / 2012-08-27
|
1082
1121
|
|
1083
1122
|
* 1 bug fix:
|
1084
1123
|
* Rescue StandardError instead of IOError to handle SystemCallErrors
|
1085
1124
|
as well as other application exceptions inside the reactor.
|
1086
1125
|
|
1087
|
-
|
1126
|
+
## 1.6.1 / 2012-07-23
|
1088
1127
|
|
1089
1128
|
* 1 packaging bug fixed:
|
1090
1129
|
* Include missing files
|
1091
1130
|
|
1092
|
-
|
1131
|
+
## 1.6.0 / 2012-07-23
|
1093
1132
|
|
1094
1133
|
* 1 major bug fix:
|
1095
1134
|
* Prevent slow clients from starving the server by introducing a
|
1096
1135
|
dedicated IO reactor thread. Credit for reporting goes to @meh.
|
1097
1136
|
|
1098
|
-
|
1137
|
+
## 1.5.0 / 2012-07-19
|
1099
1138
|
|
1100
1139
|
* 7 contributors to this release:
|
1101
1140
|
* Christian Mayer
|
@@ -1119,7 +1158,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1119
1158
|
* Allow Server#run to run sync. Fixes #111
|
1120
1159
|
* Puma can now run on windows
|
1121
1160
|
|
1122
|
-
|
1161
|
+
## 1.4.0 / 2012-06-04
|
1123
1162
|
|
1124
1163
|
* 1 bug fix:
|
1125
1164
|
* SCRIPT_NAME should be passed from env to allow mounting apps
|
@@ -1127,13 +1166,13 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1127
1166
|
* 1 experimental feature:
|
1128
1167
|
* Add puma.socket key for direct socket access
|
1129
1168
|
|
1130
|
-
|
1169
|
+
## 1.3.1 / 2012-05-15
|
1131
1170
|
|
1132
1171
|
* 2 bug fixes:
|
1133
1172
|
* use #bytesize instead of #length for Content-Length header
|
1134
1173
|
* Use StringIO properly. Fixes #98
|
1135
1174
|
|
1136
|
-
|
1175
|
+
## 1.3.0 / 2012-05-08
|
1137
1176
|
|
1138
1177
|
* 2 minor features:
|
1139
1178
|
* Return valid Rack responses (passes Lint) from status server
|
@@ -1148,7 +1187,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1148
1187
|
* 1 new contributor:
|
1149
1188
|
* Jesse Cooke
|
1150
1189
|
|
1151
|
-
|
1190
|
+
## 1.2.2 / 2012-04-28
|
1152
1191
|
|
1153
1192
|
* 4 bug fixes:
|
1154
1193
|
|
@@ -1157,13 +1196,13 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1157
1196
|
* Keep the encoding of the body correct. Fixes #79
|
1158
1197
|
* show error.to_s along with backtrace for low-level error
|
1159
1198
|
|
1160
|
-
|
1199
|
+
## 1.2.1 / 2012-04-11
|
1161
1200
|
|
1162
1201
|
1 bug fix:
|
1163
1202
|
|
1164
1203
|
* Fix rack.url_scheme for SSL servers. Fixes #65
|
1165
1204
|
|
1166
|
-
|
1205
|
+
## 1.2.0 / 2012-04-11
|
1167
1206
|
|
1168
1207
|
1 major feature:
|
1169
1208
|
|
@@ -1188,13 +1227,13 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1188
1227
|
* Seamus Abshere
|
1189
1228
|
* Steve Richert
|
1190
1229
|
|
1191
|
-
|
1230
|
+
## 1.1.1 / 2012-03-30
|
1192
1231
|
|
1193
1232
|
1 bugfix:
|
1194
1233
|
|
1195
1234
|
* Include puma/compat.rb in the gem (oops!)
|
1196
1235
|
|
1197
|
-
|
1236
|
+
## 1.1.0 / 2012-03-30
|
1198
1237
|
|
1199
1238
|
1 bugfix:
|
1200
1239
|
|
@@ -1204,6 +1243,6 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1204
1243
|
|
1205
1244
|
* Add umask param to the unix:// bind to set the umask
|
1206
1245
|
|
1207
|
-
|
1246
|
+
## 1.0.0 / 2012-03-29
|
1208
1247
|
|
1209
1248
|
* Released!
|