README.md in rack-contrib-2.1.0 vs README.md in rack-contrib-2.2.0

- old
+ new

@@ -11,17 +11,18 @@ * `Rack::Config` - Shared configuration for cooperative middleware. * `Rack::Cookies` - Adds simple cookie jar hash to env * `Rack::Deflect` - Helps protect against DoS attacks. * `Rack::Evil` - Lets the rack application return a response to the client from any place. * `Rack::HostMeta` - Configures `/host-meta` using a block +* `Rack::JSONBodyParser` - Adds JSON request bodies to the Rack parameters hash. * `Rack::JSONP` - Adds JSON-P support by stripping out the callback param and padding the response with the appropriate callback format. * `Rack::LazyConditionalGet` - Caches a global `Last-Modified` date and updates it each time there is a request that is not `GET` or `HEAD`. * `Rack::LighttpdScriptNameFix` - Fixes how lighttpd sets the `SCRIPT_NAME` and `PATH_INFO` variables in certain configurations. * `Rack::Locale` - Detects the client locale using the Accept-Language request header and sets a `rack.locale` variable in the environment. * `Rack::MailExceptions` - Rescues exceptions raised from the app and sends a useful email with the exception, stacktrace, and contents of the environment. * `Rack::NestedParams` - parses form params with subscripts (e.g., * "`post[title]=Hello`") into a nested/recursive Hash structure (based on Rails' implementation). * `Rack::NotFound` - A default 404 application. -* `Rack::PostBodyContentTypeParser` - Adds support for JSON request bodies. The Rack parameter hash is populated by deserializing the JSON data provided in the request body when the Content-Type is application/json. +* `Rack::PostBodyContentTypeParser` - [Deprecated]: Adds support for JSON request bodies. The Rack parameter hash is populated by deserializing the JSON data provided in the request body when the Content-Type is application/json * `Rack::Printout` - Prints the environment and the response per request * `Rack::ProcTitle` - Displays request information in process title (`$0`) for monitoring/inspection with ps(1). * `Rack::Profiler` - Uses ruby-prof to measure request time. * `Rack::RelativeRedirect` - Transforms relative paths in redirects to absolute URLs. * `Rack::ResponseCache` - Caches responses to requests without query strings to Disk or a user provided Ruby object. Similar to Rails' page caching.