Skip to content

Releases: orchestral/testbench

v3.4.1

27 Jan 11:50
Compare
Choose a tag to compare

Changes

  • Made orchestra/database optional dependency as it's only needed when you need to use --realpath as option for migration.

v3.4.0

27 Jan 04:39
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v5.4.
  • Orchestra\Testbench\Http\Kernel now runs TrimStrings, 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 available loadMigrationFroms() under the package service provider, refer to Migration for Packages documentation.

v3.3.4

08 Nov 16:58
Compare
Choose a tag to compare
  • Reset artisan when using Orchestra\Testbench\TestCase::loadMigrationsFrom().

v3.3.3

16 Oct 12:11
Compare
Choose a tag to compare
  • Update application fixture.

v3.3.2

17 Sep 03:10
Compare
Choose a tag to compare
  • Add Illuminate\Cookie\Middleware\EncryptCookies to web middleware group by default. (@jeroennoten)

v3.3.1

31 Aug 01:06
Compare
Choose a tag to compare
  • Bump to Laravel Framework v5.3.3+.
  • Fixes missing fixtures.

v3.3.0

25 Aug 04:24
Compare
Choose a tag to compare
  • Update support for Laravel Framework v5.3.
  • Add Orchestra\Testbench\ApplicationTestCase and Orchestra\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

25 Aug 04:24
Compare
Choose a tag to compare
  • Add Orchestra\Testbench\TestCase::loadMigrationsFrom() to migrate during setup and add an event to rollback the migration during teardown. (@loren138)
  • Add TokenMismatchException to Orchestra\Testbench\Exceptions\ApplicationHandler::$dontReport array. (@lancepioch)

v3.1.8

18 Aug 00:50
Compare
Choose a tag to compare
  • Add Orchestra\Testbench\TestCase::loadMigrationsFrom() to migrate during setup and add an event to rollback the migration during teardown. (@loren138)
  • Update named route look-up table when $app is bootstrapped (backported from 3.2).

v3.2.5

26 May 23:03
Compare
Choose a tag to compare
  • Update validation.php language file for image dimensions validation rule.
  • Use static::class instead of get_class($this) under Orchestra\Testbench\TestCase.