Skip to content

Commit e989b57

Browse files
committed
Merge branch 'release/0.8.1'
2 parents 0c5e8c8 + 7ee0fce commit e989b57

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.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": 0,
5+
"patch": 1,
66
"build": 0
77
}

src/Bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function dispatch( Application $App ) : void
5959
}
6060
catch( \Exception $e )
6161
{
62-
echo 'Ouch.';
62+
echo $e->getMessage()."<br>".$e->getTraceAsString();
6363
}
6464
}
6565

tests/BootstrapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public function testDispatchWithException()
248248
$Output = ob_get_clean();
249249

250250
// Should output 'Ouch.' when exception is caught
251-
$this->assertEquals( 'Ouch.', $Output );
251+
$this->assertStringContainsString( 'Exception', $Output );
252252
}
253253

254254
/**

versionlog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Added routing exception output.
2+
3+
## 0.8.1 2025-11-07
4+
15
* Added integrated rate limiting support via routing component.
26
* Rate limiting configuration with rate_limit and api_limit categories.
37
* Automatic rate limit filter registration from config.yaml

0 commit comments

Comments
 (0)