Skip to content

Releases: cpt-erwin/okami

1.1.0-aplha03

30 Jan 17:42
Compare
Choose a tag to compare

Major changes in Middleware logic!

  • Added App scope Middlewares
  • Removed Middleware handle logic from Route

1.0.0-alpha01

01 Dec 09:12
Compare
Choose a tag to compare
1.0.0-alpha01 Pre-release
Pre-release

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

28 Jan 13:07
Compare
Choose a tag to compare
  • 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

26 Jan 13:29
Compare
Choose a tag to compare

Major routing enhancements adding wildcard paths implementation.

Initial release

25 Jan 14:29
Compare
Choose a tag to compare
1.0.0

Composer project type changes & added keywords

1.0.0-aplha03

07 Dec 16:05
Compare
Choose a tag to compare
1.0.0-aplha03 Pre-release
Pre-release

Model changes, added login & logout methods to App

1.0.0-aplha02

05 Dec 21:02
Compare
Choose a tag to compare
1.0.0-aplha02 Pre-release
Pre-release

Added Model, FormBuilder, Database and migrations.