Skip to content

Commit

Permalink
Prepare 9.1.2 release
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Jun 4, 2024
1 parent 642b6bd commit e3aa89d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG-9.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench`.

## 9.1.2

Released: 2024-06-04

### Changes

* Update minimum support for Testbench Core v9.1.3+. ([v9.1.2...v9.1.3](https://github.com/orchestral/testbench-core/compare/v9.1.2...v9.1.3))

#### Testbench Changes

##### Fixes

* Fixes `Orchestra\Testbench\Workench\Workbench::applicationExceptionHandler()` usage to detect `Workbench\App\Exceptions\Handler` class.
* Fixes `Orchestra\Testbench\Console\Kernel` and `Orchestra\Testbench\Foundation\Console\Kernel` unable to discover commands.

## 9.1.1

Released: 2024-06-01
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"fakerphp/faker": "^1.23",
"laravel/framework": "^11.7",
"mockery/mockery": "^1.6",
"orchestra/testbench-core": "^9.1.2",
"orchestra/testbench-core": "^9.1.3",
"orchestra/workbench": "^9.1",
"phpunit/phpunit": "^10.5 || ^11.0.1",
"symfony/process": "^7.0",
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 200 files
4 changes: 3 additions & 1 deletion workbench/routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
|
*/

Route::get('/hello', function () {
Route::get('api/hello', function () {
return response()->json('hello world');
});

Route::get('api/failed', fn () => throw new RuntimeException('Bad route!'));

0 comments on commit e3aa89d

Please sign in to comment.