CHANGELOG in roda-3.55.0 vs CHANGELOG in roda-3.56.0
- old
+ new
@@ -1,4 +1,20 @@
+= 3.56.0 (2022-05-13)
+
+* Make status_303 plugin use 303 responses for HTTP/2 and higher versions (jeremyevans)
+
+* Add RodaRequest#http_version for determining the HTTP version in use (jeremyevans)
+
+* Do not set a body for 405 responses when using the verb methods in the not_allowed plugin (jeremyevans) (#267)
+
+* Support status_handler method :keep_headers option in status_handler plugin (jeremyevans) (#267)
+
+* Make not_allowed plugin have r.root return 405 responses for non-GET requests (jeremyevans) (#266)
+
+* In Rack 3, only require the parts of rack used by Roda, instead of requiring rack itself and relying on autoload (jeremyevans)
+
+* Add run_require_slash plugin, for skipping application dispatch for remaining paths that would violate Rack SPEC (jeremyevans)
+
= 3.55.0 (2022-04-12)
* Allow passing blocks to the view method in the render plugin (jeremyevans) (#262)
* Add :forward_response_headers middleware plugin option to use app headers as default for response (janko) (#259)