Skip to content

Commit d035097

Browse files
authored
Merge pull request magento#71 from magento-commerce/3.6.0-RC
3.6.0 Release
2 parents 5a6bdf5 + c858eb1 commit d035097

File tree

17 files changed

+352
-424
lines changed

17 files changed

+352
-424
lines changed

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
3.6.0
4+
---------
5+
6+
### Enhancements
7+
8+
* Maintainability
9+
* Updated composer dependencies to be PHP 8 compatible with the except of codeception/aspect-mock.
10+
11+
### GitHub Pull Requests:
12+
13+
* [#830](https://github.com/magento/magento2-functional-testing-framework/pull/830) -- Add ability to configure multiple OTPs
14+
* [#832](https://github.com/magento/magento2-functional-testing-framework/pull/832) -- Updated monolog/monolog to ^2.2
15+
* [#833](https://github.com/magento/magento2-functional-testing-framework/pull/833) -- Removed usage of AspectMock in FilesystemTest
16+
* [#834](https://github.com/magento/magento2-functional-testing-framework/pull/834) -- Removed usage of AspectMock in AnnotationsCheckTest
17+
* [#838](https://github.com/magento/magento2-functional-testing-framework/pull/838) -- Removed usage of AspectMock in DeprecatedEntityUsageCheckTest
18+
* [#841](https://github.com/magento/magento2-functional-testing-framework/pull/841) -- Removed usage of AspectMock in GenerationErrorHandlerTest
19+
* [#854](https://github.com/magento/magento2-functional-testing-framework/pull/854) -- Updated "monolog" to the latest version 2.3.1
20+
321
3.5.1
422
---------
523

624
### GitHub Pull Requests:
725

826
* [#825](https://github.com/magento/magento2-functional-testing-framework/pull/825) -- Update allure-codeception in order to support php8
927

10-
1128
3.5.0
1229
---------
1330

composer.json

+10-17
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": "3.5.1",
5+
"version": "3.6.0",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {
@@ -15,45 +15,38 @@
1515
"ext-intl": "*",
1616
"ext-json": "*",
1717
"ext-openssl": "*",
18-
"allure-framework/allure-codeception": "~1.4.0||~1.5.0",
18+
"allure-framework/allure-codeception": "^1.4",
1919
"aws/aws-sdk-php": "^3.132",
20-
"codeception/codeception": "~4.1.4",
20+
"codeception/codeception": "^4.1",
2121
"codeception/module-asserts": "^1.1",
2222
"codeception/module-sequence": "^1.0",
2323
"codeception/module-webdriver": "^1.0",
2424
"composer/composer": "^1.9||^2.0",
25-
"csharpru/vault-php": "^4.1.0",
25+
"csharpru/vault-php": "^4.2.1",
2626
"csharpru/vault-php-guzzle6-transport": "^2.0",
2727
"hoa/console": "~3.0",
28-
"monolog/monolog": "^1.17",
28+
"monolog/monolog": "^2.3",
2929
"mustache/mustache": "~2.5",
30-
"php-webdriver/webdriver": "^1.8.0",
30+
"nikic/php-parser": "^4.4",
31+
"php-webdriver/webdriver": "^1.9.0",
3132
"spomky-labs/otphp": "^10.0",
3233
"symfony/console": "^4.4",
3334
"symfony/finder": "^5.0",
3435
"symfony/http-foundation": "^5.0",
3536
"symfony/mime": "^5.0",
3637
"symfony/process": "^4.4",
3738
"vlucas/phpdotenv": "^2.4",
38-
"weew/helpers-array": "^1.3",
39-
"nikic/php-parser": "~4.4.0"
39+
"weew/helpers-array": "^1.3"
4040
},
4141
"require-dev": {
4242
"brainmaestro/composer-git-hooks": "^2.3.1",
4343
"codacy/coverage": "^1.4",
4444
"codeception/aspect-mock": "^3.0",
45-
"doctrine/cache": "<1.7.0",
46-
"goaop/framework": "~2.3.4",
47-
"php-coveralls/php-coveralls": "^1.0",
45+
"php-coveralls/php-coveralls": "^1.0||^2.2",
4846
"phpmd/phpmd": "^2.8.0",
4947
"phpunit/phpunit": "^9.0",
50-
"rregeer/phpunit-coverage-check": "^0.1.4",
5148
"sebastian/phpcpd": "~6.0.0",
52-
"squizlabs/php_codesniffer": "~3.5.4",
53-
"symfony/stopwatch": "~3.4.6"
54-
},
55-
"replace": {
56-
"facebook/webdriver": "^1.7.1"
49+
"squizlabs/php_codesniffer": "~3.5.4"
5750
},
5851
"autoload": {
5952
"files": ["src/Magento/FunctionalTestingFramework/_bootstrap.php"],

0 commit comments

Comments
 (0)