Releases: orchestral/testbench
Releases · orchestral/testbench
v3.4.1
v3.4.0
Changes
- Update support for Laravel Framework v5.4.
Orchestra\Testbench\Http\Kernel
now runsTrimStrings
,ValidatePostSize
,ConvertEmptyStringsToNull
as global middleware, consider replacing the HTTP Kernel if you need to setup different expectation.
Removed
- Browser Kit related testing is now has been removed, if you need such feature do instead require
orchestra/testbench-browser-kit
.
Deprecation
--realpath
for migration is now deprecated. All package developer should be utilising the availableloadMigrationFroms()
under the package service provider, refer to Migration for Packages documentation.
v3.3.4
v3.3.3
v3.3.2
- Add
Illuminate\Cookie\Middleware\EncryptCookies
toweb
middleware group by default. (@jeroennoten)
v3.3.1
v3.3.0
- Update support for Laravel Framework v5.3.
- Add
Orchestra\Testbench\ApplicationTestCase
andOrchestra\Testbench\Exceptions\ApplicationHandler
for full Laravel integration testing support. (@rydurham) - Add new
Orchestra\Testbench\TestCase::setUpTraits()
method. - Add support to
Illuminate\Foundation\Testing\Concerns\InteractsWithAuthentication
by default. - Update named route look-up table when
$app
is bootstrapped. - Add
Orchestra\Testbench\TestCase::loadMigrationsFrom()
to migrate during setup and add an event to rollback the migration during teardown. (@loren138)
v3.2.6
- Add
Orchestra\Testbench\TestCase::loadMigrationsFrom()
to migrate during setup and add an event to rollback the migration during teardown. (@loren138) - Add
TokenMismatchException
toOrchestra\Testbench\Exceptions\ApplicationHandler::$dontReport
array. (@lancepioch)