Skip to content

Releases: samsonasik/ErrorHeroModule

1.8.8

22 Aug 04:59
1.8.8
774e0d9

Choose a tag to compare

Enhancement:

  • Ensure uri in expressive include with existing base path

1.8.7

21 Aug 04:32
1.8.7
43931a5

Choose a tag to compare

  • 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

14 Aug 15:30
1.8.6
53a2caf

Choose a tag to compare

  • Fix undefined variable $configuration which was unseen as applied check with isset at ExpressiveFactory
  • apply create Zend\Db service name based on configuration on ExpressiveFactory when using DoctrineORMModule

1.8.5

02 Aug 17:25
1.8.5
6902982

Choose a tag to compare

  • use ModuleEvent::EVENT_MERGE_CONFIG for error preview page handler

1.8.4

30 Jul 19:22
1.8.4
6587a5c

Choose a tag to compare

  • 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

17 Jul 13:19
1.8.3
7e229d7

Choose a tag to compare

micro optimization on function calls

1.8.2

03 Jul 03:45
1.8.2
129300e

Choose a tag to compare

Bug FIx:

  • use adapter name defined in "log" config when convert doctrine to zend db service

1.8.1

04 Apr 13:06
1.8.1
5d4c648

Choose a tag to compare

regression fixes on delete exit(-1) usage, roll back!

1.8.0

03 Apr 11:14
1.8.0
ad46b1a

Choose a tag to compare

Build Status Coverage Status PHPStan

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

03 Apr 06:32
1.7.7
1287554

Choose a tag to compare

  • 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