summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-01-17 11:33:44 +1300
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-01-17 11:33:44 +1300
commit9a2f06e7c20ca89b9e12b305bbd21901bd106d1e (patch)
treefefa2b3470e1889a47273d8f381be3d0edeadc6c
parent401ca8248e642a9b3b11895f2957d12d448c5d55 (diff)
downloadrack-9a2f06e7c20ca89b9e12b305bbd21901bd106d1e.tar.gz
Bump patch version.v3.0.4
-rw-r--r--CHANGELOG.md6
-rw-r--r--lib/rack/version.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 469e4104..2edd32c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
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/).
+## [3.0.4] - 2022-01-17
+
+- `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])
+- 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))
+- Extend `Rack::MethodOverride` to handle `QueryParser::ParamsTooDeepError` error. ([#2006](https://github.com/rack/rack/pull/2006), [@byroot](https://github.com/byroot))
+
## [3.0.3] - 2022-12-27
### Fixed
diff --git a/lib/rack/version.rb b/lib/rack/version.rb
index 27691d82..f1b2710a 100644
--- a/lib/rack/version.rb
+++ b/lib/rack/version.rb
@@ -25,7 +25,7 @@ module Rack
VERSION
end
- RELEASE = "3.0.3"
+ RELEASE = "3.0.4"
# Return the Rack release as a dotted string.
def self.release