Skip to content

Commit 04f9df0

Browse files
committed
bugfix included cache
2 parents b37ab45 + 9fc0a44 commit 04f9df0

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55

66
## [Unreleased]
77

8+
## 12.1 - 2025-04-15
9+
### Changed
10+
- Bugfix (cache correctly included in trait)
11+
812
## 12.0 - 2024-02-26
913
### Changed
1014
- `composer.json` updated for Laravel 12.x
1115
- Updated tests for PHPUnit 11
1216

17+
## 11.2 - 2025-04-15
18+
### Changed
19+
- Bugfix (cache correctly included in trait)
20+
1321
## 11.1 - 2024-05-30
1422
### Changed
1523
- Bugfix for discovering commands
@@ -405,8 +413,10 @@ Laravel release starting from 5.5 and as pointed out in the docs)
405413
### Added
406414
- Initial version for Laravel 5.5.
407415

408-
[Unreleased]: https://github.com/gecche/laravel-multidomain/compare/v12.0...HEAD
409-
[12.0]: https://github.com/gecche/laravel-multidomain/compare/v11.1...v12.0
416+
[Unreleased]: https://github.com/gecche/laravel-multidomain/compare/v12.1...HEAD
417+
[12.1]: https://github.com/gecche/laravel-multidomain/compare/v12.1...v12.0
418+
[12.0]: https://github.com/gecche/laravel-multidomain/compare/v12.0...v11.2
419+
[11.2]: https://github.com/gecche/laravel-multidomain/compare/v11.2...v11.1
410420
[11.1]: https://github.com/gecche/laravel-multidomain/compare/v11.0...v11.1
411421
[11.0]: https://github.com/gecche/laravel-multidomain/compare/v10.2...v11.0
412422
[10.2]: https://github.com/gecche/laravel-multidomain/compare/v10.1...v10.2

src/Foundation/Console/DomainCommandTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Illuminate\Console\GeneratorCommand;
44
use Symfony\Component\Console\Input\InputArgument;
55
use Symfony\Component\Console\Input\InputOption;
6-
use Config;
6+
use Illuminate\Support\Facades\Config;
77

88
trait DomainCommandTrait
99
{

0 commit comments

Comments
 (0)