diff --git a/docs/prologue/changelog/3.x.md b/docs/prologue/changelog/3.x.md index 184681bb..da64ef37 100644 --- a/docs/prologue/changelog/3.x.md +++ b/docs/prologue/changelog/3.x.md @@ -1,13 +1,27 @@ # 3.x -## v3.0-RC8 - 2022-10-12 +## v3.0.0 - 2022-10-13 -**Full Changelog**: https://github.com/TheDragonCode/laravel-migration-actions/compare/v3.0-RC7...v3.0-RC8 +### Added -## v3.0-RC6 - 2022-10-12 +- Added recursive search for files in the selected directory +- Added console command for upgrade -**Full Changelog**: https://github.com/TheDragonCode/laravel-migration-actions/compare/v3.0-RC4...v3.0-RC6 +### Changed -## v3.0-RC2 - 2022-10-12 +- Changed configuration file location +- Changed the location of the action storage directory +- Changed namespace to `DragonCode\LaravelActions\Action` +- Action classes changed to anonymous +- Changed spelling of class parameters from `snake_case` to `camelCase` +- Changed the name of the column in the database -**Full Changelog**: https://github.com/TheDragonCode/laravel-migration-actions/compare/v3.0-RC1...v3.0-RC2 +### Removed + +- Removed support for PHP 7.3 and 7.4 +- Removed support for Laravel 6.x +- Removed use of interface Contracts + +See the [`upgrade manual`](https://actions.dragon-code.pro/prologue/upgrade.html) for more information. + +**Full Changelog**: https://github.com/TheDragonCode/laravel-migration-actions/compare/v2.9.0...v3.0.0 diff --git a/src/Notifications/Basic.php b/src/Notifications/Basic.php index b803774a..4632d739 100644 --- a/src/Notifications/Basic.php +++ b/src/Notifications/Basic.php @@ -42,6 +42,8 @@ public function task(string $description, Closure $task): void public function twoColumn(string $first, string $second): void { - $this->info($first . ' .......... ' . $second); + $divider = str_pad('', 20, '.'); + + $this->info($first . ' ' . $divider . ' ' . $second); } } diff --git a/src/Services/Migrator.php b/src/Services/Migrator.php index 5d4e6ac3..bea9e949 100644 --- a/src/Services/Migrator.php +++ b/src/Services/Migrator.php @@ -62,7 +62,7 @@ public function runUp(string $filename, int $batch, Options $options): void return; } - $this->notification->twoColumn($name, 'SKIP'); + $this->notification->twoColumn($name, 'SKIPPED'); } public function runDown(string $filename, Options $options): void