puma 2.16.0 → 3.11.4

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 (78) hide show
  1. checksums.yaml +5 -5
  2. data/{History.txt → History.md} +489 -70
  3. data/README.md +143 -174
  4. data/docs/architecture.md +36 -0
  5. data/{DEPLOYMENT.md → docs/deployment.md} +1 -1
  6. data/docs/images/puma-connection-flow-no-reactor.png +0 -0
  7. data/docs/images/puma-connection-flow.png +0 -0
  8. data/docs/images/puma-general-arch.png +0 -0
  9. data/docs/nginx.md +2 -2
  10. data/docs/plugins.md +28 -0
  11. data/docs/restart.md +39 -0
  12. data/docs/signals.md +56 -3
  13. data/docs/systemd.md +272 -0
  14. data/ext/puma_http11/extconf.rb +2 -0
  15. data/ext/puma_http11/http11_parser.c +291 -447
  16. data/ext/puma_http11/http11_parser.h +1 -0
  17. data/ext/puma_http11/http11_parser.java.rl +5 -5
  18. data/ext/puma_http11/http11_parser.rl +10 -9
  19. data/ext/puma_http11/http11_parser_common.rl +1 -1
  20. data/ext/puma_http11/io_buffer.c +8 -8
  21. data/ext/puma_http11/mini_ssl.c +64 -6
  22. data/ext/puma_http11/org/jruby/puma/Http11Parser.java +113 -131
  23. data/ext/puma_http11/org/jruby/puma/MiniSSL.java +9 -2
  24. data/ext/puma_http11/puma_http11.c +1 -0
  25. data/lib/puma/app/status.rb +9 -1
  26. data/lib/puma/binder.rb +90 -38
  27. data/lib/puma/cli.rb +134 -491
  28. data/lib/puma/client.rb +142 -4
  29. data/lib/puma/cluster.rb +132 -76
  30. data/lib/puma/commonlogger.rb +19 -20
  31. data/lib/puma/compat.rb +3 -7
  32. data/lib/puma/configuration.rb +206 -67
  33. data/lib/puma/const.rb +21 -31
  34. data/lib/puma/control_cli.rb +92 -103
  35. data/lib/puma/convenient.rb +23 -0
  36. data/lib/puma/daemon_ext.rb +6 -0
  37. data/lib/puma/detect.rb +10 -1
  38. data/lib/puma/dsl.rb +203 -45
  39. data/lib/puma/events.rb +22 -13
  40. data/lib/puma/io_buffer.rb +1 -1
  41. data/lib/puma/jruby_restart.rb +1 -2
  42. data/lib/puma/launcher.rb +431 -0
  43. data/lib/puma/minissl.rb +83 -4
  44. data/lib/puma/null_io.rb +19 -11
  45. data/lib/puma/plugin/tmp_restart.rb +34 -0
  46. data/lib/puma/plugin.rb +115 -0
  47. data/lib/puma/rack/backports/uri/common_193.rb +17 -13
  48. data/lib/puma/rack/builder.rb +3 -0
  49. data/lib/puma/rack/urlmap.rb +9 -8
  50. data/lib/puma/reactor.rb +18 -0
  51. data/lib/puma/runner.rb +43 -15
  52. data/lib/puma/server.rb +141 -35
  53. data/lib/puma/single.rb +16 -6
  54. data/lib/puma/state_file.rb +29 -0
  55. data/lib/puma/tcp_logger.rb +8 -1
  56. data/lib/puma/thread_pool.rb +60 -10
  57. data/lib/puma/util.rb +1 -5
  58. data/lib/puma.rb +13 -4
  59. data/lib/rack/handler/puma.rb +76 -29
  60. data/tools/jungle/README.md +12 -2
  61. data/tools/jungle/init.d/README.md +9 -2
  62. data/tools/jungle/init.d/puma +86 -59
  63. data/tools/jungle/init.d/run-puma +16 -1
  64. data/tools/jungle/rc.d/README.md +74 -0
  65. data/tools/jungle/rc.d/puma +61 -0
  66. data/tools/jungle/rc.d/puma.conf +10 -0
  67. data/tools/jungle/upstart/puma.conf +1 -1
  68. data/tools/trickletest.rb +1 -1
  69. metadata +28 -95
  70. data/COPYING +0 -55
  71. data/Gemfile +0 -13
  72. data/Manifest.txt +0 -74
  73. data/Rakefile +0 -158
  74. data/docs/config.md +0 -0
  75. data/lib/puma/capistrano.rb +0 -94
  76. data/lib/puma/rack/backports/uri/common_18.rb +0 -56
  77. data/lib/puma/rack/backports/uri/common_192.rb +0 -52
  78. data/puma.gemspec +0 -52
@@ -1,4 +1,423 @@
1
- === 2.16.0 / 2016-01-27
1
+ ## 3.11.4 / 2018-04-12
2
+
3
+ * 2 features:
4
+ * Manage puma as a service using rc.d (#1529)
5
+ * Server stats are now available from a top level method (#1532)
6
+ * 5 bugfixes:
7
+ * Fix parsing CLI options (#1482)
8
+ * Order of stderr and stdout is made before redirecting to a log file (#1511)
9
+ * Init.d fix of `ps -p` to check if pid exists (#1545)
10
+ * Early hits bugfix (#1550)
11
+ * Purge interrupt queue when closing socket fails (#1553)
12
+
13
+ ## 3.11.3 / 2018-03-05
14
+
15
+ * 3 bugfixes:
16
+ * Add closed? to MiniSSL::Socket for use in reactor (#1510)
17
+ * Handle EOFError at the toplevel of the server threads (#1524) (#1507)
18
+ * Deal with zero sized bodies when using SSL (#1483)
19
+
20
+ ## 3.11.2 / 2018-01-19
21
+
22
+ * 1 bugfix:
23
+ * Deal with read\_nonblock returning nil early
24
+
25
+ ## 3.11.1 / 2018-01-18
26
+
27
+ * 1 bugfix:
28
+ * Handle read\_nonblock returning nil when the socket close (#1502)
29
+
30
+ ## 3.11.0 / 2017-11-20
31
+
32
+ * 2 features:
33
+ * HTTP 103 Early Hints (#1403)
34
+ * 421/451 status codes now have correct status messages attached (#1435)
35
+
36
+ * 9 bugfixes:
37
+ * Environment config files (/config/puma/<ENV>.rb) load correctly (#1340)
38
+ * Specify windows dependencies correctly (#1434, #1436)
39
+ * puma/events required in test helper (#1418)
40
+ * Correct control CLI's option help text (#1416)
41
+ * Remove a warning for unused variable in mini_ssl (#1409)
42
+ * Correct pumactl docs argument ordering (#1427)
43
+ * Fix an uninitialized variable warning in server.rb (#1430)
44
+ * Fix docs typo/error in Launcher init (#1429)
45
+ * Deal with leading spaces in RUBYOPT (#1455)
46
+
47
+ * 2 other:
48
+ * Add docs about internals (#1425, #1452)
49
+ * Tons of test fixes from @MSP-Greg (#1439, #1442, #1464)
50
+
51
+ ## 3.10.0 / 2017-08-17
52
+
53
+ * 3 features:
54
+ * The status server has a new /gc and /gc-status command. (#1384)
55
+ * The persistent and first data timeouts are now configurable (#1111)
56
+ * Implemented RFC 2324 (#1392)
57
+
58
+ * 12 bugfixes:
59
+ * Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. (#1347)
60
+ * Fix hangups with SSL and persistent connections. (#1334)
61
+ * Fix Rails double-binding to a port (#1383)
62
+ * Fix incorrect thread names (#1368)
63
+ * Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. (#1318)
64
+ * Fix compatibility with RUBYOPT="--enable-frozen-string-literal" (#1376)
65
+ * Fixed some compiler warnings (#1388)
66
+ * We actually run the integration tests in CI now (#1390)
67
+ * No longer shipping unnecessary directories in the gemfile (#1391)
68
+ * If RUBYOPT is nil, we no longer blow up on restart. (#1385)
69
+ * Correct response to SIGINT (#1377)
70
+ * Proper exit code returned when we receive a TERM signal (#1337)
71
+
72
+ * 3 refactors:
73
+ * Various test improvements from @grosser
74
+ * Rubocop (#1325)
75
+ * Hoe has been removed (#1395)
76
+
77
+ * 1 known issue:
78
+ * Socket activation doesn't work in JRuby. Their fault, not ours. (#1367)
79
+
80
+ ## 3.9.1 / 2017-06-03
81
+
82
+ * 2 bugfixes:
83
+ * Fixed compatibility with older Bundler versions (#1314)
84
+ * Some internal test/development cleanup (#1311, #1313)
85
+
86
+ ## 3.9.0 / 2017-06-01
87
+
88
+ * 2 features:
89
+ * The ENV is now reset to its original values when Puma restarts via USR1/USR2 (#1260) (MRI only, no JRuby support)
90
+ * Puma will no longer accept more clients than the maximum number of threads. (#1278)
91
+
92
+ * 9 bugfixes:
93
+ * Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR (#1306)
94
+ * Fix SSL/WebSocket compatibility (#1274)
95
+ * HTTP headers with empty values are no longer omitted from responses. (#1261)
96
+ * Fix a Rack env key which was set to nil. (#1259)
97
+ * peercert has been implemented for JRuby (#1248)
98
+ * Fix port settings when using rails s (#1277, #1290)
99
+ * Fix compat w/LibreSSL (#1285)
100
+ * Fix restarting Puma w/symlinks and a new Gemfile (#1282)
101
+ * Replace Dir.exists? with Dir.exist? (#1294)
102
+
103
+ * 1 known issue:
104
+ * A bug in MRI 2.2+ can result in IOError: stream closed. See #1206. This issue has existed since at least Puma 3.6, and probably further back.
105
+
106
+ * 1 refactor:
107
+ * Lots of test fixups from @grosser.
108
+
109
+ ## 3.8.2 / 2017-03-14
110
+
111
+ * 1 bugfix:
112
+ * Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. (#1241)
113
+
114
+ ## 3.8.1 / 2017-03-10
115
+
116
+ * 1 bugfix:
117
+ * Remove method call to method that no longer exists (#1239)
118
+
119
+ ## 3.8.0 / 2017-03-09
120
+
121
+ * 2 bugfixes:
122
+ * Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ (#1234)
123
+ * The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time (#1226)
124
+
125
+ * 1 feature:
126
+ * Closed clients are aborted to save capacity (#1227)
127
+
128
+ * 1 refactor:
129
+ * Bundler is no longer a dependency from tests (#1213)
130
+
131
+ ## 3.7.1 / 2017-02-20
132
+
133
+ * 2 bugfixes:
134
+ * Fix typo which blew up MiniSSL (#1182)
135
+ * Stop overriding command-line options with the config file (#1203)
136
+
137
+ ## 3.7.0 / 2017-01-04
138
+
139
+ * 6 minor features:
140
+ * Allow rack handler to accept ssl host. (#1129)
141
+ * Refactor TTOU processing. TTOU now handles multiple signals at once. (#1165)
142
+ * Pickup any remaining chunk data as the next request.
143
+ * Prevent short term thread churn - increased auto trim default to 30 seconds.
144
+ * Raise error when `stdout` or `stderr` is not writable. (#1175)
145
+ * Add Rack 2.0 support to gemspec. (#1068)
146
+
147
+ * 5 refactors:
148
+ * Compare host and server name only once per call. (#1091)
149
+ * Minor refactor on Thread pool (#1088)
150
+ * Removed a ton of unused constants, variables and files.
151
+ * Use MRI macros when allocating heap memory
152
+ * Use hooks for on\_booted event. (#1160)
153
+
154
+ * 14 bugfixes:
155
+ * Add eof? method to NullIO? (#1169)
156
+ * Fix Puma startup in provided init.d script (#1061)
157
+ * Fix default SSL mode back to none. (#1036)
158
+ * Fixed the issue of @listeners getting nil io (#1120)
159
+ * Make `get_dh1024` compatible with OpenSSL v1.1.0 (#1178)
160
+ * More gracefully deal with SSL sessions. Fixes #1002
161
+ * Move puma.rb to just autoloads. Fixes #1063
162
+ * MiniSSL: Provide write as <<. Fixes #1089
163
+ * Prune bundler should inherit fds (#1114)
164
+ * Replace use of Process.getpgid which does not behave as intended on all platforms (#1110)
165
+ * Transfer encoding header should be downcased before comparison (#1135)
166
+ * Use same write log logic for hijacked requests. (#1081)
167
+ * Fix `uninitialized constant Puma::StateFile` (#1138)
168
+ * Fix access priorities of each level in LeveledOptions (#1118)
169
+
170
+ * 3 others:
171
+
172
+ * Lots of tests added/fixed/improved. Switched to Minitest from Test::Unit. Big thanks to @frodsan.
173
+ * Lots of documentation added/improved.
174
+ * Add license indicators to the HTTP extension. (#1075)
175
+
176
+ ## 3.6.2 / 2016-11-22
177
+
178
+ * 1 bug fix:
179
+
180
+ * Revert #1118/Fix access priorities of each level in LeveledOptions. This
181
+ had an unintentional side effect of changing the importance of command line
182
+ options, such as -p.
183
+
184
+ ## 3.6.1 / 2016-11-21
185
+
186
+ * 8 bug fixes:
187
+
188
+ * Fix Puma start in init.d script.
189
+ * Fix default SSL mode back to none. Fixes #1036
190
+ * Fixed the issue of @listeners getting nil io, fix rails restart (#1120)
191
+ * More gracefully deal with SSL sessions. Fixes #1002
192
+ * Prevent short term thread churn.
193
+ * Provide write as <<. Fixes #1089
194
+ * Fix access priorities of each level in LeveledOptions - fixes TTIN.
195
+ * Stub description files updated for init.d.
196
+
197
+ * 2 new project committers:
198
+
199
+ * Nate Berkopec (@nateberkopec)
200
+ * Richard Schneeman (@schneems)
201
+
202
+ ## 3.6.0 / 2016-07-24
203
+
204
+ * 12 bug fixes:
205
+ * Add ability to detect a shutting down server. Fixes #932
206
+ * Add support for Expect: 100-continue. Fixes #519
207
+ * Check SSLContext better. Fixes #828
208
+ * Clarify behavior of '-t num'. Fixes #984
209
+ * Don't default to VERIFY_PEER. Fixes #1028
210
+ * Don't use ENV['PWD'] on windows. Fixes #1023
211
+ * Enlarge the scope of catching app exceptions. Fixes #1027
212
+ * Execute background hooks after daemonizing. Fixes #925
213
+ * Handle HUP as a stop unless there is IO redirection. Fixes #911
214
+ * Implement chunked request handling. Fixes #620
215
+ * Just rescue exception to return a 500. Fixes #1027
216
+ * Redirect IO in the jruby daemon mode. Fixes #778
217
+
218
+ ## 3.5.2 / 2016-07-20
219
+
220
+ * 1 bug fix:
221
+ * Don't let persistent_timeout be nil
222
+
223
+ * 1 PR merged:
224
+ * Merge pull request #1021 from benzrf/patch-1
225
+
226
+ ## 3.5.1 / 2016-07-20
227
+
228
+ * 1 bug fix:
229
+ * Be sure to only listen on host:port combos once. Fixes #1022
230
+
231
+ ## 3.5.0 / 2016-07-18
232
+
233
+ * 1 minor features:
234
+ * Allow persistent_timeout to be configured via the dsl.
235
+
236
+ * 9 bug fixes:
237
+ * Allow a bare % in a query string. Fixes #958
238
+ * Explicitly listen on all localhost addresses. Fixes #782
239
+ * Fix `TCPLogger` log error in tcp cluster mode.
240
+ * Fix puma/puma#968 Cannot bind SSL port due to missing verify_mode option
241
+ * Fix puma/puma#968 Default verify_mode to peer
242
+ * Log any exceptions in ThreadPool. Fixes #1010
243
+ * Silence connection errors in the reactor. Fixes #959
244
+ * Tiny fixes in hook documentation for #840
245
+ * It should not log requests if we want it to be quiet
246
+
247
+ * 5 doc fixes:
248
+ * Add How to stop Puma on Heroku using plugins to the example directory
249
+ * Provide both hot and phased restart in jungle script
250
+ * Update reference to the instances management script
251
+ * Update default number of threads
252
+ * Fix typo in example config
253
+
254
+ * 14 PRs merged:
255
+ * Merge pull request #1007 from willnet/patch-1
256
+ * Merge pull request #1014 from jeznet/patch-1
257
+ * Merge pull request #1015 from bf4/patch-1
258
+ * Merge pull request #1017 from jorihardman/configurable_persistent_timeout
259
+ * Merge pull request #954 from jf/master
260
+ * Merge pull request #955 from jf/add-request-info-to-standard-error-rescue
261
+ * Merge pull request #956 from maxkwallace/master
262
+ * Merge pull request #960 from kmayer/kmayer-plugins-heroku-restart
263
+ * Merge pull request #969 from frankwong15/master
264
+ * Merge pull request #970 from willnet/delete-blank-document
265
+ * Merge pull request #974 from rocketjob/feature/name_threads
266
+ * Merge pull request #977 from snow/master
267
+ * Merge pull request #981 from zach-chai/patch-1
268
+ * Merge pull request #993 from scorix/master
269
+
270
+ ## 3.4.0 / 2016-04-07
271
+
272
+ * 2 minor features:
273
+ * Add ability to force threads to stop on shutdown. Fixes #938
274
+ * Detect and commit seppuku when fork(2) fails. Fixes #529
275
+
276
+ * 3 unknowns:
277
+ * Ignore errors trying to update the backport tables. Fixes #788
278
+ * Invoke the lowlevel_error in more places to allow for exception tracking. Fixes #894
279
+ * Update the query string when an absolute URI is used. Fixes #937
280
+
281
+ * 5 doc fixes:
282
+ * Add Process Monitors section to top-level README
283
+ * Better document the hooks. Fixes #840
284
+ * docs/system.md sample config refinements and elaborations
285
+ * Fix typos at couple of places.
286
+ * Cleanup warnings
287
+
288
+ * 3 PRs merged:
289
+ * Merge pull request #945 from dekellum/systemd-docs-refined
290
+ * Merge pull request #946 from vipulnsward/rm-pid
291
+ * Merge pull request #947 from vipulnsward/housekeeping-typos
292
+
293
+ ## 3.3.0 / 2016-04-05
294
+
295
+ * 2 minor features:
296
+ * Allow overriding options of Configuration object
297
+ * Rename to inherit_ssl_listener like inherit_tcp|unix
298
+
299
+ * 2 doc fixes:
300
+ * Add docs/systemd.md (with socket activation sub-section)
301
+ * Document UNIX signals with cluster on README.md
302
+
303
+ * 3 PRs merged:
304
+ * Merge pull request #936 from prathamesh-sonpatki/allow-overriding-config-options
305
+ * Merge pull request #940 from kyledrake/signalsdoc
306
+ * Merge pull request #942 from dekellum/socket-activate-improve
307
+
308
+ ## 3.2.0 / 2016-03-20
309
+
310
+ * 1 deprecation removal:
311
+ * Delete capistrano.rb
312
+
313
+ * 3 bug fixes:
314
+ * Detect gems.rb as well as Gemfile
315
+ * Simplify and fix logic for directory to use when restarting for all phases
316
+ * Speed up phased-restart start
317
+
318
+ * 2 PRs merged:
319
+ * Merge pull request #927 from jlecour/gemfile_variants
320
+ * Merge pull request #931 from joneslee85/patch-10
321
+
322
+ ## 3.1.1 / 2016-03-17
323
+
324
+ * 4 bug fixes:
325
+ * Disable USR1 usage on JRuby
326
+ * Fixes #922 - Correctly define file encoding as UTF-8
327
+ * Set a more explicit SERVER_SOFTWARE Rack variable
328
+ * Show RUBY_ENGINE_VERSION if available. Fixes #923
329
+
330
+ * 3 PRs merged:
331
+ * Merge pull request #912 from tricknotes/fix-allow-failures-in-travis-yml
332
+ * Merge pull request #921 from swrobel/patch-1
333
+ * Merge pull request #924 from tbrisker/patch-1
334
+
335
+ ## 3.1.0 / 2016-03-05
336
+
337
+ * 1 minor feature:
338
+ * Add 'import' directive to config file. Fixes #916
339
+
340
+ * 5 bug fixes:
341
+ * Add 'fetch' to options. Fixes #913
342
+ * Fix jruby daemonization. Fixes #918
343
+ * Recreate the proper args manually. Fixes #910
344
+ * Require 'time' to get iso8601. Fixes #914
345
+
346
+ ## 3.0.2 / 2016-02-26
347
+
348
+ * 5 bug fixes:
349
+
350
+ * Fix 'undefined local variable or method `pid` for #<Puma::ControlCLI:0x007f185fcef968>' when execute pumactl with `--pid` option.
351
+ * Fix 'undefined method `windows?` for Puma:Module' when execute pumactl.
352
+ * Harden tmp_restart against errors related to the restart file
353
+ * Make `plugin :tmp_restart` behavior correct in Windows.
354
+ * fix uninitialized constant Puma::ControlCLI::StateFile
355
+
356
+ * 3 PRs merged:
357
+
358
+ * Merge pull request #901 from mitto/fix-pumactl-uninitialized-constant-statefile
359
+ * Merge pull request #902 from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
360
+ * Merge pull request #905 from Eric-Guo/master
361
+
362
+ ## 3.0.1 / 2016-02-25
363
+
364
+ * 1 bug fix:
365
+
366
+ * Removed the experimental support for async.callback as it broke
367
+ websockets entirely. Seems no server has both hijack and async.callback
368
+ and thus faye is totally confused what to do and doesn't work.
369
+
370
+ ## 3.0.0 / 2016-02-25
371
+
372
+ * 2 major changes:
373
+
374
+ * Ruby pre-2.0 is no longer supported. We'll do our best to not add
375
+ features that break those rubies but will no longer be testing
376
+ with them.
377
+ * Don't log requests by default. Fixes #852
378
+
379
+ * 2 major features:
380
+
381
+ * Plugin support! Plugins can interact with configuration as well
382
+ as provide augment server functionality!
383
+ * Experimental env['async.callback'] support
384
+
385
+ * 4 minor features:
386
+
387
+ * Listen to unix socket with provided backlog if any
388
+ * Improves the clustered stats to report worker stats
389
+ * Pass the env to the lowlevel_error handler. Fixes #854
390
+ * Treat path-like hosts as unix sockets. Fixes #824
391
+
392
+ * 5 bug fixes:
393
+
394
+ * Clean thread locals when using keepalive. Fixes #823
395
+ * Cleanup compiler warnings. Fixes #815
396
+ * Expose closed? for use by the reactor. Fixes #835
397
+ * Move signal handlers to separate method to prevent space leak. Fixes #798
398
+ * Signal not full on worker exit #876
399
+
400
+ * 5 doc fixes:
401
+
402
+ * Update README.md with various grammar fixes
403
+ * Use newest version of Minitest
404
+ * Add directory configuration docs, fix typo [ci skip]
405
+ * Remove old COPYING notice. Fixes #849
406
+
407
+ * 10 merged PRs:
408
+
409
+ * Merge pull request #871 from deepj/travis
410
+ * Merge pull request #874 from wallclockbuilder/master
411
+ * Merge pull request #883 from dadah89/igor/trim_only_worker
412
+ * Merge pull request #884 from uistudio/async-callback
413
+ * Merge pull request #888 from mlarraz/tick_minitest
414
+ * Merge pull request #890 from todd/directory_docs
415
+ * Merge pull request #891 from ctaintor/improve_clustered_status
416
+ * Merge pull request #893 from spastorino/add_missing_require
417
+ * Merge pull request #897 from zendesk/master
418
+ * Merge pull request #899 from kch/kch-readme-fixes
419
+
420
+ ## 2.16.0 / 2016-01-27
2
421
 
3
422
  * 7 minor features:
4
423
 
@@ -38,13 +457,13 @@
38
457
  * Merge pull request #860 from zendesk/expose_old_worker_count
39
458
  * Merge pull request #861 from zendesk/allow_control_url_umask
40
459
 
41
- === 2.15.3 / 2015-11-07
460
+ ## 2.15.3 / 2015-11-07
42
461
 
43
462
  * 1 bug fix:
44
463
 
45
464
  * Fix JRuby parser
46
465
 
47
- === 2.15.2 / 2015-11-06
466
+ ## 2.15.2 / 2015-11-06
48
467
 
49
468
  * 2 bug fixes:
50
469
  * ext/puma_http11: handle duplicate headers as per RFC
@@ -54,13 +473,13 @@
54
473
  * Merge pull request #818 from unleashed/support-duplicate-headers
55
474
  * Merge pull request #819 from VictorLowther/fix-ca-and-verify_null-exception
56
475
 
57
- === 2.15.1 / 2015-11-06
476
+ ## 2.15.1 / 2015-11-06
58
477
 
59
478
  * 1 bug fix:
60
479
 
61
480
  * Allow older openssl versions
62
481
 
63
- === 2.15.0 / 2015-11-06
482
+ ## 2.15.0 / 2015-11-06
64
483
 
65
484
  * 6 minor features:
66
485
  * Allow setting ca without setting a verify mode
@@ -109,7 +528,7 @@
109
528
  * Merge pull request #814 from schneems/schneems/worker_timeout-docs
110
529
  * Merge pull request #817 from unleashed/worker-boot-timeout
111
530
 
112
- === 2.14.0 / 2015-09-18
531
+ ## 2.14.0 / 2015-09-18
113
532
 
114
533
  * 1 minor feature:
115
534
  * Make building with SSL support optional
@@ -117,33 +536,33 @@
117
536
  * 1 bug fix:
118
537
  * Use Rack::Builder if available. Fixes #735
119
538
 
120
- === 2.13.4 / 2015-08-16
539
+ ## 2.13.4 / 2015-08-16
121
540
 
122
541
  * 1 bug fix:
123
542
  * Use the environment possible set by the config early and from
124
543
  the config file later (if set).
125
544
 
126
- === 2.13.3 / 2015-08-15
545
+ ## 2.13.3 / 2015-08-15
127
546
 
128
547
  Seriously, I need to revamp config with tests.
129
548
 
130
549
  * 1 bug fix:
131
550
  * Fix preserving options before cleaning for state. Fixes #769
132
551
 
133
- === 2.13.2 / 2015-08-15
552
+ ## 2.13.2 / 2015-08-15
134
553
 
135
554
  The "clearly I don't have enough tests for the config" release.
136
555
 
137
556
  * 1 bug fix:
138
557
  * Fix another place binds wasn't initialized. Fixes #767
139
558
 
140
- === 2.13.1 / 2015-08-15
559
+ ## 2.13.1 / 2015-08-15
141
560
 
142
561
  * 2 bug fixes:
143
562
  * Fix binds being masked in config files. Fixes #765
144
563
  * Use options from the config file properly in pumactl. Fixes #764
145
564
 
146
- === 2.13.0 / 2015-08-14
565
+ ## 2.13.0 / 2015-08-14
147
566
 
148
567
  * 1 minor feature:
149
568
  * Add before_fork hooks option.
@@ -162,7 +581,7 @@ The "clearly I don't have enough tests for the config" release.
162
581
  * Merge pull request #759 from BenV/fix-centos6-build
163
582
  * Merge pull request #761 from looker/no-log
164
583
 
165
- === 2.12.3 / 2015-08-03
584
+ ## 2.12.3 / 2015-08-03
166
585
 
167
586
  * 8 minor bugs fixed:
168
587
  * Fix Capistrano 'uninitialized constant Puma' error.
@@ -183,13 +602,13 @@ The "clearly I don't have enough tests for the config" release.
183
602
  * 1 test fix:
184
603
  * Add 1.8.7, rbx-1 (allow failures) to Travis.
185
604
 
186
- === 2.12.2 / 2015-07-17
605
+ ## 2.12.2 / 2015-07-17
187
606
 
188
607
  * 2 bug fix:
189
608
  * Pull over and use Rack::URLMap. Fixes #741
190
609
  * Stub out peercert on JRuby for now. Fixes #739
191
610
 
192
- === 2.12.1 / 2015-07-16
611
+ ## 2.12.1 / 2015-07-16
193
612
 
194
613
  * 2 bug fixes:
195
614
  * Use a constant format. Fixes #737
@@ -201,7 +620,7 @@ The "clearly I don't have enough tests for the config" release.
201
620
  * 1 PR merged:
202
621
  * Merge pull request #736 from paulanunda/paulanunda/typo-fix
203
622
 
204
- === 2.12.0 / 2015-07-14
623
+ ## 2.12.0 / 2015-07-14
205
624
 
206
625
  * 13 bug fixes:
207
626
  * Add thread reaping to thread pool
@@ -250,7 +669,7 @@ The "clearly I don't have enough tests for the config" release.
250
669
  * Merge pull request #729 from allaire/patch-1
251
670
  * Merge pull request #730 from iamjarvo/container-infrastructure
252
671
 
253
- === 2.11.3 / 2015-05-18
672
+ ## 2.11.3 / 2015-05-18
254
673
 
255
674
  * 5 bug fixes:
256
675
  * Be sure to unlink tempfiles after a request. Fixes #690
@@ -261,7 +680,7 @@ The "clearly I don't have enough tests for the config" release.
261
680
  * 1 PR merged:
262
681
  * Merge pull request #698 from looker/hang-handshake
263
682
 
264
- === 2.11.2 / 2015-04-11
683
+ ## 2.11.2 / 2015-04-11
265
684
 
266
685
  * 2 minor features:
267
686
  * Add `on_worker_fork` hook, which allows to mimic Unicorn's behavior
@@ -284,7 +703,7 @@ The "clearly I don't have enough tests for the config" release.
284
703
  * Merge pull request #667 from JuanitoFatas/doc/gemspec
285
704
  * Merge pull request #672 from chulkilee/refactor
286
705
 
287
- === 2.11.1 / 2015-02-11
706
+ ## 2.11.1 / 2015-02-11
288
707
 
289
708
  * 2 bug fixes:
290
709
  * Avoid crash in strange restart conditions
@@ -294,7 +713,7 @@ The "clearly I don't have enough tests for the config" release.
294
713
  * Merge pull request #644 from bpaquet/master
295
714
  * Merge pull request #646 from mkonecny/master
296
715
 
297
- === 2.11.0 / 2015-01-20
716
+ ## 2.11.0 / 2015-01-20
298
717
 
299
718
  * 9 bug fixes:
300
719
  * Add mode as an additional bind option to unix sockets. Fixes #630
@@ -327,7 +746,7 @@ The "clearly I don't have enough tests for the config" release.
327
746
  * Merge pull request #639 from ebeigarts/fix-phased-restarts
328
747
  * Merge pull request #640 from codehotter/issue-612-dependent-requests-deadlock
329
748
 
330
- === 2.10.2 / 2014-11-26
749
+ ## 2.10.2 / 2014-11-26
331
750
 
332
751
  * 1 bug fix:
333
752
  * Conditionalize thread local cleaning, fixes perf degradation fix
@@ -335,7 +754,7 @@ The "clearly I don't have enough tests for the config" release.
335
754
  overhead to a each request, so it has to be turned on explicitly
336
755
  if a user needs it.
337
756
 
338
- === 2.10.1 / 2014-11-24
757
+ ## 2.10.1 / 2014-11-24
339
758
 
340
759
  * 1 bug fix:
341
760
  * Load the app after daemonizing because the app might start threads.
@@ -346,7 +765,7 @@ The "clearly I don't have enough tests for the config" release.
346
765
  If you're app has problems starting up, start it without daemon mode initially
347
766
  to test.
348
767
 
349
- === 2.10.0 / 2014-11-23
768
+ ## 2.10.0 / 2014-11-23
350
769
 
351
770
  * 3 minor features:
352
771
  * Added on_worker_shutdown hook mechanism
@@ -375,7 +794,7 @@ The "clearly I don't have enough tests for the config" release.
375
794
  * Merge pull request #608 from Gu1/master
376
795
  * Merge remote-tracking branch 'origin/pr/538'
377
796
 
378
- === 2.9.2 / 2014-10-25
797
+ ## 2.9.2 / 2014-10-25
379
798
 
380
799
  * 8 bug fixes:
381
800
  * Fix puma-wild handling a restart properly. Fixes #550
@@ -395,7 +814,7 @@ The "clearly I don't have enough tests for the config" release.
395
814
  * Merge pull request #581 from alexch/slightly-better-logging
396
815
  * Merge pull request #590 from looker/jruby_disable_sslv3
397
816
 
398
- === 2.9.1 / 2014-09-05
817
+ ## 2.9.1 / 2014-09-05
399
818
 
400
819
  * 4 bug fixes:
401
820
  * Cleanup the SSL related structures properly, fixes memory leak
@@ -407,7 +826,7 @@ The "clearly I don't have enough tests for the config" release.
407
826
  * Merge pull request #561 from theoldreader/sighup
408
827
  * Merge pull request #570 from havenwood/spawn-thread-edge-case
409
828
 
410
- === 2.9.0 / 2014-07-12
829
+ ## 2.9.0 / 2014-07-12
411
830
 
412
831
  * 1 minor feature:
413
832
  * Add SSL support for JRuby
@@ -431,7 +850,7 @@ The "clearly I don't have enough tests for the config" release.
431
850
  * Merge pull request #544 from chulkilee/bsd-3-clause
432
851
  * Merge pull request #551 from jcxplorer/patch-1
433
852
 
434
- === 2.8.2 / 2014-04-12
853
+ ## 2.8.2 / 2014-04-12
435
854
 
436
855
  * 4 bug fixes:
437
856
  * During upgrade, change directory in main process instead of workers.
@@ -458,7 +877,7 @@ The "clearly I don't have enough tests for the config" release.
458
877
  * Merge pull request #517 from misfo/patch-1
459
878
  * Merge pull request #518 from LongMan/master
460
879
 
461
- === 2.8.1 / 2014-03-06
880
+ ## 2.8.1 / 2014-03-06
462
881
 
463
882
  * 1 bug fixes:
464
883
  * Run puma-wild with proper deps for prune_bundler
@@ -474,7 +893,7 @@ The "clearly I don't have enough tests for the config" release.
474
893
  * Merge pull request #490 from tobinibot/patch-1
475
894
  * Merge pull request #491 from brianknight10/clarify-no-config
476
895
 
477
- === 2.8.0 / 2014-02-28
896
+ ## 2.8.0 / 2014-02-28
478
897
 
479
898
  * 8 minor features:
480
899
  * Add ability to autoload a config file. Fixes #438
@@ -517,13 +936,13 @@ The "clearly I don't have enough tests for the config" release.
517
936
  * Merge pull request #482 from prathamesh-sonpatki/signals-doc-cleanup
518
937
  * Merge pull request #483 from YotpoLtd/master
519
938
 
520
- === 2.7.1 / 2013-12-05
939
+ ## 2.7.1 / 2013-12-05
521
940
 
522
941
  * 1 bug fix:
523
942
 
524
943
  * Keep STDOUT/STDERR the right mode. Fixes #422
525
944
 
526
- === 2.7.0 / 2013-12-03
945
+ ## 2.7.0 / 2013-12-03
527
946
 
528
947
  * 1 minor feature:
529
948
  * Adding TTIN and TTOU to increment/decrement workers
@@ -540,7 +959,7 @@ The "clearly I don't have enough tests for the config" release.
540
959
  * Increase the max URI path length to 2048 chars from 1024 chars
541
960
  * Upstart jungle use config/puma.rb instead
542
961
 
543
- === 2.6.0 / 2013-09-13
962
+ ## 2.6.0 / 2013-09-13
544
963
 
545
964
  * 2 minor features:
546
965
  * Add support for event hooks
@@ -553,14 +972,14 @@ The "clearly I don't have enough tests for the config" release.
553
972
  * Handle BrokenPipe, StandardError and IOError in fat_wrote and break out
554
973
  * Return success status to the invoking environment
555
974
 
556
- === 2.5.1 / 2013-08-13
975
+ ## 2.5.1 / 2013-08-13
557
976
 
558
977
  * 2 bug fixes:
559
978
 
560
979
  * Keep jruby daemon mode from retrying on a hot restart
561
980
  * Extract version from const.rb in gemspec
562
981
 
563
- === 2.5.0 / 2013-08-08
982
+ ## 2.5.0 / 2013-08-08
564
983
 
565
984
  * 2 minor features:
566
985
  * Allow configuring pumactl with config.rb
@@ -582,12 +1001,12 @@ The "clearly I don't have enough tests for the config" release.
582
1001
  * Remove obsolete pumactl instructions; refer to pumactl for details
583
1002
  * Make Bundler used puma.gemspec version agnostic
584
1003
 
585
- === 2.4.1 / 2013-08-07
1004
+ ## 2.4.1 / 2013-08-07
586
1005
 
587
1006
  * 1 experimental feature:
588
1007
  * Support raw tcp servers (aka Lopez Express mode)
589
1008
 
590
- === 2.4.0 / 2013-07-22
1009
+ ## 2.4.0 / 2013-07-22
591
1010
 
592
1011
  * 5 minor features:
593
1012
  * Add PUMA_JRUBY_DAEMON_OPTS to get around agent starting twice
@@ -610,13 +1029,13 @@ The "clearly I don't have enough tests for the config" release.
610
1029
  * Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes #309
611
1030
 
612
1031
 
613
- === 2.3.2 / 2013-07-08
1032
+ ## 2.3.2 / 2013-07-08
614
1033
 
615
1034
  * 1 bug fix:
616
1035
 
617
1036
  * Move starting control server to after daemonization.
618
1037
 
619
- === 2.3.1 / 2013-07-06
1038
+ ## 2.3.1 / 2013-07-06
620
1039
 
621
1040
  * 2 bug fixes:
622
1041
 
@@ -626,7 +1045,7 @@ The "clearly I don't have enough tests for the config" release.
626
1045
  * 1 doc change:
627
1046
  * Better document some platform constraints
628
1047
 
629
- === 2.3.0 / 2013-07-05
1048
+ ## 2.3.0 / 2013-07-05
630
1049
 
631
1050
  * 1 major bug fix:
632
1051
 
@@ -645,13 +1064,13 @@ The "clearly I don't have enough tests for the config" release.
645
1064
  * Refactored modes into seperate classes that CLI uses
646
1065
  * Changed CLI to take an Events object instead of stdout/stderr (API change)
647
1066
 
648
- === 2.2.2 / 2013-07-02
1067
+ ## 2.2.2 / 2013-07-02
649
1068
 
650
1069
  * 1 bug fix:
651
1070
 
652
1071
  * Fix restart_command in the config
653
1072
 
654
- === 2.2.1 / 2013-07-02
1073
+ ## 2.2.1 / 2013-07-02
655
1074
 
656
1075
  * 1 minor feature:
657
1076
 
@@ -661,7 +1080,7 @@ The "clearly I don't have enough tests for the config" release.
661
1080
 
662
1081
  * Pass custom restart command in JRuby
663
1082
 
664
- === 2.2.0 / 2013-07-01
1083
+ ## 2.2.0 / 2013-07-01
665
1084
 
666
1085
  * 1 major feature:
667
1086
 
@@ -672,14 +1091,14 @@ The "clearly I don't have enough tests for the config" release.
672
1091
  * Don't leak info when not in development. Fixes #256
673
1092
  * Load the app, then bind the ports
674
1093
 
675
- === 2.1.1 / 2013-06-20
1094
+ ## 2.1.1 / 2013-06-20
676
1095
 
677
1096
  * 2 minor bug fixes:
678
1097
 
679
1098
  * Fix daemonization on jruby
680
1099
  * Load the application before daemonizing. Fixes #285
681
1100
 
682
- === 2.1.0 / 2013-06-18
1101
+ ## 2.1.0 / 2013-06-18
683
1102
 
684
1103
  * 3 minor features:
685
1104
  * Allow listening socket to be configured via Capistrano variable
@@ -708,13 +1127,13 @@ The "clearly I don't have enough tests for the config" release.
708
1127
  * Add some documentation for Clustered mode
709
1128
  * Added quotes to /etc/puma.conf
710
1129
 
711
- === 2.0.1 / 2013-04-30
1130
+ ## 2.0.1 / 2013-04-30
712
1131
 
713
1132
  * 1 bug fix:
714
1133
 
715
1134
  * Fix not starting on JRuby properly
716
1135
 
717
- === 2.0.0 / 2013-04-29
1136
+ ## 2.0.0 / 2013-04-29
718
1137
 
719
1138
  RailsConf 2013 edition!
720
1139
 
@@ -731,7 +1150,7 @@ RailsConf 2013 edition!
731
1150
  * Fix stdout/stderr logs to sync outputs
732
1151
  * allow binding to IPv6 addresses
733
1152
 
734
- === 2.0.0.b7 / 2013-03-18
1153
+ ## 2.0.0.b7 / 2013-03-18
735
1154
 
736
1155
  * 5 minor enhancements:
737
1156
 
@@ -756,7 +1175,7 @@ RailsConf 2013 edition!
756
1175
  * Write out the state post-daemonize. Fixes #189
757
1176
  * Prevent crash when all workers are gone
758
1177
 
759
- === 2.0.0.b6 / 2013-02-06
1178
+ ## 2.0.0.b6 / 2013-02-06
760
1179
 
761
1180
  * 2 minor enhancements:
762
1181
 
@@ -767,7 +1186,7 @@ RailsConf 2013 edition!
767
1186
 
768
1187
  * Change directory in working during upgrade. Fixes #185
769
1188
 
770
- === 2.0.0.b5 / 2013-02-05
1189
+ ## 2.0.0.b5 / 2013-02-05
771
1190
 
772
1191
  * 2 major features:
773
1192
  * Add phased worker upgrade
@@ -784,7 +1203,7 @@ RailsConf 2013 edition!
784
1203
  * Move write_pid to after we daemonize. Fixes #180
785
1204
  * Redirect IO properly and emit message for checkpointing
786
1205
 
787
- === 2.0.0.b4 / 2012-12-12
1206
+ ## 2.0.0.b4 / 2012-12-12
788
1207
 
789
1208
  * 4 bug fixes:
790
1209
  * Properly check #syswrite's value for variable sized buffers. Fixes #170
@@ -792,12 +1211,12 @@ RailsConf 2013 edition!
792
1211
  * Handle char vs byte and mixing syswrite with write properly
793
1212
  * made MiniSSL validate key/cert file existence
794
1213
 
795
- === 2.0.0.b3 / 2012-11-22
1214
+ ## 2.0.0.b3 / 2012-11-22
796
1215
 
797
1216
  * 1 bug fix:
798
1217
  * Package right files in gem
799
1218
 
800
- === 2.0.0.b2 / 2012-11-18
1219
+ ## 2.0.0.b2 / 2012-11-18
801
1220
  * 5 minor feature:
802
1221
  * Now Puma is bundled with an capistrano recipe. Just require
803
1222
  'puma/capistrano' in you deploy.rb
@@ -815,7 +1234,7 @@ RailsConf 2013 edition!
815
1234
  * Be sure to empty the drain the todo before shutting down. Fixes #155
816
1235
  * allow for alternate locations for status app
817
1236
 
818
- === 2.0.0.b1 / 2012-09-11
1237
+ ## 2.0.0.b1 / 2012-09-11
819
1238
 
820
1239
  * 1 major feature:
821
1240
  * Optional worker process mode (-w) to allow for process scaling in
@@ -828,32 +1247,32 @@ RailsConf 2013 edition!
828
1247
  NOTE: SSL support in JRuby is not supported at present. Support will
829
1248
  be added back in a future date when a java Puma::MiniSSL is added.
830
1249
 
831
- === 1.6.3 / 2012-09-04
1250
+ ## 1.6.3 / 2012-09-04
832
1251
 
833
1252
  * 1 bug fix:
834
1253
  * Close sockets waiting in the reactor when a hot restart is performed
835
1254
  so that browsers reconnect on the next request
836
1255
 
837
- === 1.6.2 / 2012-08-27
1256
+ ## 1.6.2 / 2012-08-27
838
1257
 
839
1258
  * 1 bug fix:
840
1259
  * Rescue StandardError instead of IOError to handle SystemCallErrors
841
1260
  as well as other application exceptions inside the reactor.
842
1261
 
843
- === 1.6.1 / 2012-07-23
1262
+ ## 1.6.1 / 2012-07-23
844
1263
 
845
1264
  * 1 packaging bug fixed:
846
1265
  * Include missing files
847
1266
 
848
- === 1.6.0 / 2012-07-23
1267
+ ## 1.6.0 / 2012-07-23
849
1268
 
850
1269
  * 1 major bug fix:
851
1270
  * Prevent slow clients from starving the server by introducing a
852
1271
  dedicated IO reactor thread. Credit for reporting goes to @meh.
853
1272
 
854
- === 1.5.0 / 2012-07-19
1273
+ ## 1.5.0 / 2012-07-19
855
1274
 
856
- * 7 contributers to this release:
1275
+ * 7 contributors to this release:
857
1276
  * Christian Mayer
858
1277
  * Darío Javier Cravero
859
1278
  * Dirkjan Bussink
@@ -875,7 +1294,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
875
1294
  * Allow Server#run to run sync. Fixes #111
876
1295
  * Puma can now run on windows
877
1296
 
878
- === 1.4.0 / 2012-06-04
1297
+ ## 1.4.0 / 2012-06-04
879
1298
 
880
1299
  * 1 bug fix:
881
1300
  * SCRIPT_NAME should be passed from env to allow mounting apps
@@ -883,13 +1302,13 @@ be added back in a future date when a java Puma::MiniSSL is added.
883
1302
  * 1 experimental feature:
884
1303
  * Add puma.socket key for direct socket access
885
1304
 
886
- === 1.3.1 / 2012-05-15
1305
+ ## 1.3.1 / 2012-05-15
887
1306
 
888
1307
  * 2 bug fixes:
889
1308
  * use #bytesize instead of #length for Content-Length header
890
1309
  * Use StringIO properly. Fixes #98
891
1310
 
892
- === 1.3.0 / 2012-05-08
1311
+ ## 1.3.0 / 2012-05-08
893
1312
 
894
1313
  * 2 minor features:
895
1314
  * Return valid Rack responses (passes Lint) from status server
@@ -901,10 +1320,10 @@ be added back in a future date when a java Puma::MiniSSL is added.
901
1320
  * Only stop the status server if it's started. Fixes #84
902
1321
  * Set RACK_ENV early in cli also. Fixes #78
903
1322
 
904
- * 1 new contributer:
1323
+ * 1 new contributor:
905
1324
  * Jesse Cooke
906
1325
 
907
- === 1.2.2 / 2012-04-28
1326
+ ## 1.2.2 / 2012-04-28
908
1327
 
909
1328
  * 4 bug fixes:
910
1329
 
@@ -913,13 +1332,13 @@ be added back in a future date when a java Puma::MiniSSL is added.
913
1332
  * Keep the encoding of the body correct. Fixes #79
914
1333
  * show error.to_s along with backtrace for low-level error
915
1334
 
916
- === 1.2.1 / 2012-04-11
1335
+ ## 1.2.1 / 2012-04-11
917
1336
 
918
1337
  1 bug fix:
919
1338
 
920
1339
  * Fix rack.url_scheme for SSL servers. Fixes #65
921
1340
 
922
- === 1.2.0 / 2012-04-11
1341
+ ## 1.2.0 / 2012-04-11
923
1342
 
924
1343
  1 major feature:
925
1344
 
@@ -937,20 +1356,20 @@ be added back in a future date when a java Puma::MiniSSL is added.
937
1356
  * Fix reporting https only on a true SSL connection
938
1357
  * Set the default content type to 'text/plain'. Fixes #63
939
1358
  * Use REUSEADDR. Fixes #60
940
- * Shutdown gracefull on SIGTERM. Fixes #53
1359
+ * Shutdown gracefully on SIGTERM. Fixes #53
941
1360
 
942
- 2 new contributers:
1361
+ 2 new contributors:
943
1362
 
944
1363
  * Seamus Abshere
945
1364
  * Steve Richert
946
1365
 
947
- === 1.1.1 / 2012-03-30
1366
+ ## 1.1.1 / 2012-03-30
948
1367
 
949
1368
  1 bugfix:
950
1369
 
951
1370
  * Include puma/compat.rb in the gem (oops!)
952
1371
 
953
- === 1.1.0 / 2012-03-30
1372
+ ## 1.1.0 / 2012-03-30
954
1373
 
955
1374
  1 bugfix:
956
1375
 
@@ -960,6 +1379,6 @@ be added back in a future date when a java Puma::MiniSSL is added.
960
1379
 
961
1380
  * Add umask param to the unix:// bind to set the umask
962
1381
 
963
- === 1.0.0 / 2012-03-29
1382
+ ## 1.0.0 / 2012-03-29
964
1383
 
965
1384
  * Released!