Skip to content

Commit

Permalink
Merge branch 'develop' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
lindyhopchris committed Nov 30, 2024
2 parents 46291c8 + a22dc37 commit b0ab711
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
laravel: [11]
php: [8.2, 8.3, 8.4]

steps:
- name: Checkout Code
Expand All @@ -30,9 +29,6 @@ jobs:
coverage: none
ini-values: error_reporting=E_ALL

- name: Set Laravel Version
run: composer require "illuminate/contracts:^${{ matrix.laravel }}" --no-update

- name: Install dependencies
uses: nick-fields/retry@v3
with:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. This projec

## Unreleased

## [4.1.0] - 2024-11-30

### Added

- Allow `laravel-json-api/core` v4 or v5.

### Fixed

- Remove deprecation notices in PHP 8.4.

## [4.0.0] - 2024-03-14

### Changed
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"ext-json": "*",
"illuminate/contracts": "^11.0",
"illuminate/support": "^11.0",
"laravel-json-api/core": "^5.0",
"laravel-json-api/neomerx-json-api": "^5.0.2"
"laravel-json-api/core": "^6.0",
"laravel-json-api/neomerx-json-api": "^5.0.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
Expand Down
1 change: 1 addition & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
failOnWarning="true"
failOnDeprecation="true"
failOnNotice="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
>
<coverage/>
<testsuites>
Expand Down

0 comments on commit b0ab711

Please sign in to comment.