Skip to content

Commit

Permalink
Merge branch '8.x' into 9.x
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Mar 13, 2024
2 parents c3fd2b3 + b78af6b commit 5be8e77
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analyse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
experimental:
- false

name: PHP${{ matrix.php }} on ${{ matrix.os }}
name: PHP:${{ matrix.php }} on ${{ matrix.os }}

steps:
- name: Checkout code
Expand All @@ -31,7 +31,7 @@ jobs:
coverage: none

- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"
composer-options: "--prefer-dist --no-cache"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/audits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
experimental:
- true

name: PHP${{ matrix.php }} on ${{ matrix.os }}
name: PHP:${{ matrix.php }} on ${{ matrix.os }}

steps:
- name: Checkout code
Expand All @@ -34,7 +34,7 @@ jobs:
coverage: none

- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"
composer-options: "--prefer-dist --prefer-stable --no-cache"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
experimental:
- false

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

steps:
- name: Checkout code
Expand All @@ -33,7 +33,7 @@ jobs:
coverage: xdebug

- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist --no-cache"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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 @@ -43,7 +43,7 @@ jobs:
composer require "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update --dev
- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist --no-cache"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG-7.x.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog for 7.x
# Changes for 7.x

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

Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG-8.x.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Changelog for 8.x
# Changes for 8.x

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

## 8.6.0

Released: 2024-03-13

### Changes

* Update minimum support for Testbench v8.22.0+. ([v8.16.0...v8.22.0](https://github.com/orchestral/testbench/compare/v8.16.0...v8.22.0))

## 8.5.0

Released: 2023-10-04
Expand Down
1 change: 0 additions & 1 deletion workbench/database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Workbench\Database\Seeders;

use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
Expand Down

0 comments on commit 5be8e77

Please sign in to comment.