File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22 "strategy" : " semver" ,
33 "major" : 0 ,
44 "minor" : 8 ,
5- "patch" : 0 ,
5+ "patch" : 1 ,
66 "build" : 0
77}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 /**
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments