Skip to content

Commit

Permalink
Merge branch 'develop' into 9.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 a7a3389 + 21cffbf commit 535fde0
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/strict-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
phpunit:
- "~10.5.35"
- "~11.3.6"
- "~11.4.0"
- "~11.4"
- "~11.5"
experimental:
- false

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
phpunit:
- "~10.5.35"
- "~11.3.6"
- "~11.4.0"
- "~11.4"
- "~11.5"
dependencies:
- "highest"
- "lowest"
Expand Down
19 changes: 18 additions & 1 deletion CHANGELOG-8.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@

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

## 8.32.0 (Unreleased)
## 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

### Added

Expand All @@ -11,6 +26,8 @@ This changelog references the relevant changes (bug and security fixes) done to

### 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
19 changes: 18 additions & 1 deletion CHANGELOG-9.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@

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

## 9.10.0 (Unreleased)
## 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

### Added

Expand All @@ -11,6 +26,8 @@ This changelog references the relevant changes (bug and security fixes) done to

### Changes

* Update minimum support for Testbench v9.7.0+. ([v9.6.1...v9.7.0](https://github.com/orchestral/testbench/compare/v9.6.1...v9.7.0))
* Update minimum support for Testbench Core v9.7.0+. ([v9.6.2...v9.7.0](https://github.com/orchestral/testbench-core/compare/v9.6.2...v9.7.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
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.");
}
}
10 changes: 10 additions & 0 deletions src/Foundation/Console/VendorPublishCommand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace Orchestra\Testbench\Dusk\Foundation\Console;

use Orchestra\Testbench\Foundation\Console\VendorPublishCommand as Command;

class VendorPublishCommand extends Command
{
//
}
1 change: 1 addition & 0 deletions src/Foundation/TestbenchServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public function boot(): void
Console\PurgeSkeletonCommand::class,
Console\ServeCommand::class,
Console\SyncSkeletonCommand::class,
Console\VendorPublishCommand::class,
]);
}
}
Expand Down

0 comments on commit 535fde0

Please sign in to comment.