Releases: samsonasik/ErrorHeroModule
Releases · samsonasik/ErrorHeroModule
1.8.8
Enhancement:
- Ensure uri in expressive include with existing base path
1.8.7
- Fix request uri definition on Logging::setServerRequestandRequestUri() when used in zend-expressive environment
- Fix table definition sample config when used in zend-expressive environment
1.8.6
- Fix undefined variable $configuration which was unseen as applied check with isset at
ExpressiveFactory - apply create Zend\Db service name based on configuration on
ExpressiveFactorywhen using DoctrineORMModule
1.8.5
- use ModuleEvent::EVENT_MERGE_CONFIG for error preview page handler
1.8.4
- add php: nightly to travis
- remove unneeded re-set ConfigListener from ModuleEvent and re-create "config" service when enable-error-preview-page set to false
1.8.3
micro optimization on function calls
1.8.2
Bug FIx:
- use adapter name defined in "log" config when convert doctrine to zend db service
1.8.1
regression fixes on delete exit(-1) usage, roll back!
1.8.0
Added ability to exclude exceptions via configuration:
// ...
'error-hero-module' => [
'enable' => true,
'display-settings' => [
// ...
// excluded exceptions
'exclude-exceptions' => [
\App\Exception\MyException::class, // can be an Exception class or class extends Exception class
],
// ...
],
// ...
],
// ...For full configuration and settings, please consult the README and sample configurations:
1.7.7
- Refactor HeroTrait to use ErrorException() for php error for consistency
- Detect display errors and exclude php errors correctly for both zend-mvc and zend-expressive part
- use return ResponseInterface for Expressive middleware on __invoke()
- use stopPropagation() event call on Mvc when show response custom page