summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2022-08-04 16:08:33 +1200
committerGitHub <noreply@github.com>2022-08-04 16:08:33 +1200
commit882cbb32d6472bbaa386ca220d2512ccfdcb86c0 (patch)
treedc128996a600735d0fd0185446f0fa2400a138a6 /CHANGELOG.md
parent8ab9d47d3c11b519f5256b012012de90bc4c3e5d (diff)
downloadrack-882cbb32d6472bbaa386ca220d2512ccfdcb86c0.tar.gz
Extract `rackup` command, `Rack::Server`, `Rack::Handler` and related code into a separate gem. (#1937)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f122040..3b0d96ca 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,7 +28,8 @@ All notable changes to this project will be documented in this file. For info on
- 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]))
- Remove deprecated Rack::Request::SCHEME_WHITELIST. ([@jeremyevans])
- 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])
-- Remove `rack.version` as it comes too late to be useful. ([#1938](https://gituhb.com/rack/rack/pull/1938), [@ioquatix])
+- Remove `rack.version` as it comes too late to be useful. ([#1938](https://github.com/rack/rack/pull/1938), [@ioquatix])
+- Extract `rackup` command, `Rack::Server`, `Rack::Handler` and related code into a separate gem. ([#1937](https://github.com/rack/rack/pull/1937), [@ioquatix])
### Added