rack 2.2.9 → 3.0.8
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.
Potentially problematic release.
This version of rack might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +201 -93
- data/CONTRIBUTING.md +53 -47
- data/MIT-LICENSE +1 -1
- data/README.md +309 -0
- data/SPEC.rdoc +174 -126
- data/lib/rack/auth/abstract/handler.rb +3 -1
- data/lib/rack/auth/abstract/request.rb +3 -1
- data/lib/rack/auth/basic.rb +0 -2
- data/lib/rack/auth/digest/md5.rb +1 -131
- data/lib/rack/auth/digest/nonce.rb +1 -54
- data/lib/rack/auth/digest/params.rb +1 -54
- data/lib/rack/auth/digest/request.rb +1 -43
- data/lib/rack/auth/digest.rb +256 -0
- data/lib/rack/body_proxy.rb +3 -1
- data/lib/rack/builder.rb +83 -63
- data/lib/rack/cascade.rb +2 -0
- data/lib/rack/chunked.rb +16 -13
- data/lib/rack/common_logger.rb +23 -18
- data/lib/rack/conditional_get.rb +18 -15
- data/lib/rack/constants.rb +64 -0
- data/lib/rack/content_length.rb +12 -16
- data/lib/rack/content_type.rb +8 -5
- data/lib/rack/deflater.rb +40 -26
- data/lib/rack/directory.rb +9 -3
- data/lib/rack/etag.rb +14 -23
- data/lib/rack/events.rb +4 -0
- data/lib/rack/file.rb +2 -0
- data/lib/rack/files.rb +15 -17
- data/lib/rack/head.rb +9 -8
- data/lib/rack/headers.rb +154 -0
- data/lib/rack/lint.rb +758 -646
- data/lib/rack/lock.rb +2 -5
- data/lib/rack/logger.rb +2 -0
- data/lib/rack/media_type.rb +4 -9
- data/lib/rack/method_override.rb +5 -1
- data/lib/rack/mime.rb +8 -0
- data/lib/rack/mock.rb +1 -271
- data/lib/rack/mock_request.rb +166 -0
- data/lib/rack/mock_response.rb +126 -0
- data/lib/rack/multipart/generator.rb +7 -5
- data/lib/rack/multipart/parser.rb +120 -70
- data/lib/rack/multipart/uploaded_file.rb +4 -0
- data/lib/rack/multipart.rb +20 -40
- data/lib/rack/null_logger.rb +9 -0
- data/lib/rack/query_parser.rb +78 -46
- data/lib/rack/recursive.rb +2 -0
- data/lib/rack/reloader.rb +0 -2
- data/lib/rack/request.rb +224 -106
- data/lib/rack/response.rb +136 -61
- data/lib/rack/rewindable_input.rb +24 -5
- data/lib/rack/runtime.rb +7 -6
- data/lib/rack/sendfile.rb +30 -25
- data/lib/rack/show_exceptions.rb +15 -2
- data/lib/rack/show_status.rb +17 -7
- data/lib/rack/static.rb +8 -8
- data/lib/rack/tempfile_reaper.rb +15 -4
- data/lib/rack/urlmap.rb +3 -1
- data/lib/rack/utils.rb +204 -181
- data/lib/rack/version.rb +9 -4
- data/lib/rack.rb +6 -76
- metadata +15 -35
- data/README.rdoc +0 -320
- data/Rakefile +0 -130
- data/bin/rackup +0 -5
- data/contrib/rack.png +0 -0
- data/contrib/rack.svg +0 -150
- data/contrib/rack_logo.svg +0 -164
- data/contrib/rdoc.css +0 -412
- data/example/lobster.ru +0 -6
- data/example/protectedlobster.rb +0 -16
- data/example/protectedlobster.ru +0 -10
- data/lib/rack/core_ext/regexp.rb +0 -14
- data/lib/rack/handler/cgi.rb +0 -59
- data/lib/rack/handler/fastcgi.rb +0 -100
- data/lib/rack/handler/lsws.rb +0 -61
- data/lib/rack/handler/scgi.rb +0 -71
- data/lib/rack/handler/thin.rb +0 -36
- data/lib/rack/handler/webrick.rb +0 -129
- data/lib/rack/handler.rb +0 -104
- data/lib/rack/lobster.rb +0 -70
- data/lib/rack/server.rb +0 -466
- data/lib/rack/session/abstract/id.rb +0 -523
- data/lib/rack/session/cookie.rb +0 -204
- data/lib/rack/session/memcache.rb +0 -10
- data/lib/rack/session/pool.rb +0 -85
- data/rack.gemspec +0 -46
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e05c24e17dac3f2da82b5e26090a5bcc2dffec8955792b9df92bdc21bd4fdad2
|
|
4
|
+
data.tar.gz: 7af9d2217e9e092af82c3d6582f9b377a71e370279ecf8ee722ff142e79b9031
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7280fd5a123ca1760f3b1d3c2ff1742bc7686fc5e8d3254d8a7cd8897fadf8f73f2887778a1b9a9cba05093ed98a9326528db5bebbe85f4961274f5ca4aab52c
|
|
7
|
+
data.tar.gz: 4f2bc0fe42ddcc8dbe92d8620ab0b1a40eb8215d668db085ef9fd4f30660c492e51da14a7a6d568c16674b3e1854f75e0dbd51258c9f3432f4ac6c8f4a43f14c
|
data/CHANGELOG.md
CHANGED
|
@@ -2,50 +2,148 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference [Keep A Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## [3.0.7] - 2023-03-16
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- Make query parameters without `=` have `nil` values. ([#2059](https://github.com/rack/rack/pull/2059), [@jeremyevans])
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## [3.0.6.1] - 2023-03-13
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
- Regenerate SPEC ([#2102](https://github.com/rack/rack/pull/2102), [@skipkayhil](https://github.com/skipkayhil))
|
|
14
|
-
- Limit file extension length of multipart tempfiles ([#2015](https://github.com/rack/rack/pull/2015), [@dentarg](https://github.com/dentarg))
|
|
15
|
-
- Fix "undefined method DelegateClass for Rack::Session::Cookie:Class" ([#2092](https://github.com/rack/rack/pull/2092), [@onigra](https://github.com/onigra) [@dchandekstark](https://github.com/dchandekstark))
|
|
11
|
+
- [CVE-2023-27539] Avoid ReDoS in header parsing
|
|
16
12
|
|
|
17
|
-
## [
|
|
13
|
+
## [3.0.6] - 2023-03-13
|
|
18
14
|
|
|
19
|
-
-
|
|
20
|
-
- Support underscore in host names for Rack 2.2 (Fixes [#2070](https://github.com/rack/rack/issues/2070)) ([#2015](https://github.com/rack/rack/pull/2071), [@jeremyevans](https://github.com/jeremyevans))
|
|
15
|
+
- Add `QueryParser#missing_value` for handling missing values + tests. ([#2052](https://github.com/rack/rack/pull/2052), [@ioquatix])
|
|
21
16
|
|
|
22
|
-
## [
|
|
17
|
+
## [3.0.5] - 2023-03-13
|
|
23
18
|
|
|
24
|
-
-
|
|
19
|
+
- Split form/query parsing into two steps. ([#2038](https://github.com/rack/rack/pull/2038), [@matthewd](https://github.com/matthewd))
|
|
25
20
|
|
|
26
|
-
## [
|
|
21
|
+
## [3.0.4.1] - 2023-03-02
|
|
27
22
|
|
|
28
23
|
- [CVE-2023-27530] Introduce multipart_total_part_limit to limit total parts
|
|
29
24
|
|
|
30
|
-
## [
|
|
31
|
-
|
|
32
|
-
- [CVE-2022-44570] Fix ReDoS in Rack::Utils.get_byte_ranges
|
|
33
|
-
|
|
34
|
-
## [2.2.6.1] - 2023-01-17
|
|
25
|
+
## [3.0.4.1] - 2023-01-17
|
|
35
26
|
|
|
36
27
|
- [CVE-2022-44571] Fix ReDoS vulnerability in multipart parser
|
|
28
|
+
- [CVE-2022-44570] Fix ReDoS in Rack::Utils.get_byte_ranges
|
|
37
29
|
- [CVE-2022-44572] Forbid control characters in attributes (also ReDoS)
|
|
38
30
|
|
|
39
|
-
## [
|
|
31
|
+
## [3.0.4] - 2023-01-17
|
|
40
32
|
|
|
41
|
-
-
|
|
33
|
+
- `Rack::Request#POST` should consistently raise errors. Cache errors that occur when invoking `Rack::Request#POST` so they can be raised again later. ([#2010](https://github.com/rack/rack/pull/2010), [@ioquatix])
|
|
34
|
+
- Fix `Rack::Lint` error message for `HTTP_CONTENT_TYPE` and `HTTP_CONTENT_LENGTH`. ([#2007](https://github.com/rack/rack/pull/2007), [@byroot](https://github.com/byroot))
|
|
35
|
+
- Extend `Rack::MethodOverride` to handle `QueryParser::ParamsTooDeepError` error. ([#2006](https://github.com/rack/rack/pull/2006), [@byroot](https://github.com/byroot))
|
|
42
36
|
|
|
43
|
-
## [
|
|
37
|
+
## [3.0.3] - 2022-12-27
|
|
44
38
|
|
|
45
39
|
### Fixed
|
|
46
40
|
|
|
47
41
|
- `Rack::URLMap` uses non-deprecated form of `Regexp.new`. ([#1998](https://github.com/rack/rack/pull/1998), [@weizheheng](https://github.com/weizheheng))
|
|
48
42
|
|
|
43
|
+
## [3.0.2] - 2022-12-05
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- `Utils.build_nested_query` URL-encodes nested field names including the square brackets.
|
|
48
|
+
- Allow `Rack::Response` to pass through streaming bodies. ([#1993](https://github.com/rack/rack/pull/1993), [@ioquatix])
|
|
49
|
+
|
|
50
|
+
## [3.0.1] - 2022-11-18
|
|
51
|
+
|
|
52
|
+
### Fixed
|
|
53
|
+
|
|
54
|
+
- `MethodOverride` does not look for an override if a request does not include form/parseable data.
|
|
55
|
+
- `Rack::Lint::Wrapper` correctly handles `respond_to?` with `to_ary`, `each`, `call` and `to_path`, forwarding to the body. ([#1981](https://github.com/rack/rack/pull/1981), [@ioquatix])
|
|
56
|
+
|
|
57
|
+
## [3.0.0] - 2022-09-06
|
|
58
|
+
|
|
59
|
+
- No changes
|
|
60
|
+
|
|
61
|
+
## [3.0.0.rc1] - 2022-09-04
|
|
62
|
+
|
|
63
|
+
### SPEC Changes
|
|
64
|
+
|
|
65
|
+
- Stream argument must implement `<<` https://github.com/rack/rack/pull/1959
|
|
66
|
+
- `close` may be called on `rack.input` https://github.com/rack/rack/pull/1956
|
|
67
|
+
- `rack.response_finished` may be used for executing code after the response has been finished https://github.com/rack/rack/pull/1952
|
|
68
|
+
|
|
69
|
+
## [3.0.0.beta1] - 2022-08-08
|
|
70
|
+
|
|
71
|
+
### Security
|
|
72
|
+
|
|
73
|
+
- Do not use semicolon as GET parameter separator. ([#1733](https://github.com/rack/rack/pull/1733), [@jeremyevans])
|
|
74
|
+
|
|
75
|
+
### SPEC Changes
|
|
76
|
+
|
|
77
|
+
- Response array must now be non-frozen.
|
|
78
|
+
- Response `status` must now be an integer greater than or equal to 100.
|
|
79
|
+
- Response `headers` must now be an unfrozen hash.
|
|
80
|
+
- Response header keys can no longer include uppercase characters.
|
|
81
|
+
- Response header values can be an `Array` to handle multiple values (and no longer supports `\n` encoded headers).
|
|
82
|
+
- Response body can now respond to `#call` (streaming body) instead of `#each` (enumerable body), for the equivalent of response hijacking in previous versions.
|
|
83
|
+
- Middleware must no longer call `#each` on the body, but they can call `#to_ary` on the body if it responds to `#to_ary`.
|
|
84
|
+
- `rack.input` is no longer required to be rewindable.
|
|
85
|
+
- `rack.multithread`/`rack.multiprocess`/`rack.run_once`/`rack.version` are no longer required environment keys.
|
|
86
|
+
- `SERVER_PROTOCOL` is now a required environment key, matching the HTTP protocol used in the request.
|
|
87
|
+
- `rack.hijack?` (partial hijack) and `rack.hijack` (full hijack) are now independently optional.
|
|
88
|
+
- `rack.hijack_io` has been removed completely.
|
|
89
|
+
- `rack.response_finished` is an optional environment key which contains an array of callable objects that must accept `#call(env, status, headers, error)` and are invoked after the response is finished (either successfully or unsuccessfully).
|
|
90
|
+
- It is okay to call `#close` on `rack.input` to indicate that you no longer need or care about the input.
|
|
91
|
+
- The stream argument supplied to the streaming body and hijack must support `#<<` for writing output.
|
|
92
|
+
|
|
93
|
+
### Removed
|
|
94
|
+
|
|
95
|
+
- Remove `rack.multithread`/`rack.multiprocess`/`rack.run_once`. These variables generally come too late to be useful. ([#1720](https://github.com/rack/rack/pull/1720), [@ioquatix], [@jeremyevans]))
|
|
96
|
+
- Remove deprecated Rack::Request::SCHEME_WHITELIST. ([@jeremyevans])
|
|
97
|
+
- Remove internal cookie deletion using pattern matching, there are very few practical cases where it would be useful and browsers handle it correctly without us doing anything special. ([#1844](https://github.com/rack/rack/pull/1844), [@ioquatix])
|
|
98
|
+
- Remove `rack.version` as it comes too late to be useful. ([#1938](https://github.com/rack/rack/pull/1938), [@ioquatix])
|
|
99
|
+
- Extract `rackup` command, `Rack::Server`, `Rack::Handler` and related code into a separate gem. ([#1937](https://github.com/rack/rack/pull/1937), [@ioquatix])
|
|
100
|
+
|
|
101
|
+
### Added
|
|
102
|
+
|
|
103
|
+
- `Rack::Headers` added to support lower-case header keys. ([@jeremyevans])
|
|
104
|
+
- `Rack::Utils#set_cookie_header` now supports `escape_key: false` to avoid key escaping. ([@jeremyevans])
|
|
105
|
+
- `Rack::RewindableInput` supports size. ([@ahorek](https://github.com/ahorek))
|
|
106
|
+
- `Rack::RewindableInput::Middleware` added for making `rack.input` rewindable. ([@jeremyevans])
|
|
107
|
+
- The RFC 7239 Forwarded header is now supported and considered by default when looking for information on forwarding, falling back to the X-Forwarded-* headers. `Rack::Request.forwarded_priority` accessor has been added for configuring the priority of which header to check. ([#1423](https://github.com/rack/rack/issues/1423), [@jeremyevans])
|
|
108
|
+
- Allow response headers to contain array of values. ([#1598](https://github.com/rack/rack/issues/1598), [@ioquatix])
|
|
109
|
+
- Support callable body for explicit streaming support and clarify streaming response body behaviour. ([#1745](https://github.com/rack/rack/pull/1745), [@ioquatix], [#1748](https://github.com/rack/rack/pull/1748), [@wjordan])
|
|
110
|
+
- Allow `Rack::Builder#run` to take a block instead of an argument. ([#1942](https://github.com/rack/rack/pull/1942), [@ioquatix])
|
|
111
|
+
- Add `rack.response_finished` to `Rack::Lint`. ([#1802](https://github.com/rack/rack/pull/1802), [@BlakeWilliams], [#1952](https://github.com/rack/rack/pull/1952), [@ioquatix])
|
|
112
|
+
- The stream argument must implement `#<<`. ([#1959](https://github.com/rack/rack/pull/1959), [@ioquatix])
|
|
113
|
+
|
|
114
|
+
### Changed
|
|
115
|
+
|
|
116
|
+
- BREAKING CHANGE: Require `status` to be an Integer. ([#1662](https://github.com/rack/rack/pull/1662), [@olleolleolle](https://github.com/olleolleolle))
|
|
117
|
+
- BREAKING CHANGE: Query parsing now treats parameters without `=` as having the empty string value instead of nil value, to conform to the URL spec. ([#1696](https://github.com/rack/rack/issues/1696), [@jeremyevans])
|
|
118
|
+
- Relax validations around `Rack::Request#host` and `Rack::Request#hostname`. ([#1606](https://github.com/rack/rack/issues/1606), [@pvande](https://github.com/pvande))
|
|
119
|
+
- Removed antiquated handlers: FCGI, LSWS, SCGI, Thin. ([#1658](https://github.com/rack/rack/pull/1658), [@ioquatix])
|
|
120
|
+
- Removed options from `Rack::Builder.parse_file` and `Rack::Builder.load_file`. ([#1663](https://github.com/rack/rack/pull/1663), [@ioquatix])
|
|
121
|
+
- `Rack::HTTP_VERSION` has been removed and the `HTTP_VERSION` env setting is no longer set in the CGI and Webrick handlers. ([#970](https://github.com/rack/rack/issues/970), [@jeremyevans])
|
|
122
|
+
- `Rack::Request#[]` and `#[]=` now warn even in non-verbose mode. ([#1277](https://github.com/rack/rack/issues/1277), [@jeremyevans])
|
|
123
|
+
- Decrease default allowed parameter recursion level from 100 to 32. ([#1640](https://github.com/rack/rack/issues/1640), [@jeremyevans])
|
|
124
|
+
- Attempting to parse a multipart response with an empty body now raises Rack::Multipart::EmptyContentError. ([#1603](https://github.com/rack/rack/issues/1603), [@jeremyevans])
|
|
125
|
+
- `Rack::Utils.secure_compare` uses OpenSSL's faster implementation if available. ([#1711](https://github.com/rack/rack/pull/1711), [@bdewater](https://github.com/bdewater))
|
|
126
|
+
- `Rack::Request#POST` now caches an empty hash if input content type is not parseable. ([#749](https://github.com/rack/rack/pull/749), [@jeremyevans])
|
|
127
|
+
- BREAKING CHANGE: Updated `trusted_proxy?` to match full 127.0.0.0/8 network. ([#1781](https://github.com/rack/rack/pull/1781), [@snbloch](https://github.com/snbloch))
|
|
128
|
+
- Explicitly deprecate `Rack::File` which was an alias for `Rack::Files`. ([#1811](https://github.com/rack/rack/pull/1720), [@ioquatix]).
|
|
129
|
+
- Moved `Rack::Session` into [separate gem](https://github.com/rack/rack-session). ([#1805](https://github.com/rack/rack/pull/1805), [@ioquatix])
|
|
130
|
+
- `rackup -D` option to daemonizes no longer changes the working directory to the root. ([#1813](https://github.com/rack/rack/pull/1813), [@jeremyevans])
|
|
131
|
+
- The `x-forwarded-proto` header is now considered before the `x-forwarded-scheme` header for determining the forwarded protocol. `Rack::Request.x_forwarded_proto_priority` accessor has been added for configuring the priority of which header to check. ([#1809](https://github.com/rack/rack/issues/1809), [@jeremyevans])
|
|
132
|
+
- `Rack::Request.forwarded_authority` (and methods that call it, such as `host`) now returns the last authority in the forwarded header, instead of the first, as earlier forwarded authorities can be forged by clients. This restores the Rack 2.1 behavior. ([#1829](https://github.com/rack/rack/issues/1809), [@jeremyevans])
|
|
133
|
+
- Use lower case cookie attributes when creating cookies, and fold cookie attributes to lower case when reading cookies (specifically impacting `secure` and `httponly` attributes). ([#1849](https://github.com/rack/rack/pull/1849), [@ioquatix])
|
|
134
|
+
- The response array must now be mutable (non-frozen) so middleware can modify it without allocating a new Array,therefore reducing object allocations. ([#1887](https://github.com/rack/rack/pull/1887), [#1927](https://github.com/rack/rack/pull/1927), [@amatsuda], [@ioquatix])
|
|
135
|
+
- `rack.hijack?` (partial hijack) and `rack.hijack` (full hijack) are now independently optional. `rack.hijack_io` is no longer required/specified. ([#1939](https://github.com/rack/rack/pull/1939), [@ioquatix])
|
|
136
|
+
- Allow calling close on `rack.input`. ([#1956](https://github.com/rack/rack/pull/1956), [@ioquatix])
|
|
137
|
+
|
|
138
|
+
### Fixed
|
|
139
|
+
|
|
140
|
+
- Make Rack::MockResponse handle non-hash headers. ([#1629](https://github.com/rack/rack/issues/1629), [@jeremyevans])
|
|
141
|
+
- TempfileReaper now deletes temp files if application raises an exception. ([#1679](https://github.com/rack/rack/issues/1679), [@jeremyevans])
|
|
142
|
+
- Handle cookies with values that end in '=' ([#1645](https://github.com/rack/rack/pull/1645), [@lukaso](https://github.com/lukaso))
|
|
143
|
+
- Make `Rack::NullLogger` respond to `#fatal!` [@jeremyevans])
|
|
144
|
+
- Fix multipart filename generation for filenames that contain spaces. Encode spaces as "%20" instead of "+" which will be decoded properly by the multipart parser. ([#1736](https://github.com/rack/rack/pull/1645), [@muirdm](https://github.com/muirdm))
|
|
145
|
+
- `Rack::Request#scheme` returns `ws` or `wss` when one of the `X-Forwarded-Scheme` / `X-Forwarded-Proto` headers is set to `ws` or `wss`, respectively. ([#1730](https://github.com/rack/rack/issues/1730), [@erwanst](https://github.com/erwanst))
|
|
146
|
+
|
|
49
147
|
## [2.2.4] - 2022-06-30
|
|
50
148
|
|
|
51
149
|
- Better support for lower case headers in `Rack::ETag` middleware. ([#1919](https://github.com/rack/rack/pull/1919), [@ioquatix](https://github.com/ioquatix))
|
|
@@ -53,23 +151,21 @@ All notable changes to this project will be documented in this file. For info on
|
|
|
53
151
|
|
|
54
152
|
## [2.2.3.1] - 2022-05-27
|
|
55
153
|
|
|
56
|
-
### Security
|
|
57
|
-
|
|
58
154
|
- [CVE-2022-30123] Fix shell escaping issue in Common Logger
|
|
59
155
|
- [CVE-2022-30122] Restrict parsing of broken MIME attachments
|
|
60
156
|
|
|
61
|
-
## [2.2.3] - 2020-
|
|
157
|
+
## [2.2.3] - 2020-06-15
|
|
62
158
|
|
|
63
159
|
### Security
|
|
64
160
|
|
|
65
|
-
- [CVE-2020-8184]
|
|
161
|
+
- [[CVE-2020-8184](https://nvd.nist.gov/vuln/detail/CVE-2020-8184)] Do not allow percent-encoded cookie name to override existing cookie names. BREAKING CHANGE: Accessing cookie names that require URL encoding with decoded name no longer works. ([@fletchto99](https://github.com/fletchto99))
|
|
66
162
|
|
|
67
163
|
## [2.2.2] - 2020-02-11
|
|
68
164
|
|
|
69
165
|
### Fixed
|
|
70
166
|
|
|
71
|
-
- Fix incorrect `Rack::Request#host` value. ([#1591](https://github.com/rack/rack/pull/1591), [@ioquatix]
|
|
72
|
-
- Revert `Rack::Handler::Thin` implementation. ([#1583](https://github.com/rack/rack/pull/1583), [@jeremyevans]
|
|
167
|
+
- Fix incorrect `Rack::Request#host` value. ([#1591](https://github.com/rack/rack/pull/1591), [@ioquatix])
|
|
168
|
+
- Revert `Rack::Handler::Thin` implementation. ([#1583](https://github.com/rack/rack/pull/1583), [@jeremyevans])
|
|
73
169
|
- Double assignment is still needed to prevent an "unused variable" warning. ([#1589](https://github.com/rack/rack/pull/1589), [@kamipo](https://github.com/kamipo))
|
|
74
170
|
- Fix to handle same_site option for session pool. ([#1587](https://github.com/rack/rack/pull/1587), [@kamipo](https://github.com/kamipo))
|
|
75
171
|
|
|
@@ -77,105 +173,111 @@ All notable changes to this project will be documented in this file. For info on
|
|
|
77
173
|
|
|
78
174
|
### Fixed
|
|
79
175
|
|
|
80
|
-
- Rework `Rack::Request#ip` to handle empty `forwarded_for`. ([#1577](https://github.com/rack/rack/pull/1577), [@ioquatix]
|
|
176
|
+
- Rework `Rack::Request#ip` to handle empty `forwarded_for`. ([#1577](https://github.com/rack/rack/pull/1577), [@ioquatix])
|
|
81
177
|
|
|
82
178
|
## [2.2.0] - 2020-02-08
|
|
83
179
|
|
|
84
180
|
### SPEC Changes
|
|
85
181
|
|
|
86
|
-
- `rack.session` request environment entry must respond to `to_hash` and return unfrozen Hash. ([@jeremyevans]
|
|
87
|
-
- Request environment cannot be frozen. ([@jeremyevans]
|
|
88
|
-
- CGI values in the request environment with non-ASCII characters must use ASCII-8BIT encoding. ([@jeremyevans]
|
|
89
|
-
- Improve SPEC/lint relating to SERVER_NAME, SERVER_PORT and HTTP_HOST. ([#1561](https://github.com/rack/rack/pull/1561), [@ioquatix]
|
|
182
|
+
- `rack.session` request environment entry must respond to `to_hash` and return unfrozen Hash. ([@jeremyevans])
|
|
183
|
+
- Request environment cannot be frozen. ([@jeremyevans])
|
|
184
|
+
- CGI values in the request environment with non-ASCII characters must use ASCII-8BIT encoding. ([@jeremyevans])
|
|
185
|
+
- Improve SPEC/lint relating to SERVER_NAME, SERVER_PORT and HTTP_HOST. ([#1561](https://github.com/rack/rack/pull/1561), [@ioquatix])
|
|
90
186
|
|
|
91
187
|
### Added
|
|
92
188
|
|
|
93
|
-
- `rackup` supports multiple `-r` options and will require all arguments. ([@jeremyevans]
|
|
189
|
+
- `rackup` supports multiple `-r` options and will require all arguments. ([@jeremyevans])
|
|
94
190
|
- `Server` supports an array of paths to require for the `:require` option. ([@khotta](https://github.com/khotta))
|
|
95
191
|
- `Files` supports multipart range requests. ([@fatkodima](https://github.com/fatkodima))
|
|
96
|
-
- `Multipart::UploadedFile` supports an IO-like object instead of using the filesystem, using `:filename` and `:io` options. ([@jeremyevans]
|
|
97
|
-
- `Multipart::UploadedFile` supports keyword arguments `:path`, `:content_type`, and `:binary` in addition to positional arguments. ([@jeremyevans]
|
|
98
|
-
- `Static` supports a `:cascade` option for calling the app if there is no matching file. ([@jeremyevans]
|
|
99
|
-
- `Session::Abstract::SessionHash#dig`. ([@jeremyevans]
|
|
100
|
-
- `Response.[]` and `MockResponse.[]` for creating instances using status, headers, and body. ([@ioquatix]
|
|
101
|
-
- Convenient cache and content type methods for `Rack::Response`. ([#1555](https://github.com/rack/rack/pull/1555), [@ioquatix]
|
|
192
|
+
- `Multipart::UploadedFile` supports an IO-like object instead of using the filesystem, using `:filename` and `:io` options. ([@jeremyevans])
|
|
193
|
+
- `Multipart::UploadedFile` supports keyword arguments `:path`, `:content_type`, and `:binary` in addition to positional arguments. ([@jeremyevans])
|
|
194
|
+
- `Static` supports a `:cascade` option for calling the app if there is no matching file. ([@jeremyevans])
|
|
195
|
+
- `Session::Abstract::SessionHash#dig`. ([@jeremyevans])
|
|
196
|
+
- `Response.[]` and `MockResponse.[]` for creating instances using status, headers, and body. ([@ioquatix])
|
|
197
|
+
- Convenient cache and content type methods for `Rack::Response`. ([#1555](https://github.com/rack/rack/pull/1555), [@ioquatix])
|
|
102
198
|
|
|
103
199
|
### Changed
|
|
104
200
|
|
|
105
|
-
- `Request#params` no longer rescues EOFError. ([@jeremyevans]
|
|
106
|
-
- `Directory` uses a streaming approach, significantly improving time to first byte for large directories. ([@jeremyevans]
|
|
107
|
-
- `Directory` no longer includes a Parent directory link in the root directory index. ([@jeremyevans]
|
|
108
|
-
- `QueryParser#parse_nested_query` uses original backtrace when reraising exception with new class. ([@jeremyevans]
|
|
109
|
-
- `ConditionalGet` follows RFC 7232 precedence if both If-None-Match and If-Modified-Since headers are provided. ([@jeremyevans]
|
|
201
|
+
- `Request#params` no longer rescues EOFError. ([@jeremyevans])
|
|
202
|
+
- `Directory` uses a streaming approach, significantly improving time to first byte for large directories. ([@jeremyevans])
|
|
203
|
+
- `Directory` no longer includes a Parent directory link in the root directory index. ([@jeremyevans])
|
|
204
|
+
- `QueryParser#parse_nested_query` uses original backtrace when reraising exception with new class. ([@jeremyevans])
|
|
205
|
+
- `ConditionalGet` follows RFC 7232 precedence if both If-None-Match and If-Modified-Since headers are provided. ([@jeremyevans])
|
|
110
206
|
- `.ru` files supports the `frozen-string-literal` magic comment. ([@eregon](https://github.com/eregon))
|
|
111
|
-
- Rely on autoload to load constants instead of requiring internal files, make sure to require 'rack' and not just 'rack/...'. ([@jeremyevans]
|
|
112
|
-
- `Etag` will continue sending ETag even if the response should not be cached. ([@henm](https://github.com/henm))
|
|
207
|
+
- Rely on autoload to load constants instead of requiring internal files, make sure to require 'rack' and not just 'rack/...'. ([@jeremyevans])
|
|
208
|
+
- BREAKING CHANGE: `Etag` will continue sending ETag even if the response should not be cached. Streaming no longer works without a workaround, see [#1619](https://github.com/rack/rack/issues/1619#issuecomment-848460528). ([@henm](https://github.com/henm))
|
|
113
209
|
- `Request#host_with_port` no longer includes a colon for a missing or empty port. ([@AlexWayfer](https://github.com/AlexWayfer))
|
|
114
|
-
- All handlers uses keywords arguments instead of an options hash argument. ([@ioquatix]
|
|
115
|
-
- `Files` handling of range requests no longer return a body that supports `to_path`, to ensure range requests are handled correctly. ([@jeremyevans]
|
|
116
|
-
- `Multipart::Generator` only includes `Content-Length` for files with paths, and `Content-Disposition` `filename` if the `UploadedFile` instance has one. ([@jeremyevans]
|
|
117
|
-
- `Request#ssl?` is true for the `wss` scheme (secure websockets). ([@jeremyevans]
|
|
118
|
-
- `Rack::HeaderHash` is memoized by default. ([#1549](https://github.com/rack/rack/pull/1549), [@ioquatix]
|
|
210
|
+
- All handlers uses keywords arguments instead of an options hash argument. ([@ioquatix])
|
|
211
|
+
- `Files` handling of range requests no longer return a body that supports `to_path`, to ensure range requests are handled correctly. ([@jeremyevans])
|
|
212
|
+
- `Multipart::Generator` only includes `Content-Length` for files with paths, and `Content-Disposition` `filename` if the `UploadedFile` instance has one. ([@jeremyevans])
|
|
213
|
+
- `Request#ssl?` is true for the `wss` scheme (secure websockets). ([@jeremyevans])
|
|
214
|
+
- `Rack::HeaderHash` is memoized by default. ([#1549](https://github.com/rack/rack/pull/1549), [@ioquatix])
|
|
119
215
|
- `Rack::Directory` allow directory traversal inside root directory. ([#1417](https://github.com/rack/rack/pull/1417), [@ThomasSevestre](https://github.com/ThomasSevestre))
|
|
120
|
-
- Sort encodings by server preference. ([#1184](https://github.com/rack/rack/pull/1184), [@ioquatix]
|
|
121
|
-
- Rework host/hostname/authority implementation in `Rack::Request`. `#host` and `#host_with_port` have been changed to correctly return IPv6 addresses formatted with square brackets, as defined by [RFC3986](https://tools.ietf.org/html/rfc3986#section-3.2.2). ([#1561](https://github.com/rack/rack/pull/1561), [@ioquatix]
|
|
122
|
-
- `Rack::Builder` parsing options on first `#\` line is deprecated. ([#1574](https://github.com/rack/rack/pull/1574), [@ioquatix]
|
|
216
|
+
- Sort encodings by server preference. ([#1184](https://github.com/rack/rack/pull/1184), [@ioquatix], [@wjordan](https://github.com/wjordan))
|
|
217
|
+
- Rework host/hostname/authority implementation in `Rack::Request`. `#host` and `#host_with_port` have been changed to correctly return IPv6 addresses formatted with square brackets, as defined by [RFC3986](https://tools.ietf.org/html/rfc3986#section-3.2.2). ([#1561](https://github.com/rack/rack/pull/1561), [@ioquatix])
|
|
218
|
+
- `Rack::Builder` parsing options on first `#\` line is deprecated. ([#1574](https://github.com/rack/rack/pull/1574), [@ioquatix])
|
|
123
219
|
|
|
124
220
|
### Removed
|
|
125
221
|
|
|
126
|
-
- `Directory#path` as it was not used and always returned nil. ([@jeremyevans]
|
|
127
|
-
- `BodyProxy#each` as it was only needed to work around a bug in Ruby <1.9.3. ([@jeremyevans]
|
|
222
|
+
- `Directory#path` as it was not used and always returned nil. ([@jeremyevans])
|
|
223
|
+
- `BodyProxy#each` as it was only needed to work around a bug in Ruby <1.9.3. ([@jeremyevans])
|
|
128
224
|
- `URLMap::INFINITY` and `URLMap::NEGATIVE_INFINITY`, in favor of `Float::INFINITY`. ([@ch1c0t](https://github.com/ch1c0t))
|
|
129
225
|
- Deprecation of `Rack::File`. It will be deprecated again in rack 2.2 or 3.0. ([@rafaelfranca](https://github.com/rafaelfranca))
|
|
130
|
-
- Support for Ruby 2.2 as it is well past EOL. ([@ioquatix]
|
|
131
|
-
- Remove `Rack::Files#response_body` as the implementation was broken. ([#1153](https://github.com/rack/rack/pull/1153), [@ioquatix]
|
|
132
|
-
- Remove `SERVER_ADDR` which was never part of the original SPEC. ([#1573](https://github.com/rack/rack/pull/1573), [@ioquatix]
|
|
226
|
+
- Support for Ruby 2.2 as it is well past EOL. ([@ioquatix])
|
|
227
|
+
- Remove `Rack::Files#response_body` as the implementation was broken. ([#1153](https://github.com/rack/rack/pull/1153), [@ioquatix])
|
|
228
|
+
- Remove `SERVER_ADDR` which was never part of the original SPEC. ([#1573](https://github.com/rack/rack/pull/1573), [@ioquatix])
|
|
133
229
|
|
|
134
230
|
### Fixed
|
|
135
231
|
|
|
136
|
-
- `Directory` correctly handles root paths containing glob metacharacters. ([@jeremyevans]
|
|
137
|
-
- `Cascade` uses a new response object for each call if initialized with no apps. ([@jeremyevans]
|
|
138
|
-
- `BodyProxy` correctly delegates keyword arguments to the body object on Ruby 2.7+. ([@jeremyevans]
|
|
139
|
-
- `BodyProxy#method` correctly handles methods delegated to the body object. ([@jeremyevans]
|
|
232
|
+
- `Directory` correctly handles root paths containing glob metacharacters. ([@jeremyevans])
|
|
233
|
+
- `Cascade` uses a new response object for each call if initialized with no apps. ([@jeremyevans])
|
|
234
|
+
- `BodyProxy` correctly delegates keyword arguments to the body object on Ruby 2.7+. ([@jeremyevans])
|
|
235
|
+
- `BodyProxy#method` correctly handles methods delegated to the body object. ([@jeremyevans])
|
|
140
236
|
- `Request#host` and `Request#host_with_port` handle IPv6 addresses correctly. ([@AlexWayfer](https://github.com/AlexWayfer))
|
|
141
|
-
- `Lint` checks when response hijacking that `rack.hijack` is called with a valid object. ([@jeremyevans]
|
|
142
|
-
- `Response#write` correctly updates `Content-Length` if initialized with a body. ([@jeremyevans]
|
|
237
|
+
- `Lint` checks when response hijacking that `rack.hijack` is called with a valid object. ([@jeremyevans])
|
|
238
|
+
- `Response#write` correctly updates `Content-Length` if initialized with a body. ([@jeremyevans])
|
|
143
239
|
- `CommonLogger` includes `SCRIPT_NAME` when logging. ([@Erol](https://github.com/Erol))
|
|
144
|
-
- `Utils.parse_nested_query` correctly handles empty queries, using an empty instance of the params class instead of a hash. ([@jeremyevans]
|
|
240
|
+
- `Utils.parse_nested_query` correctly handles empty queries, using an empty instance of the params class instead of a hash. ([@jeremyevans])
|
|
145
241
|
- `Directory` correctly escapes paths in links. ([@yous](https://github.com/yous))
|
|
146
|
-
- `Request#delete_cookie` and related `Utils` methods handle `:domain` and `:path` options in same call. ([@jeremyevans]
|
|
147
|
-
- `Request#delete_cookie` and related `Utils` methods do an exact match on `:domain` and `:path` options. ([@jeremyevans]
|
|
242
|
+
- `Request#delete_cookie` and related `Utils` methods handle `:domain` and `:path` options in same call. ([@jeremyevans])
|
|
243
|
+
- `Request#delete_cookie` and related `Utils` methods do an exact match on `:domain` and `:path` options. ([@jeremyevans])
|
|
148
244
|
- `Static` no longer adds headers when a gzipped file request has a 304 response. ([@chooh](https://github.com/chooh))
|
|
149
|
-
- `ContentLength` sets `Content-Length` response header even for bodies not responding to `to_ary`. ([@jeremyevans]
|
|
150
|
-
- Thin handler supports options passed directly to `Thin::Controllers::Controller`. ([@jeremyevans]
|
|
151
|
-
- WEBrick handler no longer ignores `:BindAddress` option. ([@jeremyevans]
|
|
152
|
-
- `ShowExceptions` handles invalid POST data. ([@jeremyevans]
|
|
153
|
-
- Basic authentication requires a password, even if the password is empty. ([@jeremyevans]
|
|
154
|
-
- `Lint` checks response is array with 3 elements, per SPEC. ([@jeremyevans]
|
|
245
|
+
- `ContentLength` sets `Content-Length` response header even for bodies not responding to `to_ary`. ([@jeremyevans])
|
|
246
|
+
- Thin handler supports options passed directly to `Thin::Controllers::Controller`. ([@jeremyevans])
|
|
247
|
+
- WEBrick handler no longer ignores `:BindAddress` option. ([@jeremyevans])
|
|
248
|
+
- `ShowExceptions` handles invalid POST data. ([@jeremyevans])
|
|
249
|
+
- Basic authentication requires a password, even if the password is empty. ([@jeremyevans])
|
|
250
|
+
- `Lint` checks response is array with 3 elements, per SPEC. ([@jeremyevans])
|
|
155
251
|
- Support for using `:SSLEnable` option when using WEBrick handler. (Gregor Melhorn)
|
|
156
|
-
- Close response body after buffering it when buffering. ([@ioquatix]
|
|
252
|
+
- Close response body after buffering it when buffering. ([@ioquatix])
|
|
157
253
|
- Only accept `;` as delimiter when parsing cookies. ([@mrageh](https://github.com/mrageh))
|
|
158
|
-
- `Utils::HeaderHash#clear` clears the name mapping as well. ([@raxoft](https://github.com/raxoft))
|
|
159
|
-
- Support for passing `nil` `Rack::Files.new`, which notably fixes Rails' current `ActiveStorage::FileServer` implementation. ([@ioquatix]
|
|
254
|
+
- `Utils::HeaderHash#clear` clears the name mapping as well. ([@raxoft](https://github.com/raxoft))
|
|
255
|
+
- Support for passing `nil` `Rack::Files.new`, which notably fixes Rails' current `ActiveStorage::FileServer` implementation. ([@ioquatix])
|
|
160
256
|
|
|
161
257
|
### Documentation
|
|
162
258
|
|
|
163
259
|
- CHANGELOG updates. ([@aupajo](https://github.com/aupajo))
|
|
164
260
|
- Added [CONTRIBUTING](CONTRIBUTING.md). ([@dblock](https://github.com/dblock))
|
|
165
261
|
|
|
262
|
+
## [2.0.9] - 2020-02-08
|
|
263
|
+
|
|
264
|
+
- Handle case where session id key is requested but missing ([@jeremyevans])
|
|
265
|
+
- Restore support for code relying on `SessionId#to_s`. ([@jeremyevans])
|
|
266
|
+
- Add support for `SameSite=None` cookie value. ([@hennikul](https://github.com/hennikul))
|
|
267
|
+
|
|
166
268
|
## [2.1.2] - 2020-01-27
|
|
167
269
|
|
|
168
270
|
- Fix multipart parser for some files to prevent denial of service ([@aiomaster](https://github.com/aiomaster))
|
|
169
271
|
- Fix `Rack::Builder#use` with keyword arguments ([@kamipo](https://github.com/kamipo))
|
|
170
|
-
- Skip deflating in Rack::Deflater if Content-Length is 0 ([@jeremyevans]
|
|
272
|
+
- Skip deflating in Rack::Deflater if Content-Length is 0 ([@jeremyevans])
|
|
171
273
|
- Remove `SessionHash#transform_keys`, no longer needed ([@pavel](https://github.com/pavel))
|
|
172
274
|
- Add to_hash to wrap Hash and Session classes ([@oleh-demyanyuk](https://github.com/oleh-demyanyuk))
|
|
173
|
-
- Handle case where session id key is requested but missing ([@jeremyevans]
|
|
275
|
+
- Handle case where session id key is requested but missing ([@jeremyevans])
|
|
174
276
|
|
|
175
277
|
## [2.1.1] - 2020-01-12
|
|
176
278
|
|
|
177
|
-
- Remove `Rack::Chunked` from `Rack::Server` default middleware. ([#1475](https://github.com/rack/rack/pull/1475), [@ioquatix]
|
|
178
|
-
- Restore support for code relying on `SessionId#to_s`. ([@jeremyevans]
|
|
279
|
+
- Remove `Rack::Chunked` from `Rack::Server` default middleware. ([#1475](https://github.com/rack/rack/pull/1475), [@ioquatix])
|
|
280
|
+
- Restore support for code relying on `SessionId#to_s`. ([@jeremyevans])
|
|
179
281
|
|
|
180
282
|
## [2.1.0] - 2020-01-10
|
|
181
283
|
|
|
@@ -192,13 +294,13 @@ All notable changes to this project will be documented in this file. For info on
|
|
|
192
294
|
- Add boot-time profiling capabilities to `rackup`. ([@tenderlove](https://github.com/tenderlove))
|
|
193
295
|
- Add multi mapping support for `X-Accel-Mappings` header. ([@yoshuki](https://github.com/yoshuki))
|
|
194
296
|
- Add `sync: false` option to `Rack::Deflater`. (Eric Wong)
|
|
195
|
-
- Add `Builder#freeze_app` to freeze application and all middleware instances. ([@jeremyevans]
|
|
297
|
+
- Add `Builder#freeze_app` to freeze application and all middleware instances. ([@jeremyevans])
|
|
196
298
|
- Add API to extract cookies from `Rack::MockResponse`. ([@petercline](https://github.com/petercline))
|
|
197
299
|
|
|
198
300
|
### Changed
|
|
199
301
|
|
|
200
|
-
- Don't propagate nil values from middleware. ([@ioquatix]
|
|
201
|
-
- Lazily initialize the response body and only buffer it if required. ([@ioquatix]
|
|
302
|
+
- Don't propagate nil values from middleware. ([@ioquatix])
|
|
303
|
+
- Lazily initialize the response body and only buffer it if required. ([@ioquatix])
|
|
202
304
|
- Fix deflater zlib buffer errors on empty body part. ([@felixbuenemann](https://github.com/felixbuenemann))
|
|
203
305
|
- Set `X-Accel-Redirect` to percent-encoded path. ([@diskkid](https://github.com/diskkid))
|
|
204
306
|
- Remove unnecessary buffer growing when parsing multipart. ([@tainoe](https://github.com/tainoe))
|
|
@@ -211,15 +313,15 @@ All notable changes to this project will be documented in this file. For info on
|
|
|
211
313
|
- Make `Utils.status_code` raise an error when the status symbol is invalid instead of `500`. ([@adambutler](https://github.com/adambutler))
|
|
212
314
|
- Rename `Request::SCHEME_WHITELIST` to `Request::ALLOWED_SCHEMES`.
|
|
213
315
|
- Make `Multipart::Parser.get_filename` accept files with `+` in their name. ([@lucaskanashiro](https://github.com/lucaskanashiro))
|
|
214
|
-
- Add Falcon to the default handler fallbacks. ([@ioquatix]
|
|
316
|
+
- Add Falcon to the default handler fallbacks. ([@ioquatix])
|
|
215
317
|
- Update codebase to avoid string mutations in preparation for `frozen_string_literals`. ([@pat](https://github.com/pat))
|
|
216
318
|
- Change `MockRequest#env_for` to rely on the input optionally responding to `#size` instead of `#length`. ([@janko](https://github.com/janko))
|
|
217
|
-
- Rename `Rack::File` -> `Rack::Files` and add deprecation notice. ([@postmodern](https://github.com/postmodern))
|
|
218
|
-
- Prefer Base64 “strict encoding” for Base64 cookies. ([@ioquatix]
|
|
319
|
+
- Rename `Rack::File` -> `Rack::Files` and add deprecation notice. ([@postmodern](https://github.com/postmodern))
|
|
320
|
+
- Prefer Base64 “strict encoding” for Base64 cookies. ([@ioquatix])
|
|
219
321
|
|
|
220
322
|
### Removed
|
|
221
323
|
|
|
222
|
-
- Remove `to_ary` from Response ([@tenderlove](https://github.com/tenderlove))
|
|
324
|
+
- BREAKING CHANGE: Remove `to_ary` from Response ([@tenderlove](https://github.com/tenderlove))
|
|
223
325
|
- Deprecate `Rack::Session::Memcache` in favor of `Rack::Session::Dalli` from dalli gem ([@fatkodima](https://github.com/fatkodima))
|
|
224
326
|
|
|
225
327
|
### Fixed
|
|
@@ -300,7 +402,7 @@ All notable changes to this project will be documented in this file. For info on
|
|
|
300
402
|
### Added
|
|
301
403
|
|
|
302
404
|
- Allow `Session::Abstract::SessionHash#fetch` to accept a block with a default value. ([@yannvanhalewyn](https://github.com/yannvanhalewyn))
|
|
303
|
-
- Add `Builder#freeze_app` to freeze application and all middleware. ([@jeremyevans]
|
|
405
|
+
- Add `Builder#freeze_app` to freeze application and all middleware. ([@jeremyevans])
|
|
304
406
|
|
|
305
407
|
### Changed
|
|
306
408
|
|
|
@@ -312,9 +414,9 @@ All notable changes to this project will be documented in this file. For info on
|
|
|
312
414
|
### Fixed
|
|
313
415
|
|
|
314
416
|
- Handle `NULL` bytes in multipart filenames. ([@casperisfine](https://github.com/casperisfine))
|
|
315
|
-
- Remove warnings due to miscapitalized global. ([@ioquatix]
|
|
417
|
+
- Remove warnings due to miscapitalized global. ([@ioquatix])
|
|
316
418
|
- Prevent exceptions caused by a race condition on multi-threaded servers. ([@sophiedeziel](https://github.com/sophiedeziel))
|
|
317
|
-
- Add RDoc as an explicit
|
|
419
|
+
- Add RDoc as an explicit dependency for `doc` group. ([@tonytonyjan](https://github.com/tonytonyjan))
|
|
318
420
|
- Record errors originating from `Multipart::Parser` in the `MethodOverride` middleware instead of letting them bubble up. ([@carlzulauf](https://github.com/carlzulauf))
|
|
319
421
|
- Remove remaining use of removed `Utils#bytesize` method from the `File` middleware. ([@brauliomartinezlm](https://github.com/brauliomartinezlm))
|
|
320
422
|
|
|
@@ -632,7 +734,7 @@ Items below this line are from the previously maintained HISTORY.md and NEWS.md
|
|
|
632
734
|
- Moved Auth::OpenID to rack-contrib.
|
|
633
735
|
- SPEC change that relaxes Lint slightly to allow subclasses of the
|
|
634
736
|
required types
|
|
635
|
-
- SPEC change to document rack.input binary mode in
|
|
737
|
+
- SPEC change to document rack.input binary mode in greater detail
|
|
636
738
|
- SPEC define optional rack.logger specification
|
|
637
739
|
- File servers support X-Cascade header
|
|
638
740
|
- Imported Config middleware
|
|
@@ -750,3 +852,9 @@ Items below this line are from the previously maintained HISTORY.md and NEWS.md
|
|
|
750
852
|
- Removed Rails adapter, was too alpha.
|
|
751
853
|
|
|
752
854
|
## [0.1] 2007-03-03
|
|
855
|
+
|
|
856
|
+
[@ioquatix]: https://github.com/ioquatix "Samuel Williams"
|
|
857
|
+
[@jeremyevans]: https://github.com/jeremyevans "Jeremy Evans"
|
|
858
|
+
[@amatsuda]: https://github.com/amatsuda "Akira Matsuda"
|
|
859
|
+
[@wjordan]: https://github.com/wjordan "Will Jordan"
|
|
860
|
+
[@BlakeWilliams]: https://github.com/BlakeWilliams "Blake Williams"
|