Skip to content

Commit acc45c0

Browse files
authored
Merge pull request #369 from magento-gl/MFTF-4.6.0-Release
MFTF-4.6.0-Release : MFTF 4.6.0 Release
2 parents 185cd0d + 6041d83 commit acc45c0

39 files changed

+775
-1114
lines changed

Diff for: .github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php-versions: ['8.1', '8.2']
15+
php-versions: ['8.1', '8.2', '8.3']
1616
steps:
1717
- uses: actions/checkout@v2
1818

@@ -54,7 +54,7 @@ jobs:
5454
strategy:
5555
fail-fast: false
5656
matrix:
57-
php-versions: ['8.1', '8.2']
57+
php-versions: ['8.1', '8.2', '8.3']
5858
steps:
5959
- uses: actions/checkout@v2
6060

@@ -86,7 +86,7 @@ jobs:
8686
strategy:
8787
fail-fast: false
8888
matrix:
89-
php-versions: ['8.1', '8.2']
89+
php-versions: ['8.1', '8.2', '8.3']
9090
steps:
9191
- uses: actions/checkout@v2
9292

@@ -118,7 +118,7 @@ jobs:
118118
strategy:
119119
fail-fast: false
120120
matrix:
121-
php-versions: ['8.1', '8.2']
121+
php-versions: ['8.1', '8.2', '8.3']
122122

123123
services:
124124
chrome:

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
4+
4.6.0
5+
---------
6+
### Enhancements
7+
* Added Support for PHP 8.3 and enabled PR checks for PHP 8.3.
8+
* Bumped `symfony/console` dependency to `^6.0`.
9+
* Bumped `laminas/laminas-diactoros` dependency to `^3.0`.
10+
* Added no-ansi option to bin/mftf command.
11+
12+
### Fixes
13+
* Fixed 8.3 deprecation errors.
14+
* Fixed The build with PTS enabled doesn't apply filter issue.
15+
* Change MFTF command <magentoCLI> to maintain Magento CLI output.
16+
317
4.5.0
418
---------
519
### Enhancements

Diff for: composer.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "4.5.0",
5+
"version": "4.6.0",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {
@@ -23,31 +23,31 @@
2323
"codeception/module-asserts": "^3.0",
2424
"codeception/module-sequence": "^3.0",
2525
"codeception/module-webdriver": "^3.0",
26-
"composer/composer": "^1.9 || ^2.0, !=2.2.16",
26+
"composer/composer": "^1.9||^2.0,!=2.2.16",
2727
"csharpru/vault-php": "^4.2.1",
2828
"guzzlehttp/guzzle": "^7.3.0",
29-
"laminas/laminas-diactoros": "^2.8",
29+
"laminas/laminas-diactoros": "^3.0",
3030
"monolog/monolog": "^2.3",
3131
"mustache/mustache": "~2.5",
3232
"nikic/php-parser": "^4.4",
3333
"php-webdriver/webdriver": "^1.14.0",
34-
"spomky-labs/otphp": "^10.0",
35-
"symfony/console": "^4.4||^5.4",
36-
"symfony/string": "^5.4||^6.3",
37-
"symfony/dotenv": "^5.3||^6.3",
38-
"symfony/finder": "^5.0||^6.3",
39-
"symfony/http-foundation": "^5.0||^6.3",
40-
"symfony/mime": "^5.0||^6.3",
41-
"symfony/process": "<=5.4.23",
34+
"spomky-labs/otphp": "^10.0||^11.0",
35+
"symfony/console": "^5.4||^6.0",
36+
"symfony/string": "^5.4||^6.0",
37+
"symfony/dotenv": "^5.3||^6.0",
38+
"symfony/finder": "^5.0||^6.0",
39+
"symfony/http-foundation": "^5.0||^6.0",
40+
"symfony/mime": "^5.0||^6.0",
41+
"symfony/process": "^5.0||^6.0",
4242
"weew/helpers-array": "^1.3",
4343
"doctrine/annotations": "^2.0"
4444
},
4545
"require-dev": {
46-
"brainmaestro/composer-git-hooks": "^2.3.1",
46+
"brainmaestro/composer-git-hooks": "^2.8.5",
4747
"codacy/coverage": "^1.4",
4848
"php-coveralls/php-coveralls": "^1.0||^2.2",
4949
"phpmd/phpmd": "^2.8.0",
50-
"phpunit/phpunit": "<=9.5.20",
50+
"phpunit/phpunit": "^9.5",
5151
"sebastian/phpcpd": "~6.0.0",
5252
"squizlabs/php_codesniffer": "~3.7.0"
5353
},

0 commit comments

Comments
 (0)