Releases: orchestral/testbench-core
Releases · orchestral/testbench-core
v3.9.3
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
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
Changes
- Update Laravel 6 skeleton:
- Add
logging.channels.null
configuration.
- Revert Argon2 memory configuration made in v4.0.1.
v3.9.2
Changes
- Update Laravel 6 skeleton:
- Add
logging.channels.null
configuration.
- Revert Argon2 memory configuration made in v3.9.1.
v4.0.1
Changes
- Update Laravel 6 skeleton.
- Test againsts PHP
7.4snapshot
build on Travis-CI.
v3.9.1
Changes
- Update Laravel 6 skeleton.
- Test againsts PHP
7.4snapshot
build.
v3.8.7
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
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
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
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.