Skip to content

Latest commit

 

History

History
209 lines (120 loc) · 4.44 KB

CHANGELOG-9.x.md

File metadata and controls

209 lines (120 loc) · 4.44 KB

Changes for 9.x

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

9.13.0

Released: 2024-12-24

Added

  • Add Orchestra\Workbench\Actions\ReplaceNamespaces action class.
  • Utilise @no-named-arguments PHP docblock.

Changes

  • Update testbench.yaml stub file.

9.12.0

Released: 2024-12-24

Added

  • Add Orchestra\Workbench\StubRegistrar::replaceInFile() method.

Changes

  • Allow to send options to Orchestra\Workbench\Recipes\Command.

9.11.2

Released: 2024-12-19

Fixes

  • Fix generated namespace via workbench:install.

9.11.1

Released: 2024-12-18

Fixes

  • Fix workbench:install generating migrate-fresh command with incorrect options.

9.11.0

Released: 2024-12-16

Changes

  • Allow to configure Workbench default namespace prefix via workbench:devtool command.

9.10.0

Released: 2024-12-10

Added

  • Add sync-skeleton and purge-skeleton recipe for workbench:build command.
  • Set default laravel configuration to either @testbench or @testbench-dusk
  • Added following classes to interacts with Composer:
    • Orchestra\Workbench\Actions\DumpComposerAutoloads
    • Orchestra\Workbench\Actions\ModifyComposer

Changes

  • workbench:install should suggest creating .env.dusk equivalent file when orchestra/testbench-dusk is installed.
  • Refactor workbench:install and add feature tests.

Removed

  • Remove Orchestra\Workbench\Composer.

9.9.0

Released: 2024-12-01

Added

  • Default authentication & dashboard using Laravel Breeze. This can be enabled by adding workbench.auth configuration to true.
  • Add workbench:purge-skeleton as alias to package:purge-skeleton command.
  • Add workbench:sync-skeleton as alias to package:sync-skeleton command.
  • Add applicationPath() to Orchestra\Workbench\Workbench class.

Changes

  • Allows to customise the generated namespace instead of default to Workbench\App and Workbench\Database.
  • Allows to override the default redirect after logged-in.

Fixes

  • Fixes the default DatabaseSeeder stub.

9.8.0

Released: 2024-11-19

Added

  • Added Workbench::swapFile() method to override the default generated stub file.
  • Added --database option to workbench:create-sqlite-db command.
  • Added --database and --all options to workbench:drop-sqlite-db command.

Remove

  • Remove spatie/laravel-ray.

9.7.0

Released: 2024-10-24

Added

  • Added laravel/pail.
  • Added --basic option to workbench:install and workbench:devtool command to simplify installation.
  • Add Orchestra\Workbench\Workbench::swapFile() to override the default stub files:
    • config
    • config.basic
    • gitignore
    • routes.api
    • routes.console
    • routes.web
    • seeders.database

Changes

  • Utilise Orchestra\Testbench\join_paths() function.

9.6.0

Released: 2024-08-26

Changes

  • Allows following methods on Orchestra\Workbench\Workbench to accept arrays:
    • laravelPath()
    • packagePath()
    • path()

9.5.0

Released: 2024-08-14

Added

  • Added Orchestra\Workbench\Console\InstallCommand::$configurationBaseFile option to define the default testbench.yaml stub.
  • Utilise Symfony Console InputOption::VALUE_NEGATABLE feature on workbench:install and workbench:devtool command.
  • Implements Illuminate\Contracts\Console\PromptsForMissingInput on workbench:install and workbench:devtool command.

9.4.1

Released: 2024-08-12

Changes

  • Update workbench:devtool command.

9.4.0

Released: 2024-08-10

Changes

  • Generate User model and UserFactory class via workbench:install.
  • Update generated DatabaseSeeder.php to match Laravel 11 skeleton.

9.3.0

Released: 2024-08-06

Changes

  • Flush session when loading the start page via composer run serve.
  • Disallow running workbench:build, workbench:devtool or workbench:install via workbench:build command.

9.2.0

Released: 2024-07-30

Added

  • Added support for factories discovery.

Changes

  • Small improvements to workbench:devtool command.

9.1.0

Released: 2024-05-21

Added

  • Added nunomaduro/collision.

Changes

  • PHPStan Improvements.

9.0.0

Released: 2024-03-13

Changes

  • Update support for Laravel Framework v11.
  • Increase minimum PHP version to 8.2 and above (tested with 8.2 and 8.3).
  • Swap workbench:install with workbench:devtool for smaller installation footprint.