summary refs log tree commit
diff options
context:
space:
mode:
authorStefan Wrobel <swrobel@users.noreply.github.com>2022-07-09 00:53:08 -0700
committerGitHub <noreply@github.com>2022-07-09 19:53:08 +1200
commit59c50ddf8998dbd2a6b472525bc1280da71f6c7b (patch)
tree49c7f3b5d09dd8fbba1152215d426f22ed8c99fe
parent7a9401dadf27dedee36d1920727b0384facbb37b (diff)
downloadrack-59c50ddf8998dbd2a6b472525bc1280da71f6c7b.tar.gz
Add CHANGELOG entry under "Added" for streaming response bodies.
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e66fca1a..6127ea29 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -35,6 +35,7 @@ All notable changes to this project will be documented in this file. For info on
 - `Rack::RewindableInput::Middleware` added for making `rack.input` rewindable. ([@jeremyevans])
 - 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])
 
 ### Changed
 
@@ -779,3 +780,4 @@ Items below this line are from the previously maintained HISTORY.md and NEWS.md
 [@ioquatix]: https://github.com/ioquatix "Samuel Williams"
 [@jeremyevans]: https://github.com/jeremyevans "Jeremy Evans"
 [@amatsuda]: https://github.com/amatsuda "Akira Matsuda"
+[@wjordan]: https://github.com/wjordan "Will Jordan"