CHANGELOG.md in hanami-router-0.7.0 vs CHANGELOG.md in hanami-router-0.8.0
- old
+ new
@@ -1,7 +1,18 @@
# Hanami::Router
Rack compatible HTTP router for Ruby
+## v0.8.0 - 2016-11-15
+### Added
+- [Kyle Chong] Referenced params from body parses in Rack env via `router.parsed_body`
+
+### Fixed
+- [Luca Guidi & Lucas Hosseini] Ensure params from routes take precedence over params from body parsing
+- [Luca Guidi] Ensure inspector to respect path prefix of mouted apps
+
+### Changed
+- [Luca Guidi] Official support for Ruby: MRI 2.3+ and JRuby 9.1.5.0+
+
## v0.7.0 - 2016-07-22
### Added
- [Sean Collins] Introduced `Hanami::Router#root`. Example: `root to: 'home#index'`, equivalent to `get '/', to: 'home#index', as: :root`.
- [Nicola Racco] Allow to mount Rack applications at a specific host. Example: `mount Blog, host: 'blog'`, which will be hit for `GET http://blog.example.com`
- [Luca Guidi] Support `multi_json` gem as backend for JSON body parser. If `multi_json` is present in the gem bundle, it will be used, otherwise it will fallback to Ruby's `JSON`.