summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2022-12-05 18:11:57 +1300
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2022-12-05 18:11:57 +1300
commitdcbda319d807baab594820da58cf7bbf44702d1b (patch)
treeb0565d2cd72536593a6133dd7ed956cacd033d0a
parent3e17592c088872e5b0dc87b61afdf56cf495ffe0 (diff)
downloadrack-dcbda319d807baab594820da58cf7bbf44702d1b.tar.gz
Bump patch version.v3.0.2
-rw-r--r--CHANGELOG.md8
-rw-r--r--lib/rack/version.rb2
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d77bbbea..e9f26dbf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,13 +2,19 @@
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.2] -2022-12-05
+
+### Fixed
+
+- `Utils.build_nested_query` URL-encodes nested field names including the square brackets.
+- Allow `Rack::Response` to pass through streaming bodies. ([#1993](https://github.com/rack/rack/pull/1993), [@ioquatix])
+
## [3.0.1] - 2022-11-18
### Fixed
- `MethodOverride` does not look for an override if a request does not include form/parseable data.
- `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])
-- `Utils.build_nested_query` URL-encodes nested field names including the square brackets.
## [3.0.0] - 2022-09-06
diff --git a/lib/rack/version.rb b/lib/rack/version.rb
index cd73e2e1..97bd47eb 100644
--- a/lib/rack/version.rb
+++ b/lib/rack/version.rb
@@ -25,7 +25,7 @@ module Rack
VERSION
end
- RELEASE = "3.0.1"
+ RELEASE = "3.0.2"
# Return the Rack release as a dotted string.
def self.release