summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2022-08-05 02:36:13 +1200
committerGitHub <noreply@github.com>2022-08-04 07:36:13 -0700
commit1e4c18d895cde0af92e9286cfda52b4c10bb0488 (patch)
treec31e9a8c2781a0579df10a92a2b7198d7ab294a5 /CHANGELOG.md
parent882cbb32d6472bbaa386ca220d2512ccfdcb86c0 (diff)
downloadrack-1e4c18d895cde0af92e9286cfda52b4c10bb0488.tar.gz
Allow `Rack::Builder#run` to take a block instead of an argument. (#1942)
* Raise ArgumentError if both app and block given.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3b0d96ca..076783e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -40,6 +40,7 @@ All notable changes to this project will be documented in this file. For info on
- 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])
- Allow response headers to contain array of values. ([#1598](https://github.com/rack/rack/issues/1598), [@ioquatix])
- 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])
+- Allow `Rack::Builder#run` to take a block instead of an argument. ([#1942](https://github.com/rack/rack/pull/1942), [@ioquatix])
### Changed