Skip to content

Commit 393b5d7

Browse files
committed
Merge branch 'release/0.8.14'
2 parents 971c64d + b7e7584 commit 393b5d7

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"strategy": "semver",
33
"major": 0,
44
"minor": 8,
5-
"patch": 13,
5+
"patch": 14,
66
"build": 0
77
}

src/Application/Base.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -588,12 +588,12 @@ public function run( array $argv = [] ): bool
588588
catch( Exception $exception )
589589
{
590590
// Check if this exception should bubble up to caller
591-
// Applications can register exception classes via Registry 'BubbleExceptions'
592-
$bubbleExceptions = Registry::getInstance()->get( 'BubbleExceptions' ) ?? [];
591+
// Applications can register exception classes via Registry 'PassthroughExceptions'
592+
$passthroughExceptions = Registry::getInstance()->get( 'PassthroughExceptions' ) ?? [];
593593

594-
if( in_array( get_class( $exception ), $bubbleExceptions ) )
594+
if( in_array( get_class( $exception ), $passthroughExceptions ) )
595595
{
596-
// Re-throw bubble exceptions without calling onCrash
596+
// Re-throw passthrough exceptions without calling onCrash
597597
throw $exception;
598598
}
599599

versionlog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.8.14 2026-01-12
2+
13
## 0.8.13 2026-01-06
24

35
## 0.8.12 2026-01-01

0 commit comments

Comments
 (0)