Skip to content

Commit

Permalink
Merge branch '6.x' into 7.x
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Sep 24, 2024
2 parents 4d4cecc + 56eaaec commit a0fdcf6
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG-6.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

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

## 6.47.0

Released: 2024-09-23

### Changes

* Update minimum support for Testbench Core v6.53.0+. ([v6.52.0...v6.53.0](https://github.com/orchestral/testbench-core/compare/v6.52.0...v6.53.0))

#### Testbench Changes

##### Added

* Added `markTestSkippedWhen()` and `markTestSkippedUnless()` assertion helper to conditionally handle `markTestSkipped()`.
* Added `Orchestra\Testbench\default_migration_path()` helper function.
* Added `Orchestra\Testbench\laravel_vendor_exists()` helper function.

##### Changes

* Allow Testbench to delete `vendor` symlink directory if it was created while running tests.

##### Fixes

* Fixes `view.paths` configuration not being updated to include `workbench/resources/views` due to IoC booting sequence.

##### Deprecated

* Deprecated `Orchestra\Testbench\laravel_migration_path()`, use `default_migration_path()` instead.

## 6.46.0

Released: 2024-08-26
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"fakerphp/faker": "^1.21",
"laravel/framework": "^9.52.16",
"mockery/mockery": "^1.5.1",
"orchestra/testbench-core": "^7.46",
"orchestra/workbench": "^7.9",
"orchestra/testbench-core": "^7.47",
"orchestra/workbench": "^7.10",
"phpunit/phpunit": "^9.5.10",
"symfony/process": "^6.0.9",
"symfony/yaml": "^6.0.9",
Expand Down
1 change: 1 addition & 0 deletions workbench/resources/views/errors/418.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I&#039;m a teapot
3 changes: 3 additions & 0 deletions workbench/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@

Route::view('/testbench', 'workbench::testbench')->name('testbench');
Route::text('/hello-world', 'Hello world');
Route::get('/root', function () {
abort(418);
});

0 comments on commit a0fdcf6

Please sign in to comment.