- Php 8.2+ support added.
New features:
- Added universal/universal package.
- Added Pux/RouteRequest class for dispatching routes with request constraints.
- Added
Pux\Dispatchable
interface.
Incompatible changes:
- Renamed Executor => RouteExecutor
- Removed expand property
- Moved
Pux\Controller
toPux\Controller\Controller
. - Moved mux expanding logics
expand()
fromPux\Controller
toPux\Controller\ExpandableController
.
Fixes:
- Fixed pattern compiler for post-separators. e.g.
/:year-:month
or/blog/:id(.:format)
- Fixed action method annotation parser
Deprecation:
- Disabled
Mux->expand
property to enhance submux dispatching.
- The controller method getActionMethods() now returns an associative array with "methodName" => [ annotation, meta ]
- The controller method getActionRoutes() now returns an indexed array for the [ "route path", {route options} ]
- Annotations from parent class methods are now parsed when calling
getActionMethods
orgetActionRoutes
- When the child method has no annotation, we parse the parent method annotation for it. unless the child method has its own annotations.
- Add
pux_persistent_dispatch
function for persistent dispatching. - Dispatch performance optimization, especially
__set_state
method call, 1.5x faster than before.
- Fix dispatch rtrim bug for pure PHP version.
- phar file re-compiled.
- dispatch performance improvement.
__set_state
construction time improvement.- fix various bugs for zts (zend thread safe mode enabled)