Skip to content

Commit de728ae

Browse files
committed
wip
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 01998b8 commit de728ae

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

CHANGELOG-6.x.md

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

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

5+
## 6.42.1
6+
7+
Released: 2024-01-22
8+
9+
### Changes
10+
11+
* Update minimum support for Testbench Core v6.47.1+. ([v6.47.0...v6.47.1](https://github.com/orchestral/testbench-core/compare/v6.47.0...v6.47.1))
12+
13+
#### Testbench Changes
14+
15+
##### Changes
16+
17+
* Support nested configuration files.
18+
19+
##### Fixes
20+
21+
* Fixes issue with Livewire testing where calling `$router->getRoutes()->refreshActionLookups()` caused tests to fail.
22+
523
## 6.42.0
624

725
Released: 2024-01-19

bin/sync

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Illuminate\Support\Collection::make([
3131
});
3232

3333
Illuminate\Support\Collection::make([
34-
...$files->glob("{$workingPath}/core/workbench/config/*"),
34+
...$files->glob("{$workingPath}/core/workbench/config/*.php"),
35+
...$files->glob("{$workingPath}/core/workbench/config/*/*.php"),
3536
...$files->glob("{$workingPath}/core/workbench/database/migrations/*"),
3637
...$files->glob("{$workingPath}/core/workbench/lang/en/*"),
3738
...$files->glob("{$workingPath}/core/workbench/routes/*"),

workbench/config/nested/workbench.php

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
use Composer\InstalledVersions;
4+
5+
return [
6+
'installed' => InstalledVersions::isInstalled('orchestra/workbench'),
7+
];

0 commit comments

Comments
 (0)