You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Laravel 12 support. Framework constraint widened to ^11.0|^12.0. Twill 3.5+ pulls the right cartalyst/tags and dependency tree under L12 thanks to composer update -W in CI.
PHP 8.4 support. Tested and confirmed. CI matrix now covers PHP 8.2 / 8.3 / 8.4 × Laravel 11 / 12 on Ubuntu and Windows.
laravel-translation-handler updated to ^2.1 (v2.1.2).
Bug fixes
Null values in form save no longer cause errors. Twill can pass null for inactive-locale fields when saving a translation or translation group. Both TranslationRepository::update and TranslationGroupRepository::update now normalise null to '' before delegating to the parent repository.
Test infrastructure
Removed uses(RefreshDatabase::class) from all tests. Testbench 10 (required for L12) routed RefreshDatabase through artisan('migrate:fresh'), which crashed because L12's Command::run() accesses $this->laravel and a Twill command was being resolved before the container was ready. With SQLite in-memory, each test gets a fresh app — TestCase::defineDatabaseMigrations() and tearDown() provide isolation without artisan.
CI workflow:composer require split into framework + dev steps to keep orchestra/testbench in require-dev (avoids a Windows interactive prompt). composer update -W added to allow transitive upgrades (cartalyst/tags v14→v15, etc.).
PHPStan:--memory-limit=2G passed in CI (default 128M crashed under phpstan v2). View-string false-positive on package-registered view added to baseline.