File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed
Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,20 @@ jobs:
1313
1414 steps :
1515 - name : Checkout
16- uses : actions/checkout@v2
16+ uses : actions/checkout@v4
1717
1818 - name : Validate composer.json and composer.lock
1919 run : composer validate
2020
2121 - name : Cache Composer packages
2222 id : composer-cache
23- uses : actions/cache@v2
23+ uses : actions/cache@v4
2424 with :
2525 path : vendor
2626 key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
2727 restore-keys : |
2828 ${{ runner.os }}-php-
29+
2930 - name : Install dependencies
3031 if : steps.composer-cache.outputs.cache-hit != 'true'
3132 run : composer install --prefer-dist --no-progress
@@ -45,18 +46,21 @@ jobs:
4546 - 7.4
4647 - 8.0
4748 - 8.1
49+ - 8.2
50+ - 8.3
51+ - 8.4
4852
4953 steps :
5054 - name : Checkout
51- uses : actions/checkout@v2
55+ uses : actions/checkout@v4
5256
5357 - name : Install PHP
5458 uses : shivammathur/setup-php@v2
5559 with :
5660 php-version : ${{ matrix.php }}
5761
5862 - name : Cache PHP dependencies
59- uses : actions/cache@v2
63+ uses : actions/cache@v4
6064 with :
6165 path : vendor
6266 key : ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
6973 run : composer test
7074
7175 - name : Tests coverage
72- run : composer coverage
76+ run : composer coverage
Original file line number Diff line number Diff line change 11# Change Log
2-
32All notable changes to this project will be documented in this file.
43
54The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
65and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
76
7+ ## [ 2.0.3] - 2025-03-06
8+ ### Added
9+ - Support for psr/http-message 2 [ #14 ]
10+
811## [ 2.0.2] - 2022-05-09
912### Added
1013- Support psr/container 2 [ #13 ]
@@ -89,7 +92,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8992First version
9093
9194[ #13 ] : https://github.com/middlewares/request-handler/issues/13
95+ [ #14 ] : https://github.com/middlewares/request-handler/issues/14
9296
97+ [ 2.0.3 ] : https://github.com/middlewares/request-handler/compare/v2.0.2...v2.0.3
9398[ 2.0.2 ] : https://github.com/middlewares/request-handler/compare/v2.0.1...v2.0.2
9499[ 2.0.1 ] : https://github.com/middlewares/request-handler/compare/v2.0.0...v2.0.1
95100[ 2.0.0 ] : https://github.com/middlewares/request-handler/compare/v1.4.0...v2.0.0
You can’t perform that action at this time.
0 commit comments