mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 07:45:54 +01:00
786 B
786 B
3.2.0 (boron) breaking changes
- Removed
TDataSetHelper.LoadFromJSONArrayStringItems
TDataSetHolder
class now renders data in a property calleddata
(previously wasitems
)- The default header used by JWT middleware is now
Authorization
(previously wasAuthentication
) - Middleware
OnAfterControllerAction
are now invoked in the same order ofOnBeforeControllerAction
(previously were invoked in reversed order). IMVCMiddleware
has got a new method called after the request processing:OnAfterRouting
. It is called even if no action is executed. If you don't need it, implement the method and leave it empty.TMVCEngine
is no more responsible for static file serviing. If you need static files used the newTMVCStaticFilesMiddleware
(check the sample).