Skip to content

Commit

Permalink
Merge branch '8.x' into develop
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Dec 16, 2024
2 parents 325837e + 2909866 commit 21cffbf
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG-8.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`.

## 8.33.0

Released: 2024-12-16

### Added

* Override Laravel's `vendor:publish` command.

### Changes

* Update minimum support for Testbench v8.30.0+. ([v8.28.0...v8.30.0](https://github.com/orchestral/testbench/compare/v8.28.0...v8.30.0))
* Update minimum support for Testbench Core v8.31.0+. ([v8.30.0...v8.31.0](https://github.com/orchestral/testbench/compare/v8.30.0...v8.31.0))

## 8.32.0

Released: 2024-12-01
Expand All @@ -13,6 +26,8 @@ Released: 2024-12-01

### Changes

* Update minimum support for Testbench v8.29.0+. ([v8.28.0...v8.29.0](https://github.com/orchestral/testbench/compare/v8.28.0...v8.29.0))
* Update minimum support for Testbench Core v8.30.0+. ([v8.29.0...v8.30.0](https://github.com/orchestral/testbench/compare/v8.29.0...v8.30.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 10 skeleton's configuration files based on changes made for Laravel 11.
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG-9.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`.

## 9.11.0

Released: 2024-12-16

### Added

* Override Laravel's `vendor:publish` command.

### Changes

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

## 9.10.0

Released: 2024-12-01
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 21cffbf

Please sign in to comment.