Skip to content

Commit

Permalink
Merge branch '7.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 Jan 22, 2024
2 parents a047a7e + 7313937 commit dbc5336
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG-7.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

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

## 7.40.1

Released: 2024-01-19

### Changes

* Update minimum support for Testbench Core v7.40.1+. ([v7.40.0...v7.40.1](https://github.com/orchestral/testbench-core/compare/v7.40.0...v7.40.1))

#### Testbench Changes

##### Changes

* Support nested configuration files.

##### Fixes

* Fixes issue with Livewire testing where calling `$router->getRoutes()->refreshActionLookups()` caused tests to fail.

## 7.40.0

Released: 2024-01-19
Expand All @@ -14,8 +32,6 @@ Released: 2024-01-19

##### Added

### Added

* Added `Orchestra\Testbench\Attributes\WithImmutableDates` attribute to force `Illuminate\Support\Date` to use `Carbon\CarbonImmutable`.
* Added following helper functions:
- `Orchestra\Testbench\default_skeleton_path`
Expand Down
3 changes: 2 additions & 1 deletion bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ Illuminate\Support\Collection::make([
});

Illuminate\Support\Collection::make([
...$files->glob("{$workingPath}/core/workbench/config/*"),
...$files->glob("{$workingPath}/core/workbench/config/*.php"),
...$files->glob("{$workingPath}/core/workbench/config/*/*.php"),
...$files->glob("{$workingPath}/core/workbench/database/migrations/*"),
...$files->glob("{$workingPath}/core/workbench/lang/en/*"),
...$files->glob("{$workingPath}/core/workbench/routes/*"),
Expand Down
7 changes: 7 additions & 0 deletions workbench/config/nested/workbench.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

use Composer\InstalledVersions;

return [
'installed' => InstalledVersions::isInstalled('orchestra/workbench'),
];

0 comments on commit dbc5336

Please sign in to comment.