Skip to content

Commit 00b0e54

Browse files
authored
Merge pull request #119 from magento-commerce/rc-3.7.0
3.7.0 release
2 parents bdca6b2 + 5ba5c53 commit 00b0e54

File tree

130 files changed

+5253
-4011
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+5253
-4011
lines changed

.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: ['7.3', '7.4']
15+
php-versions: ['7.3', '7.4', '8.0']
1616
steps:
1717
- uses: actions/checkout@v2
1818

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

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

@@ -118,7 +118,7 @@ jobs:
118118
strategy:
119119
fail-fast: false
120120
matrix:
121-
php-versions: ['7.3', '7.4']
121+
php-versions: ['7.3', '7.4', '8.0']
122122

123123
services:
124124
chrome:

CHANGELOG.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3-
3.6.1
3+
3.7.0
4+
---------
5+
6+
### GitHub Pull Requests:
7+
8+
* [#842](https://github.com/magento/magento2-functional-testing-framework/pull/842) -- Eliminated AspectMock from FileStorageTest
9+
* [#843](https://github.com/magento/magento2-functional-testing-framework/pull/843) -- Eliminated AspectMock from ObjectExtensionUtilTest
10+
* [#844](https://github.com/magento/magento2-functional-testing-framework/pull/844) -- Eliminated AspectMock from TestObjectHandlerTest
11+
* [#845](https://github.com/magento/magento2-functional-testing-framework/pull/845) -- Eliminated AspectMock from SuiteObjectHandlerTest
12+
* [#846](https://github.com/magento/magento2-functional-testing-framework/pull/846) -- Eliminated AspectMock from ActionGroupObjectTest
13+
* [#847](https://github.com/magento/magento2-functional-testing-framework/pull/847) -- Removed not used mocked object
14+
* [#848](https://github.com/magento/magento2-functional-testing-framework/pull/848) -- Eliminated AspectMock usage from ActionObjectTest
15+
* [#850](https://github.com/magento/magento2-functional-testing-framework/pull/850) -- Eliminated AspectMock from TestGeneratorTest
16+
* [#852](https://github.com/magento/magento2-functional-testing-framework/pull/852) -- Eliminated AspectMock from ModuleResolverTest
17+
* [#853](https://github.com/magento/magento2-functional-testing-framework/pull/853) -- Eliminated AspectMock from PersistedObjectHandlerTest
18+
* [#855](https://github.com/magento/magento2-functional-testing-framework/pull/855) -- Eliminated AspectMock from OperationDataArrayResolverTest
19+
* [#856](https://github.com/magento/magento2-functional-testing-framework/pull/856) -- Eliminated AspectMock from DataExtensionUtilTest
20+
* [#857](https://github.com/magento/magento2-functional-testing-framework/pull/857) -- Eliminated AspectMock from ParallelGroupSorterTest
21+
* [#859](https://github.com/magento/magento2-functional-testing-framework/pull/859) -- Eliminated AspectMock usage from SuiteGeneratorTest
22+
* [#861](https://github.com/magento/magento2-functional-testing-framework/pull/861) -- Eliminated aspect mock from mock module resolver builder
23+
* [#862](https://github.com/magento/magento2-functional-testing-framework/pull/862) -- Eliminated AspectMock where it was imported but never used
24+
* [#863](https://github.com/magento/magento2-functional-testing-framework/pull/863) -- Eliminated AspectMock from MagentoTestCase
25+
* [#864](https://github.com/magento/magento2-functional-testing-framework/pull/864) -- Eliminated AspectMock usage from TestLoggingUtil
26+
* [#865](https://github.com/magento/magento2-functional-testing-framework/pull/865) -- Eliminated aspect mock from object handler uti
27+
* [#866](https://github.com/magento/magento2-functional-testing-framework/pull/866) -- Added access/secret key config parameters
28+
* [#867](https://github.com/magento/magento2-functional-testing-framework/pull/867) -- Added empty query and fragment testing to the UrlFormatterTest
29+
* [#868](https://github.com/magento/magento2-functional-testing-framework/pull/868) -- PHP 8 support - fix code related to changes in CURL
30+
* [#869](https://github.com/magento/magento2-functional-testing-framework/pull/869) -- The squizlabs/php_codesniffer composer dependency has been updated to version 3.6.0
31+
* [#870](https://github.com/magento/magento2-functional-testing-framework/pull/870) -- Removing the csharpru/vault-php-guzzle6-transport not needed dependency
32+
* [#871](https://github.com/magento/magento2-functional-testing-framework/pull/871) -- Changed loose comparisons into strict
33+
* [#872](https://github.com/magento/magento2-functional-testing-framework/pull/872) -- Fix broken MFTF tests
34+
35+
3.6.1
436
---------
537

638
### Enhancements

composer.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "3.6.1",
5+
"version": "3.7.0",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {
99
"sort-packages": true
1010
},
1111
"require": {
12-
"php": "^7.3",
12+
"php": ">7.3",
1313
"ext-curl": "*",
1414
"ext-dom": "*",
1515
"ext-intl": "*",
@@ -23,7 +23,7 @@
2323
"codeception/module-webdriver": "^1.0",
2424
"composer/composer": "^1.9||^2.0",
2525
"csharpru/vault-php": "^4.2.1",
26-
"csharpru/vault-php-guzzle6-transport": "^2.0",
26+
"guzzlehttp/guzzle": "^7.3.0",
2727
"hoa/console": "~3.0",
2828
"monolog/monolog": "^2.3",
2929
"mustache/mustache": "~2.5",
@@ -41,12 +41,11 @@
4141
"require-dev": {
4242
"brainmaestro/composer-git-hooks": "^2.3.1",
4343
"codacy/coverage": "^1.4",
44-
"codeception/aspect-mock": "^3.0",
4544
"php-coveralls/php-coveralls": "^1.0||^2.2",
4645
"phpmd/phpmd": "^2.8.0",
4746
"phpunit/phpunit": "^9.0",
4847
"sebastian/phpcpd": "~6.0.0",
49-
"squizlabs/php_codesniffer": "~3.5.4"
48+
"squizlabs/php_codesniffer": "~3.6.0"
5049
},
5150
"autoload": {
5251
"files": ["src/Magento/FunctionalTestingFramework/_bootstrap.php"],

0 commit comments

Comments
 (0)