Skip to content

Commit

Permalink
Merge branch '6.x' into 7.x
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Mar 13, 2024
2 parents 55c23ff + d5ff702 commit afdcec0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
experimental:
- false

name: PHP${{ matrix.php }} with PHPUnit${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }})
name: PHP:${{ matrix.php }} with PHPUnit:${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }})

steps:
- name: Checkout repository and submodules
Expand All @@ -48,7 +48,9 @@ jobs:
composer-options: "--prefer-dist --no-cache --with=phpunit/phpunit:${{ matrix.phpunit }}"

- name: Installed dependencies
run: composer show -D
run: |
composer show -D
- name: Execute tests
run: vendor/bin/phpunit
23 changes: 23 additions & 0 deletions CHANGELOG-6.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench`.

## 6.43.0

Released: 2024-03-13

### Changes

* Update minimum support for Testbench Core v6.49.0+. ([v6.47.1...v6.49.0](https://github.com/orchestral/testbench-core/compare/v6.47.1...v6.49.0))

#### Testbench Changes

##### Added

* Added `Orchestra\Testbench\Attributes\RequiresLaravel` attribute.
* Added `Orchestra\Testbench\Foundation\Env::has()` method.
* Added `Orchestra\Testbench\load_migration_paths()` function.
* Added `Orchestra\Testbench\laravel_version_compare()` function.
* Added `Orchestra\Testbench\phpunit_version_compare()` function.
* Added `Orchestra\Testbench\once()` function.

##### Changes

* Validate `MYSQL_*`, `MSSQL_*`, `SQLITE_*` and `POSTGRES_*` environment variables before trying to override the configuration values.

## 6.42.1

Released: 2024-01-22
Expand Down

0 comments on commit afdcec0

Please sign in to comment.