Skip to content

Commit e5a736a

Browse files
authored
MQE-1417: Changelog and Version Bump
- Added 2.3.13 changelog and bumped version in composer/lock file
1 parent 3db00b9 commit e5a736a

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
4+
2.3.13
5+
-----
6+
### Enhancements
7+
* Traceability
8+
* Failed test steps are now marked with a red `x` in the generated Allure report.
9+
* A failed `suite` `<before>` now correctly causes subsequent tests to marked as `failed` instead of `skipped`.
10+
* Customizability
11+
* Added `waitForPwaElementVisible` and `waitForPwaElementNotVisible` actions.
12+
* Modularity
13+
* Added support for parsing of symlinked modules under `vendor`.
14+
15+
### Fixes
16+
* Fixed a PHP Fatal error that occurred if the given `MAGENTO_BASE_URL` responded with anything but a `200`.
17+
* Fixed an issue where a test's `<after>` would run twice with Codeception `2.4.x`
18+
* Fixed an issue where tests using `extends` would not correctly override parent test steps
19+
* Test actions can now send an empty string to parameterized selectors.
20+
* Refactored `dragAndDrop` test action to correctly use given `x` and `y` arguments.
21+
22+
### GitHub Issues/Pull requests:
23+
* [#297](https://github.com/magento/magento2-functional-testing-framework/pull/297) -- Allow = to be part of the secret value
24+
* [#267](https://github.com/magento/magento2-functional-testing-framework/pull/267) -- Add PHPUnit missing in dependencies
25+
* [#266](https://github.com/magento/magento2-functional-testing-framework/pull/266) -- General refactor: ext-curl dependency + review of singletones (refactor constructs)
26+
* [#264](https://github.com/magento/magento2-functional-testing-framework/pull/264) -- Use custom Backend domain, refactoring to Executors responsible for calling HTTP endpoints
27+
* [#258](https://github.com/magento/magento2-functional-testing-framework/pull/258) -- Removed unused variables in FunctionCommentSniff.php
28+
* [#256](https://github.com/magento/magento2-functional-testing-framework/pull/256) -- Removed unused variables
29+
330
2.3.12
431
-----
532
### Enhancements

bin/mftf

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ try {
2929
try {
3030
$application = new Symfony\Component\Console\Application();
3131
$application->setName('Magento Functional Testing Framework CLI');
32-
$application->setVersion('2.3.12');
32+
$application->setVersion('2.3.13');
3333
/** @var \Magento\FunctionalTestingFramework\Console\CommandListInterface $commandList */
3434
$commandList = new \Magento\FunctionalTestingFramework\Console\CommandList;
3535
foreach ($commandList->getCommands() as $command) {

composer.json

+1-1
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": "2.3.12",
5+
"version": "2.3.13",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

composer.lock

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)