CHANGELOG.md in hanami-router-2.0.0.alpha1 vs CHANGELOG.md in hanami-router-2.0.0.alpha2

- old
+ new

@@ -1,8 +1,19 @@ # Hanami::Router Rack compatible HTTP router for Ruby +## v2.0.0.alpha2 - 2020-02-19 +### Added +- [Luca Guidi] Block syntax. Routes definition accept a block which returning value is the body of the Rack response. +- [Luca Guidi] Added `resolver:` option to `Hanami::Router#initialize` to provide your own strategy to load endpoints. + +### Changed +- [Luca Guidi] Removed `Hanami::Router#resource` and `#resources`. +- [Luca Guidi] Removed loading of routes endpoints. +- [Luca Guidi] Removed `inflector:` from `Hanami::Router#initialize` +- [Luca Guidi] Removed `scheme:`, `host:`, `port:` from `Hanami::Router#initialize`, use `base_url:` instead. + ## v2.0.0.alpha1 - 2019-01-30 ### Added - [Luca Guidi] Introduce `Hanami::Router#scope` to support single routing tier for Hanami - [Semyon Pupkov] Added `inflector:` option for `Hanami::Router#initialize` based on `dry-inflector` @@ -14,9 +25,14 @@ - [Gustavo Caso] Remove router body parsers (`parsers:` option for `Hanami::Router#initialize`) - [Luca Guidi] Globbed path requires named capture (was `get "/files/*"`, now is `get "/files/*names"`) - [Luca Guidi] Router is frozen after initialization - [Luca Guidi] All the code base respects the frozen string pragma - [Luca Guidi] `Hanami::Router#initialize` requires `configuration:` option if routes endpoints are `Hanami::Action` subclasses + +## v1.3.2 - 2019-02-13 +### Added +- [Luca Guidi] Official support for Ruby: MRI 2.7 +- [Luca Guidi] Support `rack` 2.1 ## v1.3.1 - 2019-01-18 ### Added - [Luca Guidi] Official support for Ruby: MRI 2.6 - [Luca Guidi] Support `bundler` 2.0+