Skip to content

Commit

Permalink
Merge branch '9.x' into php84
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 19, 2024
2 parents f0ae226 + 4a510ed commit 7856a01
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: crynobone
liberapay: # crynobone
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # ["https://paypal.me/crynobone"]
6 changes: 2 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ on:

jobs:
tests-on-phpunit-10:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.2
- 8.3
Expand All @@ -29,7 +27,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
27 changes: 27 additions & 0 deletions CHANGELOG-8.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`.

## 8.28.0

Released: 2024-11-19

### Changes

* Update minimum support for Testbench Core v8.29.0+. ([v8.28.3...v8.29.0](https://github.com/orchestral/testbench-core/compare/v8.28.3...v8.29.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.
* Allows `laravel/serializable-closure` 2.

### 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`.

## 8.27.2

Released: 2024-10-06
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"php": "^8.2",
"composer-runtime-api": "^2.2",
"fakerphp/faker": "^1.23",
"laravel/framework": "dev-php84 as 11.999.999",
"laravel/framework": "^11.31",
"mockery/mockery": "^1.6.10",
"orchestra/testbench-core": "dev-php84 as 9.5.999",
"orchestra/workbench": "^9.6",
"orchestra/testbench-core": "^9.6",
"orchestra/workbench": "^9.8",
"phpunit/phpunit": "^10.5.35 || ^11.3.6",
"symfony/process": "^7.0.3",
"symfony/yaml": "^7.0.3",
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 7856a01

Please sign in to comment.