puma 5.6.9-java → 6.6.0-java
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 +4 -4
- data/History.md +465 -18
- data/README.md +152 -42
- data/bin/puma-wild +1 -1
- data/docs/compile_options.md +34 -0
- data/docs/fork_worker.md +12 -4
- data/docs/java_options.md +54 -0
- data/docs/kubernetes.md +12 -0
- data/docs/nginx.md +1 -1
- data/docs/plugins.md +4 -0
- data/docs/restart.md +1 -0
- data/docs/signals.md +2 -2
- data/docs/stats.md +8 -3
- data/docs/systemd.md +13 -7
- data/docs/testing_benchmarks_local_files.md +150 -0
- data/docs/testing_test_rackup_ci_files.md +36 -0
- data/ext/puma_http11/extconf.rb +27 -17
- data/ext/puma_http11/http11_parser.c +1 -1
- data/ext/puma_http11/http11_parser.h +1 -1
- data/ext/puma_http11/http11_parser.java.rl +2 -2
- data/ext/puma_http11/http11_parser.rl +2 -2
- data/ext/puma_http11/http11_parser_common.rl +2 -2
- data/ext/puma_http11/mini_ssl.c +137 -19
- data/ext/puma_http11/org/jruby/puma/Http11.java +31 -10
- data/ext/puma_http11/org/jruby/puma/Http11Parser.java +1 -1
- data/ext/puma_http11/org/jruby/puma/MiniSSL.java +157 -53
- data/ext/puma_http11/puma_http11.c +21 -10
- data/lib/puma/app/status.rb +4 -4
- data/lib/puma/binder.rb +60 -55
- data/lib/puma/cli.rb +22 -20
- data/lib/puma/client.rb +93 -30
- data/lib/puma/cluster/worker.rb +27 -17
- data/lib/puma/cluster/worker_handle.rb +8 -6
- data/lib/puma/cluster.rb +121 -47
- data/lib/puma/commonlogger.rb +21 -14
- data/lib/puma/configuration.rb +101 -65
- data/lib/puma/const.rb +141 -93
- data/lib/puma/control_cli.rb +19 -15
- data/lib/puma/detect.rb +7 -4
- data/lib/puma/dsl.rb +521 -88
- data/lib/puma/error_logger.rb +22 -13
- data/lib/puma/events.rb +6 -126
- data/lib/puma/io_buffer.rb +39 -4
- data/lib/puma/jruby_restart.rb +0 -15
- data/lib/puma/launcher/bundle_pruner.rb +104 -0
- data/lib/puma/launcher.rb +121 -181
- data/lib/puma/log_writer.rb +147 -0
- data/lib/puma/minissl/context_builder.rb +27 -12
- data/lib/puma/minissl.rb +105 -11
- data/lib/puma/null_io.rb +42 -2
- data/lib/puma/plugin/systemd.rb +90 -0
- data/lib/puma/plugin/tmp_restart.rb +1 -1
- data/lib/puma/puma_http11.jar +0 -0
- data/lib/puma/rack/builder.rb +6 -6
- data/lib/puma/rack/urlmap.rb +1 -1
- data/lib/puma/rack_default.rb +19 -4
- data/lib/puma/reactor.rb +19 -10
- data/lib/puma/request.rb +368 -169
- data/lib/puma/runner.rb +65 -22
- data/lib/puma/sd_notify.rb +146 -0
- data/lib/puma/server.rb +161 -102
- data/lib/puma/single.rb +13 -11
- data/lib/puma/state_file.rb +3 -6
- data/lib/puma/thread_pool.rb +71 -21
- data/lib/puma/util.rb +1 -12
- data/lib/puma.rb +9 -10
- data/lib/rack/handler/puma.rb +116 -86
- data/tools/Dockerfile +2 -2
- metadata +17 -12
- data/lib/puma/queue_close.rb +0 -26
- data/lib/puma/systemd.rb +0 -46
- data/lib/rack/version_restriction.rb +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dfd1231ff4cb015039008033048363558383da83f699e7b20035c0a0ad62a50
|
4
|
+
data.tar.gz: f1163c39e8cf7374c7b777140e5ddf8cd7427f44178f4f5257154dab3307992f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30bf816517a7a65d268917f6f996a9f889a12e911db48373818a94ad808011269534d46555316d602462539ac732beb2c7f1f58e8f8f032c58c72aaab9d52706
|
7
|
+
data.tar.gz: b226ba82ffd6027d51ad5e63dadfca776a56e685f5b6583b815815aab69cb79aaf27b4c06e81021f15a75691aedf75fca7dc017df2f5bf913965aa635e989627
|
data/History.md
CHANGED
@@ -1,7 +1,264 @@
|
|
1
|
+
## 6.6.0 / 2025-01-29
|
2
|
+
|
3
|
+
* Features
|
4
|
+
* Option to turn off SIGUSR2 trapping ([#3570], [#3567])
|
5
|
+
* Shorten `ThreadPool` trimmer and reaper thread names ([#3383])
|
6
|
+
* Add after_refork hook ([#3386])
|
7
|
+
* Add busy threads stat ([#3517])
|
8
|
+
* Add a debug log before running each type of hook ([#3375])
|
9
|
+
* Allow alternative schemes in Binder ([#3348], [#3302])
|
10
|
+
* Avoid spawning `Threadpool#trim` thread if pool size is fixed ([#3384])
|
11
|
+
|
12
|
+
* Bugfixes
|
13
|
+
* Change `HttpParserError` to be subclass of `StandardError` ([#3590], [#3552])
|
14
|
+
* added test cases
|
15
|
+
* fix update phased restart symlink folder
|
16
|
+
|
17
|
+
* Performance
|
18
|
+
* Only ping worker 0 during phased restart if using fork worker ([#3568])
|
19
|
+
|
20
|
+
* Refactor
|
21
|
+
* Fix multi-delimiter split to get status app token ([#3505])
|
22
|
+
* Change ping to use const ([#3595])
|
23
|
+
* Fixup use of Puma::Const::PipeRequest constants ([#3565])
|
24
|
+
* Update DSL hook processing logic to be consistent ([#3376])
|
25
|
+
|
26
|
+
## 6.5.0 / 2024-11-23
|
27
|
+
|
28
|
+
* Features
|
29
|
+
* Print RUBY_DESCRIPTION when Puma starts ([#3407])
|
30
|
+
* Set the worker process count automatically when using WEB_CONCURRENCY=auto ([#3439], [#3437])
|
31
|
+
* Mark as ractor-safe ([#3486], [#3422])
|
32
|
+
* Add option `enable_keep_alive`. `true` mimics existing behavior, but now can use `false` to disable keepalive to reduce queue tail latency ([#3496])
|
33
|
+
* Add parameters to Puma methods to allow CI to change ENV in isolation ([#3485])
|
34
|
+
* Add `ssl_ciphersuites` option for TLSv1.3 ciphers ([#3359], [#3343])
|
35
|
+
* You can now use `--threads 5` or `threads 5` to config max/min threads with a single number (used to need to say `5:5`) ([#3309])
|
36
|
+
* Option to turn off systemd plugin ([#3425], [#3424])
|
37
|
+
* Add `on_stopped` hook ([#3411], [#3380])
|
38
|
+
|
39
|
+
* Bugfixes
|
40
|
+
* Handle blank environment variables when loading config ([#3539])
|
41
|
+
* lib/rack/handler/puma.rb - fix for rackup v1.0.1, adjust Gemfile ([#3532], [#3531])
|
42
|
+
* null_io.rb - add `external_encoding`, `set_encoding`, `binmode`, `binmode?` ([#3214])
|
43
|
+
* Implement NullIO#seek and #pos to mimic IO ([#3468])
|
44
|
+
* add support in rack handler & fix regression in binder for linux abstract namespace sockets ([#3508])
|
45
|
+
* Use actual thread local for `Puma::Server.current`. ([#3360])
|
46
|
+
* client.rb - fix request chunked body handling ([#3338], [#3337])
|
47
|
+
* Properly handle two requests seen in the initial buffer ([#3332])
|
48
|
+
* Fix response repeated status line when request is invalid or errors are raised ([#3308], [#3307])
|
49
|
+
* Fix child processes not being reaped when `Process.detach` used ([#3314], [#3313])
|
50
|
+
|
51
|
+
* JRuby
|
52
|
+
* Make HTTP length constants configurable ([#3518])
|
53
|
+
* Fixup jruby_restart.rb & launcher.rb to work with ARM64 macOS JRuby ([#3467])
|
54
|
+
|
55
|
+
* Performance
|
56
|
+
* Avoid checking if all workers reached timeout unless idle timeout is configured ([#3341])
|
57
|
+
* Request body - increase read size to 64 kB ([#3548])
|
58
|
+
* single mode skip wait_for_less_busy_worker ([#3325])
|
59
|
+
|
60
|
+
* Refactor
|
61
|
+
* A ton of CI/test improvements by @MSP-Greg, as usual.
|
62
|
+
* Add ThreadPool#stats and adjust Server#stats to use it ([#3527])
|
63
|
+
* normalize whitespace in worker stats string ([#3513])
|
64
|
+
* rack/handler/puma.rb - ssl - use `start_with?`, add test ([#3510])
|
65
|
+
* extconf.rb - add logging for OpenSSL versions ([#3370])
|
66
|
+
* Lazily require `Puma::Rack::Builder` ([#3340])
|
67
|
+
* Refactor: Constantize worker pipe request types ([#3318])
|
68
|
+
|
69
|
+
* Docs
|
70
|
+
* stats.md improvements ([#3514])
|
71
|
+
* control_cli.rb: Harmonize help message with bin/puma ([#3434])
|
72
|
+
* dsl.rb: Clarify a callback's argument ([#3435])
|
73
|
+
* lib/rack/handler/puma.rb - relocate and fixup module comment ([#3495])
|
74
|
+
|
75
|
+
## 6.4.3 / 2024-09-19
|
76
|
+
|
77
|
+
* Security
|
78
|
+
* Discards any headers using underscores if the non-underscore version also exists. Without this, an attacker could overwrite values set by intermediate proxies (e.g. X-Forwarded-For). ([CVE-2024-45614](https://github.com/puma/puma/security/advisories/GHSA-9hf4-67fc-4vf4)/GHSA-9hf4-67fc-4vf4)
|
79
|
+
|
80
|
+
## 6.4.2 / 2024-01-08
|
81
|
+
|
82
|
+
* Security
|
83
|
+
* Limit the size of chunk extensions. Without this limit, an attacker could cause unbounded resource (CPU, network bandwidth) consumption. ([GHSA-c2f4-cvqm-65w2](https://github.com/puma/puma/security/advisories/GHSA-c2f4-cvqm-65w2))
|
84
|
+
|
85
|
+
## 6.4.1 / 2024-01-03
|
86
|
+
|
87
|
+
* Bugfixes
|
88
|
+
* DSL#warn_if_in_single_mode - fixup when workers set via CLI ([#3256])
|
89
|
+
* Fix `idle-timeout` not working in cluster mode ([#3235], [#3228], [#3282], [#3283])
|
90
|
+
* Fix worker 0 timing out during phased restart ([#3225], [#2786])
|
91
|
+
* context_builder.rb - require openssl if verify_mode != 'none' ([#3179])
|
92
|
+
* Make puma cluster process suitable as PID 1 ([#3255])
|
93
|
+
* Improve Puma::NullIO consistency with real IO ([#3276])
|
94
|
+
* extconf.rb - fixup to detect openssl info in Ruby build ([#3271], [#3266])
|
95
|
+
* MiniSSL.java - set serialVersionUID, fix RaiseException deprecation ([#3270])
|
96
|
+
* dsl.rb - fix warn_if_in_single_mode when WEB_CONCURRENCY is set ([#3265], [#3264])
|
97
|
+
|
98
|
+
* Maintenance
|
99
|
+
* LOTS of test refactoring to make tests more stable and easier to write - thanks to @MSP-Greg!
|
100
|
+
* Fix bug in tests re: TestPuma::HOST4 ([#3254])
|
101
|
+
* Dockerfile for minimal repros: use Ruby 3.2, expect bundler installed ([#3245])
|
102
|
+
* fix define_method calls, use Symbol parameter instead of String ([#3293])
|
103
|
+
|
104
|
+
* Docs
|
105
|
+
* README.md - add the puma-acme plugin ([#3301])
|
106
|
+
* Remove `--keep-file-descriptors` flag from systemd docs ([#3248])
|
107
|
+
* Note symlink mechanism in restart documentation for hot restart ([#3298])
|
108
|
+
|
109
|
+
## 6.4.0 / 2023-09-21
|
110
|
+
|
111
|
+
* Features
|
112
|
+
* on_thread_exit hook ([#2920])
|
113
|
+
* on_thread_start_hook ([#3195])
|
114
|
+
* Shutdown on idle ([#3209], [#2580])
|
115
|
+
* New error message when control server port taken ([#3204])
|
116
|
+
|
117
|
+
* Refactor
|
118
|
+
* Remove `Forwardable` dependency ([#3191], #3190)
|
119
|
+
* Update URLMap Regexp usage for Ruby v3.3 ([#3165])
|
120
|
+
|
121
|
+
* Bugfixes
|
122
|
+
* Bring the cert_pem: parameter into parity with the cert: parameter to ssl_bind. ([#3174])
|
123
|
+
* Fix using control server with IPv6 host ([#3181])
|
124
|
+
* control_cli.rb - add require_relative 'log_writer' ([#3187])
|
125
|
+
* Fix cases where fallback Rack response wasn't sent to the client ([#3094])
|
126
|
+
|
127
|
+
## 6.3.1 / 2023-08-18
|
128
|
+
|
129
|
+
* Security
|
130
|
+
* Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields ([GHSA-68xg-gqqm-vgj8](https://github.com/puma/puma/security/advisories/GHSA-68xg-gqqm-vgj8))
|
131
|
+
|
132
|
+
## 6.3.0 / 2023-05-31
|
133
|
+
|
134
|
+
* Features
|
135
|
+
* Add dsl method `supported_http_methods` ([#3106], [#3014])
|
136
|
+
* Puma error responses no longer have any fingerprints to indicate Puma ([#3161], [#3037])
|
137
|
+
* Support decryption of SSL key ([#3133], [#3132])
|
138
|
+
|
139
|
+
* Bugfixes
|
140
|
+
* Don't send 103 early hints response when only invalid headers are used ([#3163])
|
141
|
+
* Handle malformed request path ([#3155], [#3148])
|
142
|
+
* Misc lib file fixes - trapping additional errors, CI helper ([#3129])
|
143
|
+
* Fixup req form data file upload with "r\n" line endings ([#3137])
|
144
|
+
* Restore rack 1.6 compatibility ([#3156])
|
145
|
+
|
146
|
+
* Refactor
|
147
|
+
* const.rb - Update Puma::HTTP_STATUS_CODES ([#3162])
|
148
|
+
* Clarify Reactor#initialize ([#3151])
|
149
|
+
|
150
|
+
## 6.2.2 / 2023-04-17
|
151
|
+
|
152
|
+
* Bugfixes
|
153
|
+
* Fix Rack-related NameError by adding :: operator ([#3118], [#3117])
|
154
|
+
|
155
|
+
## 6.2.1 / 2023-03-31
|
156
|
+
|
157
|
+
* Bugfixes
|
158
|
+
* Fix java 8 compatibility ([#3109], [#3108])
|
159
|
+
* Always write io_buffer when in "enum bodies" branch. ([#3113], [#3112])
|
160
|
+
* Fix warn_if_in_single_mode incorrect message ([#3111])
|
161
|
+
|
162
|
+
## 6.2.0 / 2023-03-29
|
163
|
+
|
164
|
+
* Features
|
165
|
+
* Ability to supply a custom logger ([#2770], [#2511])
|
166
|
+
* Warn when clustered-only hooks are defined in single mode ([#3089])
|
167
|
+
* Adds the on_booted event ([#2709])
|
168
|
+
|
169
|
+
* Bugfixes
|
170
|
+
* Loggers - internal_write - catch Errno::EINVAL ([#3091])
|
171
|
+
* commonlogger.rb - fix HIJACK time format, use constants, not strings ([#3074])
|
172
|
+
* Fixed some edge cases regarding request hijacking ([#3072])
|
173
|
+
|
174
|
+
## 6.1.1 / 2023-02-28
|
175
|
+
|
176
|
+
* Bugfixes
|
177
|
+
* We no longer try to use the systemd plugin for JRuby ([#3079])
|
178
|
+
* Allow ::Rack::Handler::Puma.run to work regardless of whether Rack/Rackup are loaded ([#3080])
|
179
|
+
|
180
|
+
## 6.1.0 / 2023-02-12
|
181
|
+
|
182
|
+
* Features
|
183
|
+
* WebSocket support via partial hijack ([#3058], [#3007])
|
184
|
+
* Add built-in systemd notify support ([#3011])
|
185
|
+
* Periodically send status to systemd ([#3006], [#2604])
|
186
|
+
* Introduce the ability to return 413: payload too large for requests ([#3040])
|
187
|
+
* Log loaded extensions when `PUMA_DEBUG` is set ([#3036], [#3020])
|
188
|
+
|
189
|
+
* Bugfixes
|
190
|
+
* Fix issue with rack 3 compatibility re: rackup ([#3061], [#3057])
|
191
|
+
* Allow setting TCP low_latency with SSL listener ([#3065])
|
192
|
+
|
193
|
+
* Performance
|
194
|
+
* Reduce memory usage for large file uploads ([#3062])
|
195
|
+
|
196
|
+
## 6.0.2 / 2023-01-01
|
197
|
+
|
198
|
+
* Refactor
|
199
|
+
* Remove use of etc and time gems in Puma ([#3035], [#3033])
|
200
|
+
* Refactor const.rb - freeze ([#3016])
|
201
|
+
|
202
|
+
## 6.0.1 / 2022-12-20
|
203
|
+
|
204
|
+
* Bugfixes
|
205
|
+
* Handle waking up a closed selector in Reactor#add ([#3005])
|
206
|
+
* Fixup response processing, enumerable bodies ([#3004], [#3000])
|
207
|
+
* Correctly close app body for all code paths ([#3002], [#2999])
|
208
|
+
* Refactor
|
209
|
+
* Add IOBuffer to Client, remove from ThreadPool thread instances ([#3013])
|
210
|
+
|
211
|
+
## 6.0.0 / 2022-10-14
|
212
|
+
|
213
|
+
* Breaking Changes
|
214
|
+
* Dropping Ruby 2.2 and 2.3 support (now 2.4+) ([#2919])
|
215
|
+
* Remote_addr functionality has changed ([#2652], [#2653])
|
216
|
+
* No longer supporting Java 1.7 or below (JRuby 9.1 was the last release to support this) ([#2849])
|
217
|
+
* Remove nakayoshi GC ([#2933], [#2925])
|
218
|
+
* wait_for_less_busy_worker is now default on ([#2940])
|
219
|
+
* Prefix all environment variables with `PUMA_` ([#2924], [#2853])
|
220
|
+
* Removed some constants ([#2957], [#2958], [#2959], [#2960])
|
221
|
+
* The following classes are now part of Puma's private API: `Client`, `Cluster::Worker`, `Cluster::Worker`, `HandleRequest`. ([#2988])
|
222
|
+
* Configuration constants like `DefaultRackup` removed ([#2928])
|
223
|
+
* Extracted `LogWriter` from `Events` ([#2798])
|
224
|
+
* Only accept the standard 8 HTTP methods, others rejected with 501. ([#2932])
|
225
|
+
|
226
|
+
* Features
|
227
|
+
* Increase throughput on large (100kb+) response bodies by 3-10x ([#2896], [#2892])
|
228
|
+
* Increase throughput on file responses ([#2923])
|
229
|
+
* Add support for streaming bodies in Rack. ([#2740])
|
230
|
+
* Allow OpenSSL session reuse via a 'reuse' ssl_bind method or bind string query parameter ([#2845])
|
231
|
+
* Allow `run_hooks` to pass a hash to blocks for use later ([#2917], [#2915])
|
232
|
+
* Allow using `preload_app!` with `fork_worker` ([#2907])
|
233
|
+
* Support request_body_wait metric with higher precision ([#2953])
|
234
|
+
* Allow header values to be arrays (Rack 3) ([#2936], [#2931])
|
235
|
+
* Export Puma/Ruby versions in /stats ([#2875])
|
236
|
+
* Allow configuring request uri max length & request path max length ([#2840])
|
237
|
+
* Add a couple of public accessors ([#2774])
|
238
|
+
* Log entire backtrace when worker start fails ([#2891])
|
239
|
+
* [jruby] Enable TLSv1.3 support ([#2886])
|
240
|
+
* [jruby] support setting TLS protocols + rename ssl_cipher_list ([#2899])
|
241
|
+
* [jruby] Support a truststore option ([#2849], [#2904], [#2884])
|
242
|
+
|
243
|
+
* Bugfixes
|
244
|
+
* Load the configuration before passing it to the binder ([#2897])
|
245
|
+
* Do not raise error raised on HTTP methods we don't recognize or support, like CONNECT ([#2932], [#1441])
|
246
|
+
* Fixed a memory leak when creating a new SSL listener ([#2956])
|
247
|
+
|
248
|
+
* Refactor
|
249
|
+
* log_writer.rb - add internal_write method ([#2888])
|
250
|
+
* Extract prune_bundler code into it's own class. ([#2797])
|
251
|
+
* Refactor Launcher#run to increase readability (no logic change) ([#2795])
|
252
|
+
* Ruby 3.2 will have native IO#wait_* methods, don't require io/wait ([#2903])
|
253
|
+
* Various internal API refactorings ([#2942], [#2921], [#2922], [#2955])
|
254
|
+
|
1
255
|
## 5.6.9 / 2024-09-19
|
2
256
|
|
3
257
|
* Security
|
4
258
|
* Discards any headers using underscores if the non-underscore version also exists. Without this, an attacker could overwrite values set by intermediate proxies (e.g. X-Forwarded-For). ([CVE-2024-45614](https://github.com/puma/puma/security/advisories/GHSA-9hf4-67fc-4vf4)/GHSA-9hf4-67fc-4vf4)
|
259
|
+
* JRuby
|
260
|
+
* Must use at least Java >= 9 to compile. You can no longer build from source on Java 8.
|
261
|
+
|
5
262
|
|
6
263
|
## 5.6.8 / 2024-01-08
|
7
264
|
|
@@ -16,7 +273,7 @@
|
|
16
273
|
## 5.6.6 / 2023-06-21
|
17
274
|
|
18
275
|
* Bugfix
|
19
|
-
*
|
276
|
+
* Prevent loading with rack 3 ([#3166])
|
20
277
|
|
21
278
|
## 5.6.5 / 2022-08-23
|
22
279
|
|
@@ -340,6 +597,16 @@
|
|
340
597
|
* Support parallel tests in verbose progress reporting ([#2223])
|
341
598
|
* Refactor error handling in server accept loop ([#2239])
|
342
599
|
|
600
|
+
## 4.3.12 / 2022-03-30
|
601
|
+
|
602
|
+
* Security
|
603
|
+
* Close several HTTP Request Smuggling exploits (CVE-2022-24790)
|
604
|
+
|
605
|
+
## 4.3.11 / 2022-02-11
|
606
|
+
|
607
|
+
* Security
|
608
|
+
* Always close the response body (GHSA-rmj8-8hhh-gv5h)
|
609
|
+
|
343
610
|
## 4.3.10 / 2021-10-12
|
344
611
|
|
345
612
|
* Bugfixes
|
@@ -1883,16 +2150,203 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1883
2150
|
* Bugfixes
|
1884
2151
|
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
1885
2152
|
|
1886
|
-
[#
|
1887
|
-
[#
|
2153
|
+
[#3570]:https://github.com/puma/puma/pull/3570 "PR by @mohamedhafez, merged 2024-12-30"
|
2154
|
+
[#3567]:https://github.com/puma/puma/issues/3567 "Issue by @mohamedhafez, closed 2024-12-30"
|
2155
|
+
[#3383]:https://github.com/puma/puma/pull/3383 "PR by @joshuay03, merged 2024-11-29"
|
2156
|
+
[#3386]:https://github.com/puma/puma/pull/3386 "PR by @Drakula2k, merged 2024-11-27"
|
2157
|
+
[#3517]:https://github.com/puma/puma/pull/3517 "PR by @jjb, merged 2024-11-26"
|
2158
|
+
[#3375]:https://github.com/puma/puma/pull/3375 "PR by @joshuay03, merged 2024-11-23"
|
2159
|
+
[#3348]:https://github.com/puma/puma/pull/3348 "PR by @tomurb, merged 2024-11-23"
|
2160
|
+
[#3302]:https://github.com/puma/puma/issues/3302 "Issue by @benburkert, closed 2024-11-23"
|
2161
|
+
[#3384]:https://github.com/puma/puma/pull/3384 "PR by @joshuay03, merged 2024-11-23"
|
2162
|
+
[#3590]:https://github.com/puma/puma/pull/3590 "PR by @MSP-Greg, merged 2025-01-01"
|
2163
|
+
[#3552]:https://github.com/puma/puma/issues/3552 "Issue by @utay, closed 2025-01-01"
|
2164
|
+
[#3568]:https://github.com/puma/puma/pull/3568 "PR by @joshuay03, merged 2024-12-11"
|
2165
|
+
[#3505]:https://github.com/puma/puma/pull/3505 "PR by @AnthonyClark, merged 2025-01-27"
|
2166
|
+
[#3595]:https://github.com/puma/puma/pull/3595 "PR by @nateberkopec, merged 2025-01-07"
|
2167
|
+
[#3565]:https://github.com/puma/puma/pull/3565 "PR by @MSP-Greg, merged 2024-11-28"
|
2168
|
+
[#3376]:https://github.com/puma/puma/pull/3376 "PR by @joshuay03, merged 2024-11-23"
|
2169
|
+
[#3407]:https://github.com/puma/puma/pull/3407 "PR by @JacobEvelyn, merged 2024-11-05"
|
2170
|
+
[#3439]:https://github.com/puma/puma/pull/3439 "PR by @codergeek121, merged 2024-11-04"
|
2171
|
+
[#3437]:https://github.com/puma/puma/issues/3437 "Issue by @rafaelfranca, closed 2024-11-04"
|
2172
|
+
[#3486]:https://github.com/puma/puma/pull/3486 "PR by @mohamedhafez, merged 2024-09-26"
|
2173
|
+
[#3422]:https://github.com/puma/puma/issues/3422 "Issue by @mohamedhafez, closed 2024-09-26"
|
2174
|
+
[#3496]:https://github.com/puma/puma/pull/3496 "PR by @slizco, merged 2024-09-26"
|
2175
|
+
[#3485]:https://github.com/puma/puma/pull/3485 "PR by @MSP-Greg, merged 2024-09-21"
|
2176
|
+
[#3359]:https://github.com/puma/puma/pull/3359 "PR by @willayton, merged 2024-04-11"
|
2177
|
+
[#3343]:https://github.com/puma/puma/issues/3343 "Issue by @willayton, closed 2024-04-11"
|
2178
|
+
[#3309]:https://github.com/puma/puma/pull/3309 "PR by @byroot, merged 2024-01-09"
|
2179
|
+
[#3425]:https://github.com/puma/puma/pull/3425 "PR by @mohamedhafez, merged 2024-07-14"
|
2180
|
+
[#3424]:https://github.com/puma/puma/issues/3424 "Issue by @mohamedhafez, closed 2024-07-14"
|
2181
|
+
[#3411]:https://github.com/puma/puma/pull/3411 "PR by @OuYangJinTing, merged 2024-06-15"
|
2182
|
+
[#3380]:https://github.com/puma/puma/pull/3380 "PR by @emilyst, closed 2024-06-15"
|
2183
|
+
[#3539]:https://github.com/puma/puma/pull/3539 "PR by @caius, merged 2024-11-20"
|
2184
|
+
[#3532]:https://github.com/puma/puma/pull/3532 "PR by @MSP-Greg, merged 2024-10-24"
|
2185
|
+
[#3531]:https://github.com/puma/puma/issues/3531 "Issue by @tagliala, closed 2024-10-24"
|
2186
|
+
[#3214]:https://github.com/puma/puma/pull/3214 "PR by @MSP-Greg, merged 2024-10-15"
|
2187
|
+
[#3468]:https://github.com/puma/puma/pull/3468 "PR by @foca, merged 2024-10-04"
|
2188
|
+
[#3508]:https://github.com/puma/puma/pull/3508 "PR by @MayCXC, merged 2024-10-02"
|
2189
|
+
[#3360]:https://github.com/puma/puma/pull/3360 "PR by @ioquatix, merged 2024-04-24"
|
2190
|
+
[#3338]:https://github.com/puma/puma/pull/3338 "PR by @MSP-Greg, merged 2024-04-11"
|
2191
|
+
[#3337]:https://github.com/puma/puma/issues/3337 "Issue by @skliew, closed 2024-04-11"
|
2192
|
+
[#3332]:https://github.com/puma/puma/pull/3332 "PR by @evanphx, merged 2024-02-18"
|
2193
|
+
[#3308]:https://github.com/puma/puma/pull/3308 "PR by @MSP-Greg, merged 2024-01-31"
|
2194
|
+
[#3307]:https://github.com/puma/puma/issues/3307 "Issue by @nateberkopec, closed 2024-01-31"
|
2195
|
+
[#3314]:https://github.com/puma/puma/pull/3314 "PR by @stanhu, merged 2024-01-26"
|
2196
|
+
[#3313]:https://github.com/puma/puma/issues/3313 "Issue by @stanhu, closed 2024-01-26"
|
2197
|
+
[#3518]:https://github.com/puma/puma/pull/3518 "PR by @roque86, merged 2024-11-15"
|
2198
|
+
[#3467]:https://github.com/puma/puma/pull/3467 "PR by @MSP-Greg, merged 2024-09-21"
|
2199
|
+
[#3341]:https://github.com/puma/puma/pull/3341 "PR by @joshuay03, merged 2024-03-11"
|
2200
|
+
[#3548]:https://github.com/puma/puma/pull/3548 "PR by @MSP-Greg, merged 2024-11-21"
|
2201
|
+
[#3325]:https://github.com/puma/puma/pull/3325 "PR by @OuYangJinTing, merged 2024-10-22"
|
2202
|
+
[#3527]:https://github.com/puma/puma/pull/3527 "PR by @MSP-Greg, merged 2024-10-26"
|
2203
|
+
[#3513]:https://github.com/puma/puma/pull/3513 "PR by @jjb, merged 2024-10-11"
|
2204
|
+
[#3510]:https://github.com/puma/puma/pull/3510 "PR by @MSP-Greg, merged 2024-10-03"
|
2205
|
+
[#3370]:https://github.com/puma/puma/pull/3370 "PR by @MSP-Greg, merged 2024-04-15"
|
2206
|
+
[#3340]:https://github.com/puma/puma/pull/3340 "PR by @joshuay03, merged 2024-03-10"
|
2207
|
+
[#3318]:https://github.com/puma/puma/pull/3318 "PR by @joshuay03, merged 2024-01-15"
|
2208
|
+
[#3514]:https://github.com/puma/puma/pull/3514 "PR by @jjb, merged 2024-10-11"
|
2209
|
+
[#3434]:https://github.com/puma/puma/pull/3434 "PR by @olleolleolle, merged 2024-09-19"
|
2210
|
+
[#3435]:https://github.com/puma/puma/pull/3435 "PR by @olleolleolle, merged 2024-09-19"
|
2211
|
+
[#3495]:https://github.com/puma/puma/pull/3495 "PR by @MSP-Greg, merged 2024-09-19"
|
2212
|
+
[#3256]:https://github.com/puma/puma/pull/3256 "PR by @MSP-Greg, merged 2023-10-16"
|
2213
|
+
[#3235]:https://github.com/puma/puma/pull/3235 "PR by @joshuay03, merged 2023-10-03"
|
2214
|
+
[#3228]:https://github.com/puma/puma/issues/3228 "Issue by @davidalejandroaguilar, closed 2023-10-03"
|
2215
|
+
[#3282]:https://github.com/puma/puma/issues/3282 "Issue by @bensheldon, closed 2024-01-02"
|
2216
|
+
[#3283]:https://github.com/puma/puma/pull/3283 "PR by @joshuay03, merged 2024-01-02"
|
2217
|
+
[#3225]:https://github.com/puma/puma/pull/3225 "PR by @joshuay03, merged 2023-09-27"
|
2218
|
+
[#2786]:https://github.com/puma/puma/issues/2786 "Issue by @vitiokss, closed 2023-09-27"
|
2219
|
+
[#3179]:https://github.com/puma/puma/pull/3179 "PR by @MSP-Greg, merged 2023-09-26"
|
2220
|
+
[#3255]:https://github.com/puma/puma/pull/3255 "PR by @casperisfine, merged 2023-10-19"
|
2221
|
+
[#3276]:https://github.com/puma/puma/pull/3276 "PR by @casperisfine, merged 2023-11-16"
|
2222
|
+
[#3271]:https://github.com/puma/puma/pull/3271 "PR by @MSP-Greg, merged 2023-10-30"
|
2223
|
+
[#3266]:https://github.com/puma/puma/issues/3266 "Issue by @Dragonicity, closed 2023-10-30"
|
2224
|
+
[#3270]:https://github.com/puma/puma/pull/3270 "PR by @MSP-Greg, merged 2023-10-30"
|
2225
|
+
[#3265]:https://github.com/puma/puma/pull/3265 "PR by @MSP-Greg, merged 2023-10-25"
|
2226
|
+
[#3264]:https://github.com/puma/puma/issues/3264 "Issue by @dentarg, closed 2023-10-25"
|
2227
|
+
[#3254]:https://github.com/puma/puma/pull/3254 "PR by @casperisfine, merged 2023-10-11"
|
2228
|
+
[#3245]:https://github.com/puma/puma/pull/3245 "PR by @olleolleolle, merged 2023-10-02"
|
2229
|
+
[#3293]:https://github.com/puma/puma/pull/3293 "PR by @MSP-Greg, merged 2023-12-21"
|
2230
|
+
[#3301]:https://github.com/puma/puma/pull/3301 "PR by @benburkert, merged 2023-12-29"
|
2231
|
+
[#3248]:https://github.com/puma/puma/pull/3248 "PR by @dentarg, merged 2023-10-04"
|
2232
|
+
[#3298]:https://github.com/puma/puma/pull/3298 "PR by @til, merged 2023-12-26"
|
2233
|
+
[#2920]:https://github.com/puma/puma/pull/2920 "PR by @biinari, merged 2023-07-11"
|
2234
|
+
[#3195]:https://github.com/puma/puma/pull/3195 "PR by @binarygit, merged 2023-08-15"
|
2235
|
+
[#3209]:https://github.com/puma/puma/pull/3209 "PR by @joshuay03, merged 2023-09-04"
|
2236
|
+
[#2580]:https://github.com/puma/puma/issues/2580 "Issue by @schuetzm, closed 2023-09-04"
|
2237
|
+
[#3204]:https://github.com/puma/puma/pull/3204 "PR by @dhavalsingh, merged 2023-08-25"
|
2238
|
+
[#3191]:https://github.com/puma/puma/pull/3191 "PR by @MSP-Greg, merged 2023-08-31"
|
2239
|
+
[#3165]:https://github.com/puma/puma/pull/3165 "PR by @fallwith, merged 2023-06-06"
|
2240
|
+
[#3174]:https://github.com/puma/puma/pull/3174 "PR by @copiousfreetime, merged 2023-06-11"
|
2241
|
+
[#3181]:https://github.com/puma/puma/pull/3181 "PR by @MSP-Greg, merged 2023-06-23"
|
2242
|
+
[#3187]:https://github.com/puma/puma/pull/3187 "PR by @MSP-Greg, merged 2023-06-30"
|
2243
|
+
[#3094]:https://github.com/puma/puma/pull/3094 "PR by @Vuta, merged 2023-07-23"
|
2244
|
+
[#3106]:https://github.com/puma/puma/pull/3106 "PR by @MSP-Greg, merged 2023-05-29"
|
2245
|
+
[#3014]:https://github.com/puma/puma/issues/3014 "Issue by @kyledrake, closed 2023-05-29"
|
2246
|
+
[#3161]:https://github.com/puma/puma/pull/3161 "PR by @MSP-Greg, merged 2023-05-27"
|
2247
|
+
[#3037]:https://github.com/puma/puma/issues/3037 "Issue by @daisy1754, closed 2023-05-27"
|
2248
|
+
[#3133]:https://github.com/puma/puma/pull/3133 "PR by @stanhu, merged 2023-04-30"
|
2249
|
+
[#3132]:https://github.com/puma/puma/issues/3132 "Issue by @stanhu, closed 2023-04-30"
|
2250
|
+
[#3163]:https://github.com/puma/puma/pull/3163 "PR by @MSP-Greg, merged 2023-05-27"
|
2251
|
+
[#3155]:https://github.com/puma/puma/pull/3155 "PR by @dentarg, merged 2023-05-14"
|
2252
|
+
[#3148]:https://github.com/puma/puma/issues/3148 "Issue by @dentarg, closed 2023-05-14"
|
2253
|
+
[#3129]:https://github.com/puma/puma/pull/3129 "PR by @MSP-Greg, merged 2023-05-02"
|
2254
|
+
[#3137]:https://github.com/puma/puma/pull/3137 "PR by @MSP-Greg, merged 2023-04-30"
|
2255
|
+
[#3156]:https://github.com/puma/puma/pull/3156 "PR by @severin, merged 2023-05-16"
|
2256
|
+
[#3162]:https://github.com/puma/puma/pull/3162 "PR by @MSP-Greg, merged 2023-05-23"
|
2257
|
+
[#3151]:https://github.com/puma/puma/pull/3151 "PR by @nateberkopec, merged 2023-05-12"
|
2258
|
+
[#3118]:https://github.com/puma/puma/pull/3118 "PR by @ninoseki, merged 2023-04-01"
|
2259
|
+
[#3117]:https://github.com/puma/puma/issues/3117 "Issue by @ninoseki, closed 2023-04-01"
|
2260
|
+
[#3109]:https://github.com/puma/puma/pull/3109 "PR by @ahorek, merged 2023-03-31"
|
2261
|
+
[#3108]:https://github.com/puma/puma/issues/3108 "Issue by @treviateo, closed 2023-03-31"
|
2262
|
+
[#3113]:https://github.com/puma/puma/pull/3113 "PR by @collinsauve, merged 2023-03-31"
|
2263
|
+
[#3112]:https://github.com/puma/puma/issues/3112 "Issue by @dmke, closed 2023-03-31"
|
2264
|
+
[#3111]:https://github.com/puma/puma/pull/3111 "PR by @adzap, merged 2023-03-30"
|
2265
|
+
[#2770]:https://github.com/puma/puma/pull/2770 "PR by @vzajkov, merged 2023-03-29"
|
2266
|
+
[#2511]:https://github.com/puma/puma/issues/2511 "Issue by @jchristie55332, closed 2021-12-12"
|
2267
|
+
[#3089]:https://github.com/puma/puma/pull/3089 "PR by @Vuta, merged 2023-03-06"
|
2268
|
+
[#2709]:https://github.com/puma/puma/pull/2709 "PR by @rodzyn, merged 2023-02-20"
|
2269
|
+
[#3091]:https://github.com/puma/puma/pull/3091 "PR by @MSP-Greg, merged 2023-03-28"
|
2270
|
+
[#3074]:https://github.com/puma/puma/pull/3074 "PR by @MSP-Greg, merged 2023-03-14"
|
2271
|
+
[#3072]:https://github.com/puma/puma/pull/3072 "PR by @MSP-Greg, merged 2023-02-17"
|
2272
|
+
[#3079]:https://github.com/puma/puma/pull/3079 "PR by @mohamedhafez, merged 2023-02-24"
|
2273
|
+
[#3080]:https://github.com/puma/puma/pull/3080 "PR by @MSP-Greg, merged 2023-02-16"
|
2274
|
+
[#3058]:https://github.com/puma/puma/pull/3058 "PR by @dentarg, merged 2023-01-29"
|
2275
|
+
[#3007]:https://github.com/puma/puma/issues/3007 "Issue by @MSP-Greg, closed 2023-01-29"
|
2276
|
+
[#3011]:https://github.com/puma/puma/pull/3011 "PR by @joaomarcos96, merged 2023-01-03"
|
2277
|
+
[#3006]:https://github.com/puma/puma/pull/3006 "PR by @QWYNG, merged 2023-02-09"
|
2278
|
+
[#2604]:https://github.com/puma/puma/issues/2604 "Issue by @dgoetz, closed 2023-02-09"
|
2279
|
+
[#3040]:https://github.com/puma/puma/pull/3040 "PR by @shayonj, merged 2023-01-02"
|
2280
|
+
[#3036]:https://github.com/puma/puma/pull/3036 "PR by @MSP-Greg, merged 2023-01-13"
|
2281
|
+
[#3020]:https://github.com/puma/puma/issues/3020 "Issue by @dentarg, closed 2023-01-13"
|
2282
|
+
[#3061]:https://github.com/puma/puma/pull/3061 "PR by @MSP-Greg, merged 2023-02-12"
|
2283
|
+
[#3057]:https://github.com/puma/puma/issues/3057 "Issue by @mmarvb8h, closed 2023-02-12"
|
2284
|
+
[#3065]:https://github.com/puma/puma/pull/3065 "PR by @MSP-Greg, merged 2023-02-11"
|
2285
|
+
[#3062]:https://github.com/puma/puma/pull/3062 "PR by @willkoehler, merged 2023-01-29"
|
2286
|
+
[#3035]:https://github.com/puma/puma/pull/3035 "PR by @MSP-Greg, merged 2022-12-24"
|
2287
|
+
[#3033]:https://github.com/puma/puma/issues/3033 "Issue by @jules-w2, closed 2022-12-24"
|
2288
|
+
[#3016]:https://github.com/puma/puma/pull/3016 "PR by @MSP-Greg, merged 2022-12-24"
|
2289
|
+
[#3005]:https://github.com/puma/puma/pull/3005 "PR by @JuanitoFatas, merged 2022-11-04"
|
2290
|
+
[#3004]:https://github.com/puma/puma/pull/3004 "PR by @MSP-Greg, merged 2022-11-24"
|
2291
|
+
[#3000]:https://github.com/puma/puma/issues/3000 "Issue by @dentarg, closed 2022-11-24"
|
2292
|
+
[#3002]:https://github.com/puma/puma/pull/3002 "PR by @MSP-Greg, merged 2022-11-03"
|
2293
|
+
[#2999]:https://github.com/puma/puma/issues/2999 "Issue by @aymeric-ledorze, closed 2022-11-03"
|
2294
|
+
[#3013]:https://github.com/puma/puma/pull/3013 "PR by @MSP-Greg, merged 2022-11-13"
|
2295
|
+
[#2919]:https://github.com/puma/puma/pull/2919 "PR by @MSP-Greg, merged 2022-08-30"
|
2296
|
+
[#2652]:https://github.com/puma/puma/issues/2652 "Issue by @Roguelazer, closed 2022-09-04"
|
2297
|
+
[#2653]:https://github.com/puma/puma/pull/2653 "PR by @Roguelazer, closed 2022-03-07"
|
2298
|
+
[#2849]:https://github.com/puma/puma/pull/2849 "PR by @kares, merged 2022-04-09"
|
2299
|
+
[#2933]:https://github.com/puma/puma/pull/2933 "PR by @cafedomancer, merged 2022-09-09"
|
2300
|
+
[#2925]:https://github.com/puma/puma/issues/2925 "Issue by @nateberkopec, closed 2022-09-09"
|
2301
|
+
[#2940]:https://github.com/puma/puma/pull/2940 "PR by @cafedomancer, merged 2022-09-10"
|
2302
|
+
[#2924]:https://github.com/puma/puma/pull/2924 "PR by @cafedomancer, merged 2022-09-07"
|
2303
|
+
[#2853]:https://github.com/puma/puma/issues/2853 "Issue by @nateberkopec, closed 2022-09-07"
|
2304
|
+
[#2957]:https://github.com/puma/puma/pull/2957 "PR by @JuanitoFatas, merged 2022-09-16"
|
2305
|
+
[#2958]:https://github.com/puma/puma/pull/2958 "PR by @JuanitoFatas, merged 2022-09-16"
|
2306
|
+
[#2959]:https://github.com/puma/puma/pull/2959 "PR by @JuanitoFatas, merged 2022-09-16"
|
2307
|
+
[#2960]:https://github.com/puma/puma/pull/2960 "PR by @JuanitoFatas, merged 2022-09-16"
|
2308
|
+
[#2988]:https://github.com/puma/puma/pull/2988 "PR by @MSP-Greg, merged 2022-10-12"
|
2309
|
+
[#2928]:https://github.com/puma/puma/pull/2928 "PR by @nateberkopec, merged 2022-09-10"
|
2310
|
+
[#2798]:https://github.com/puma/puma/pull/2798 "PR by @johnnyshields, merged 2022-02-05"
|
2311
|
+
[#2932]:https://github.com/puma/puma/pull/2932 "PR by @mrzasa, merged 2022-09-12"
|
2312
|
+
[#2896]:https://github.com/puma/puma/pull/2896 "PR by @MSP-Greg, merged 2022-09-13"
|
2313
|
+
[#2892]:https://github.com/puma/puma/pull/2892 "PR by @guilleiguaran, closed 2022-09-13"
|
2314
|
+
[#2923]:https://github.com/puma/puma/pull/2923 "PR by @nateberkopec, merged 2022-09-09"
|
2315
|
+
[#2740]:https://github.com/puma/puma/pull/2740 "PR by @ioquatix, merged 2022-01-29"
|
2316
|
+
[#2845]:https://github.com/puma/puma/issues/2845 "Issue by @donv, closed 2022-03-22"
|
2317
|
+
[#2917]:https://github.com/puma/puma/pull/2917 "PR by @MSP-Greg, merged 2022-09-19"
|
2318
|
+
[#2915]:https://github.com/puma/puma/issues/2915 "Issue by @mperham, closed 2022-09-19"
|
2319
|
+
[#2907]:https://github.com/puma/puma/pull/2907 "PR by @casperisfine, merged 2022-09-15"
|
2320
|
+
[#2953]:https://github.com/puma/puma/pull/2953 "PR by @JuanitoFatas, merged 2022-09-14"
|
2321
|
+
[#2936]:https://github.com/puma/puma/pull/2936 "PR by @MSP-Greg, merged 2022-09-09"
|
2322
|
+
[#2931]:https://github.com/puma/puma/issues/2931 "Issue by @dentarg, closed 2022-09-09"
|
2323
|
+
[#2875]:https://github.com/puma/puma/pull/2875 "PR by @ylecuyer, merged 2022-05-19"
|
2324
|
+
[#2840]:https://github.com/puma/puma/pull/2840 "PR by @LukaszMaslej, merged 2022-04-13"
|
2325
|
+
[#2774]:https://github.com/puma/puma/pull/2774 "PR by @ob-stripe, merged 2022-01-31"
|
2326
|
+
[#2891]:https://github.com/puma/puma/pull/2891 "PR by @gingerlime, merged 2022-06-02"
|
2327
|
+
[#2886]:https://github.com/puma/puma/pull/2886 "PR by @kares, merged 2022-05-30"
|
2328
|
+
[#2899]:https://github.com/puma/puma/pull/2899 "PR by @kares, merged 2022-07-04"
|
2329
|
+
[#2904]:https://github.com/puma/puma/pull/2904 "PR by @kares, merged 2022-08-27"
|
2330
|
+
[#2884]:https://github.com/puma/puma/pull/2884 "PR by @kares, merged 2022-05-30"
|
2331
|
+
[#2897]:https://github.com/puma/puma/pull/2897 "PR by @Edouard-chin, merged 2022-08-27"
|
2332
|
+
[#1441]:https://github.com/puma/puma/issues/1441 "Issue by @nirvdrum, closed 2022-09-12"
|
2333
|
+
[#2956]:https://github.com/puma/puma/pull/2956 "PR by @MSP-Greg, merged 2022-09-15"
|
2334
|
+
[#2888]:https://github.com/puma/puma/pull/2888 "PR by @MSP-Greg, merged 2022-06-01"
|
2335
|
+
[#2797]:https://github.com/puma/puma/pull/2797 "PR by @johnnyshields, merged 2022-02-01"
|
2336
|
+
[#2795]:https://github.com/puma/puma/pull/2795 "PR by @johnnyshields, merged 2022-01-31"
|
2337
|
+
[#2903]:https://github.com/puma/puma/pull/2903 "PR by @MSP-Greg, merged 2022-08-27"
|
2338
|
+
[#2942]:https://github.com/puma/puma/pull/2942 "PR by @nateberkopec, merged 2022-09-15"
|
2339
|
+
[#2921]:https://github.com/puma/puma/issues/2921 "Issue by @MSP-Greg, closed 2022-09-15"
|
2340
|
+
[#2922]:https://github.com/puma/puma/issues/2922 "Issue by @MSP-Greg, closed 2022-09-10"
|
2341
|
+
[#2955]:https://github.com/puma/puma/pull/2955 "PR by @cafedomancer, merged 2022-09-15"
|
2342
|
+
[#3166]:https://github.com/puma/puma/pull/3166 "PR by @JoeDupuis, merged 2023-06-08"
|
1888
2343
|
[#2868]:https://github.com/puma/puma/pull/2868 "PR by @MSP-Greg, merged 2022-06-02"
|
1889
2344
|
[#2866]:https://github.com/puma/puma/issues/2866 "Issue by @slondr, closed 2022-06-02"
|
1890
|
-
[#
|
2345
|
+
[#2883]:https://github.com/puma/puma/pull/2883 "PR by @MSP-Greg, merged 2022-06-02"
|
1891
2346
|
[#2890]:https://github.com/puma/puma/pull/2890 "PR by @kares, merged 2022-06-01"
|
1892
2347
|
[#2729]:https://github.com/puma/puma/issues/2729 "Issue by @kares, closed 2022-06-01"
|
1893
2348
|
[#2885]:https://github.com/puma/puma/pull/2885 "PR by @MSP-Greg, merged 2022-05-30"
|
1894
2349
|
[#2839]:https://github.com/puma/puma/issues/2839 "Issue by @wlipa, closed 2022-05-30"
|
1895
|
-
[#2882]:https://github.com/puma/puma/pull/2882 "PR by @MSP-Greg, merged 2022-05-19"
|
1896
2350
|
[#2864]:https://github.com/puma/puma/pull/2864 "PR by @MSP-Greg, merged 2022-04-26"
|
1897
2351
|
[#2863]:https://github.com/puma/puma/issues/2863 "Issue by @eradman, closed 2022-04-26"
|
1898
2352
|
[#2861]:https://github.com/puma/puma/pull/2861 "PR by @BlakeWilliams, merged 2022-04-17"
|
@@ -1903,13 +2357,6 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1903
2357
|
[#2838]:https://github.com/puma/puma/pull/2838 "PR by @epsilon-0, merged 2022-03-03"
|
1904
2358
|
[#2817]:https://github.com/puma/puma/pull/2817 "PR by @khustochka, merged 2022-02-20"
|
1905
2359
|
[#2810]:https://github.com/puma/puma/pull/2810 "PR by @kzkn, merged 2022-01-27"
|
1906
|
-
[#2899]:https://github.com/puma/puma/pull/2899 "PR by @kares, merged 2022-07-04"
|
1907
|
-
[#2891]:https://github.com/puma/puma/pull/2891 "PR by @gingerlime, merged 2022-06-02"
|
1908
|
-
[#2886]:https://github.com/puma/puma/pull/2886 "PR by @kares, merged 2022-05-30"
|
1909
|
-
[#2884]:https://github.com/puma/puma/pull/2884 "PR by @kares, merged 2022-05-30"
|
1910
|
-
[#2875]:https://github.com/puma/puma/pull/2875 "PR by @ylecuyer, merged 2022-05-19"
|
1911
|
-
[#2840]:https://github.com/puma/puma/pull/2840 "PR by @LukaszMaslej, merged 2022-04-13"
|
1912
|
-
[#2849]:https://github.com/puma/puma/pull/2849 "PR by @kares, merged 2022-04-09"
|
1913
2360
|
[#2809]:https://github.com/puma/puma/pull/2809 "PR by @dentarg, merged 2022-01-26"
|
1914
2361
|
[#2764]:https://github.com/puma/puma/pull/2764 "PR by @dentarg, merged 2022-01-18"
|
1915
2362
|
[#2708]:https://github.com/puma/puma/issues/2708 "Issue by @erikaxel, closed 2022-01-18"
|
@@ -1919,7 +2366,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1919
2366
|
[#2794]:https://github.com/puma/puma/pull/2794 "PR by @johnnyshields, merged 2022-01-10"
|
1920
2367
|
[#2759]:https://github.com/puma/puma/pull/2759 "PR by @ob-stripe, merged 2021-12-11"
|
1921
2368
|
[#2731]:https://github.com/puma/puma/pull/2731 "PR by @baelter, merged 2021-11-02"
|
1922
|
-
[#2341]:https://github.com/puma/puma/issues/2341 "Issue by @cjlarose, closed
|
2369
|
+
[#2341]:https://github.com/puma/puma/issues/2341 "Issue by @cjlarose, closed 2023-07-23"
|
1923
2370
|
[#2728]:https://github.com/puma/puma/pull/2728 "PR by @dalibor, merged 2021-10-31"
|
1924
2371
|
[#2733]:https://github.com/puma/puma/pull/2733 "PR by @ob-stripe, merged 2021-12-12"
|
1925
2372
|
[#2807]:https://github.com/puma/puma/pull/2807 "PR by @MSP-Greg, merged 2022-01-25"
|
@@ -1967,7 +2414,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1967
2414
|
[#2563]:https://github.com/puma/puma/pull/2563 "PR by @MSP-Greg, merged 2021-03-06"
|
1968
2415
|
[#2504]:https://github.com/puma/puma/issues/2504 "Issue by @fsateler, closed 2021-03-06"
|
1969
2416
|
[#2591]:https://github.com/puma/puma/pull/2591 "PR by @MSP-Greg, merged 2021-05-05"
|
1970
|
-
[#2572]:https://github.com/puma/puma/issues/2572 "Issue by @
|
2417
|
+
[#2572]:https://github.com/puma/puma/issues/2572 "Issue by @josef-krabath, closed 2021-05-05"
|
1971
2418
|
[#2613]:https://github.com/puma/puma/pull/2613 "PR by @smcgivern, merged 2021-04-27"
|
1972
2419
|
[#2605]:https://github.com/puma/puma/pull/2605 "PR by @pascalbetz, merged 2021-04-26"
|
1973
2420
|
[#2584]:https://github.com/puma/puma/issues/2584 "Issue by @kaorihinata, closed 2021-04-26"
|
@@ -2283,7 +2730,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
2283
2730
|
[#1110]:https://github.com/puma/puma/pull/1110 "PR by @montdidier, merged 2016-12-12"
|
2284
2731
|
[#1135]:https://github.com/puma/puma/pull/1135 "PR by @jkraemer, merged 2016-11-19"
|
2285
2732
|
[#1081]:https://github.com/puma/puma/pull/1081 "PR by @frodsan, merged 2016-09-08"
|
2286
|
-
[#1138]:https://github.com/puma/puma/pull/1138 "PR by @
|
2733
|
+
[#1138]:https://github.com/puma/puma/pull/1138 "PR by @skull-squadron, merged 2016-12-13"
|
2287
2734
|
[#1118]:https://github.com/puma/puma/pull/1118 "PR by @hiroara, merged 2016-11-20"
|
2288
2735
|
[#1075]:https://github.com/puma/puma/issues/1075 "Issue by @pvalena, closed 2016-09-06"
|
2289
2736
|
[#932]:https://github.com/puma/puma/issues/932 "Issue by @everplays, closed 2016-07-24"
|
@@ -2303,14 +2750,14 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
2303
2750
|
[#782]:https://github.com/puma/puma/issues/782 "Issue by @Tonkpils, closed 2016-07-19"
|
2304
2751
|
[#1010]:https://github.com/puma/puma/issues/1010 "Issue by @mneumark, closed 2016-07-19"
|
2305
2752
|
[#959]:https://github.com/puma/puma/issues/959 "Issue by @mwpastore, closed 2016-04-22"
|
2306
|
-
[#840]:https://github.com/puma/puma/issues/840 "Issue by @
|
2753
|
+
[#840]:https://github.com/puma/puma/issues/840 "Issue by @marisawallace, closed 2016-04-07"
|
2307
2754
|
[#1007]:https://github.com/puma/puma/pull/1007 "PR by @willnet, merged 2016-06-24"
|
2308
2755
|
[#1014]:https://github.com/puma/puma/pull/1014 "PR by @szymon-jez, merged 2016-07-11"
|
2309
2756
|
[#1015]:https://github.com/puma/puma/pull/1015 "PR by @bf4, merged 2016-07-19"
|
2310
2757
|
[#1017]:https://github.com/puma/puma/pull/1017 "PR by @jorihardman, merged 2016-07-19"
|
2311
2758
|
[#954]:https://github.com/puma/puma/pull/954 "PR by @jf, merged 2016-04-12"
|
2312
2759
|
[#955]:https://github.com/puma/puma/pull/955 "PR by @jf, merged 2016-04-22"
|
2313
|
-
[#956]:https://github.com/puma/puma/pull/956 "PR by @
|
2760
|
+
[#956]:https://github.com/puma/puma/pull/956 "PR by @marisawallace, merged 2016-04-12"
|
2314
2761
|
[#960]:https://github.com/puma/puma/pull/960 "PR by @kmayer, merged 2016-04-15"
|
2315
2762
|
[#969]:https://github.com/puma/puma/pull/969 "PR by @frankwong15, merged 2016-05-10"
|
2316
2763
|
[#970]:https://github.com/puma/puma/pull/970 "PR by @willnet, merged 2016-04-26"
|
@@ -2371,7 +2818,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
2371
2818
|
[#845]:https://github.com/puma/puma/pull/845 "PR by @deepj, merged 2016-01-28"
|
2372
2819
|
[#846]:https://github.com/puma/puma/pull/846 "PR by @sriedel, merged 2016-01-15"
|
2373
2820
|
[#850]:https://github.com/puma/puma/pull/850 "PR by @deepj, merged 2016-01-15"
|
2374
|
-
[#853]:https://github.com/puma/puma/pull/853 "PR by @
|
2821
|
+
[#853]:https://github.com/puma/puma/pull/853 "PR by @xuqiyong666, merged 2016-01-28"
|
2375
2822
|
[#857]:https://github.com/puma/puma/pull/857 "PR by @osheroff, merged 2016-01-15"
|
2376
2823
|
[#858]:https://github.com/puma/puma/pull/858 "PR by @mlarraz, merged 2016-01-28"
|
2377
2824
|
[#860]:https://github.com/puma/puma/pull/860 "PR by @osheroff, merged 2016-01-15"
|