Releases: orchestral/testbench-core
Releases · orchestral/testbench-core
v3.5.6
v3.5.5
v3.5.4
v3.4.4
v3.5.3
v3.4.3
v3.5.2
v3.4.2
v3.5.1
Changes
- Update Laravel skeleton and
Orchestra\Testbench\Exceptions\Handler
. - Add
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse
toOrchestra\Testbench\Http\Kernel
. (@kalfheim) - Allow to use
Illuminate\Foundation\Testing\RefreshDatabase
. (@BertvanHoekelen)
v3.5.0
Added
- Add
getPackageBootstrappers()
method to load any bootstrap class specifically for a package. Orchestra\Testbench\TestCase
now preloads following traits:Illuminate\Foundation\Testing\Concerns\InteractsWithSession
.Illuminate\Foundation\Testing\Concerns\InteractsWithExceptionHandling
.
Changes
- Update support for Laravel Framework v5.5.
- Increase minimum PHP version to 7.0+ (tested with 7.0, 7.1 and 7.2).
- Increase minimum PHPUnit to v6.0+.
- Change skeleton folder from
fixture
tolaravel
.
Fixes
- Refresh named routes when declaring new routes from within a test method.
Removed
- Remove deprecated
Orchestra\Testbench\ApplicationTestCase
, useOrchestra\Testbench\TestCase
. - Remove deprecated
Orchestra\Testbench\Exceptions\ApplicationHandler
, useOrchestra\Testbench\Exceptions\Handler
. - Remove deprecated
Orchestra\Testbench\Traits\ApplicationTrait
, useOrchestra\Testbench\Traits\CreatesApplication
. - Remove depreacted
Orchestra\Testbench\TestCase::runLaravelDefaultMigrations()
method, useloadLaravelMigrations()
.