Skip to content

Commit

Permalink
Merge branch '7.x' into 8.x
Browse files Browse the repository at this point in the history
crynobone committed Nov 26, 2024
2 parents 83b3f93 + c143ce6 commit 8870bdd
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG-7.x.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,23 @@

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

## 7.40.0 (Unreleased)

### Added

* Added `Orchestra\Testbench\Dusk\Bootstrap\LoadConfigurationWithWorkbench` class based on `Orchestra\Testbench\Bootstrap\LoadConfigurationWithWorkbench`.
* Added `artisan` file to the default skeleton.

### Changes

* Change `Orchestra\Testbench\Dusk\Bootstrap\LoadConfiguration` class to extends `Orchestra\Testbench\Bootstrap\LoadConfiguration`.
* Refactor `Orchestra\Testbench\Dusk\Console\Commander` based on Testbench Core.
* Add multiple environment variables to Laravel 9 skeleton's configuration files based on changes made for Laravel 11.

### Fixes

* Fixed `bootstrap/app.php` to correctly extends `Orchestra\Testbench\Dusk\Foundation\Application`.

## 7.49.0

Released: 2024-11-19
2 changes: 1 addition & 1 deletion src/Foundation/Application.php
Original file line number Diff line number Diff line change
@@ -13,6 +13,6 @@ class Application extends \Orchestra\Testbench\Foundation\Application
*/
public static function applicationBasePath()
{
return $_ENV['APP_BASE_PATH'] ?? default_skeleton_path();
return static::applicationBasePathUsingWorkbench() ?? default_skeleton_path();
}
}

0 comments on commit 8870bdd

Please sign in to comment.