Releases: cpt-erwin/okami
Releases · cpt-erwin/okami
1.1.0-aplha03
Major changes in Middleware logic!
- Added App scope Middlewares
- Removed Middleware handle logic from Route
1.0.0-alpha01
This is an initial pre-release for Okami framework mostly for implementation in the skeleton app to divide it's own implementation (as it was before).
1.1.0-aplha02
- minor routing enhancements
- major Middleware enhancements
Middlewares are now configurable via Route with the possibility to set multiple Middlewares for a single route.
The way of approaching the Middleware problematic was remade from scratch:
- Middlewares are called in the order that they were set on the route
- every Middleware call before() method and hand over the control to the other Middleware
- when the last Middleware is called it will call the specified route action
- after the routing logic is executed all the Middlewares are called in the reversed order performing the after() method
- in the end, the Response object is returned with content stored in its body
1.1.0-aplha01
Major routing enhancements adding wildcard paths implementation.
Initial release
1.0.0 Composer project type changes & added keywords
1.0.0-aplha03
Model changes, added login & logout methods to App
1.0.0-aplha02
Added Model, FormBuilder, Database and migrations.