Skip to content

Commit

Permalink
Merge branch '7.x' into 8.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 Dec 16, 2024
2 parents d1a29da + 8f75b6d commit c3509e3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG-7.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/Foundation/Console/PurgeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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.");
}
}

0 comments on commit c3509e3

Please sign in to comment.