diff --git a/CHANGELOG-7.x.md b/CHANGELOG-7.x.md index c59e860..780b406 100644 --- a/CHANGELOG-7.x.md +++ b/CHANGELOG-7.x.md @@ -2,6 +2,19 @@ This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench-dusk`. +## 7.51.0 + +Released: 2024-12-16 + +### Added + +* Override Laravel's `vendor:publish` command. + +### Changes + +* Update minimum support for Testbench v7.49.0+. ([v7.48.0...v7.49.0](https://github.com/orchestral/testbench/compare/v7.48.0...v7.49.0)) +* Update minimum support for Testbench Core v7.50.0+. ([v7.49.0...v7.50.0](https://github.com/orchestral/testbench/compare/v7.49.0...v7.50.0)) + ## 7.50.0 Released: 2024-12-01 @@ -13,6 +26,8 @@ Released: 2024-12-01 ### Changes +* Update minimum support for Testbench v7.48.0+. ([v7.47.0...v7.48.0](https://github.com/orchestral/testbench/compare/v7.47.0...v7.48.0)) +* Update minimum support for Testbench Core v7.49.0+. ([v7.48.0...v7.49.0](https://github.com/orchestral/testbench/compare/v7.48.0...v7.49.0)) * 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. diff --git a/composer.json b/composer.json index 0e830a1..b90b617 100644 --- a/composer.json +++ b/composer.json @@ -42,7 +42,7 @@ "laravel/dusk": "^7.13 || ^8.1", "laravel/serializable-closure": "^1.3 || ^2.0", "orchestra/dusk-updater": "^2.6", - "orchestra/testbench": "^8.29", + "orchestra/testbench": "^8.30", "orchestra/testbench-core": "^8.31", "php-webdriver/webdriver": "^1.9", "symfony/polyfill-php83": "^1.31" diff --git a/src/Foundation/Console/PurgeCommand.php b/src/Foundation/Console/PurgeCommand.php index 37126b1..b28e1c2 100644 --- a/src/Foundation/Console/PurgeCommand.php +++ b/src/Foundation/Console/PurgeCommand.php @@ -68,7 +68,7 @@ protected function purgeDebuggingFiles(string $relativePath, string $patterns): if (! is_dir($path)) { $this->components->warn( - "Unable to purge missing directory [{$relativePath}].", OutputInterface::VERBOSITY_DEBUG + "Unable to purge missing directory [./{$relativePath}].", OutputInterface::VERBOSITY_DEBUG ); return; @@ -78,6 +78,6 @@ protected function purgeDebuggingFiles(string $relativePath, string $patterns): @unlink($file->getRealPath()); } - $this->components->task("Purged \"{$patterns}\" from [{$relativePath}] path."); + $this->components->task("Purged \"{$patterns}\" from [./{$relativePath}] path."); } }