Skip to content

Releases: orchestral/testbench-core

v3.9.3

11 Oct 01:55
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v6.2.
  • Update Orchestra\Testbench\Http\Kernel::$routeMiddleware to include password.confirm middleware.
  • Update Laravel 6 skeleton:
    • Add auth.password_timeout configuration.
    • Add password value for validation language file.

v4.1.0

06 Oct 13:26
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v6.1+.
  • Rename default Redis alias under app.aliases to RedisManager to avoid incompatibility when running tests using phpredis extension.

v4.0.2

15 Sep 08:28
Compare
Choose a tag to compare

Changes

  • Update Laravel 6 skeleton:
    • Add logging.channels.null configuration.
    • Revert Argon2 memory configuration made in v4.0.1.

v3.9.2

15 Sep 08:15
Compare
Choose a tag to compare

Changes

  • Update Laravel 6 skeleton:
    • Add logging.channels.null configuration.
    • Revert Argon2 memory configuration made in v3.9.1.

v4.0.1

11 Sep 07:39
Compare
Choose a tag to compare

Changes

  • Update Laravel 6 skeleton.
  • Test againsts PHP 7.4snapshot build on Travis-CI.

v3.9.1

11 Sep 07:38
Compare
Choose a tag to compare

Changes

  • Update Laravel 6 skeleton.
  • Test againsts PHP 7.4snapshot build.

v3.8.7

11 Sep 07:38
Compare
Choose a tag to compare

Added

  • Added Orchestra\Testbench\Concerns\Database\WithSqlite trait.

Changes

  • Update Laravel 5.8 skeleton.
  • Recommend to be used with Laravel Framework v5.8.35+.

v4.0.0

03 Sep 20:05
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v6.0.
  • Increase minimum PHP version to 7.2+ (tested with 7.2 and 7.3).
  • Increase minimum PHPUnit to v8.0+.
  • Configuration changes:
    • BCRYPT_ROUNDS now defaults to 10.
    • REDIS_CLIENT now defaults to phpredis.
    • REDIS_CLUSTER now defaults to redis.

Breaking Changes

  • Any tests requiring Redis would now requires ext-redis to be installed. As of now you either can setup Redis or set REDIS_CLIENT and REDIS_CLUSTER to the deprecated predis option.

v3.9.0

03 Sep 19:59
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v6.0.
  • Increase minimum PHP version to 7.2+ (tested with 7.2 and 7.3).
  • Increase minimum PHPUnit to v8.0+.

v3.8.6

04 Aug 04:24
Compare
Choose a tag to compare

Changes

  • Teardown test suite after using fail() method.
  • Use static function rather than function whenever possible, the PHP engine does not need to instantiate and later GC a $this variable for said closure.