Releases: aloframework/handlers
Releases · aloframework/handlers
3.0
2.0.4
Symfony 3.x console support
Symfony 3.x console support updated in composer
Symfony 3.x support
Symfony 3.0 support added in composer.json
2.0.1
2.0
2.0
- Uses the ConfigInterface for configuration now
- A lot of things have become static attributes now to remove instantiation overhead
AbstractHandler::register()
removed::register()
signature changed:static function register(LoggerInterface $log = null, AbstractConfig = null)
- Kint is now used for HTML argument dumps.
- Better abstraction - CLI styling is now generated quicker
2.0-beta.1
A pre-release for a quick demo of the new interface
1.4.1
1.4
- Configuration is now expected to be done via the Configurable interface,
the old, constant-based configuration is now deprecated and will be removed in 2.0 - Better tests' code coverage
- Output examples added
1.3
Bugfixes:
- ExceptionHandler now correctly assigns the
$lastRegisteredHandler
and$lastReported
values
Error class:
- Now has a static
$map
property, allowing easy text representation of error codes - Now has a shouldBeReported() static method
- It's now possible to force HTML error output when in CLI mode by defining
define('ALO_HANDLERS_FORCE_HTML', true);
ShutdownHandler:
- Doesn't force the
E_CORE_ERROR
error code now - Has the
getLastRegisteredHandler
static method now
ErrorHandler:
- Error labels are more detailed now (e.g.
CORE ERROR
instead of justERROR
)
Misc:
- .gitattributes added
- More extensive testing