Skip to content

Commit

Permalink
Merge branch '7.x' into 8.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 Nov 18, 2024
2 parents 6b8eea1 + 845f6cb commit 0f5ceac
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 9 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.1
- 8.2
Expand All @@ -32,7 +30,7 @@ jobs:
experimental:
- false

name: PHP:${{ matrix.php }} with PHPUnit:${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }})
name: PHP:${{ matrix.php }} / PHPUnit:${{ matrix.phpunit }} ${{ matrix.dependencies == 'highest' && '⬆️' || '⬇️' }}

steps:
- name: Checkout repository and submodules
Expand Down Expand Up @@ -61,15 +59,14 @@ jobs:
RAY_ENABLED: false

tests-without-configuration:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.1
- 8.2
- 8.3
phpunit:
- "^9.6"
dependencies:
Expand All @@ -78,7 +75,7 @@ jobs:
experimental:
- true

name: PHP${{ matrix.php }} with PHPUnit:${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }})
name: PHP${{ matrix.php }} / PHPUnit:${{ matrix.phpunit }} Without Configuration ${{ matrix.dependencies == 'highest' && '⬆️' || '⬇️' }}

steps:
- name: Checkout repository and submodules
Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG-7.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

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

## 7.47.0

Released: 2024-11-19

### Changes

* Update minimum support for Testbench Core v7.48.0+. ([v7.47.2...v7.48.0](https://github.com/orchestral/testbench-core/compare/v7.47.2...v7.48.0))

#### Testbench Changes

##### Added

* Added `Orchestra\Testbench\Foundation\Bootstrap\DeleteVendorSymlink` class.
* Added `Orchestra\Testbench\Concerns\InteractsWithMockery` trait.
* Added `--database` option to `package:create-sqlite-db` command.
* Added `--database` and `--all` options to `package:drop-sqlite-db` command.
* Added `Orchestra\Testbench\php_binary()` function.
* Added support for PHP 8.3.

##### Changes

* Change `resolveApplicationResolvingCallback()` method visibility from `private` to `protected`.
* Ensure database directory exists when running `package:create-sqlite-db`.
* Allow configuring `PHP_CLI_SERVER_WORKERS` via Composer Script.
* Improves `CTRL+C` and `CTRL+BREAK` supports on Windows without `pcntl` extension.
* `Orchestra\Testbench\Foundation\Console\Actions\GeneratesFile` should be able to handle `$from` and `$to` when given as `false` or `null`.

## 7.46.2

Released: 2024-10-06
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
</exclude>
</groups>
<php>
<server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
<server name="RAY_ENABLED" value="(true)"/>
</php>
</phpunit>

0 comments on commit 0f5ceac

Please sign in to comment.