Skip to content

Commit 21b6676

Browse files
committed
MFTF-4.3.5 : MFTF4.3.5 Release checklist
1 parent 0f30611 commit 21b6676

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Magento Functional Testing Framework Changelog
22
================================================
33

4+
4.3.5
5+
---------
6+
### Fixes
7+
* Fixed ANSI Color codes getting appended to output of bin/magento command.
8+
49
4.3.4
510
---------
611
### Fixes

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

Diff for: composer.lock

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

Diff for: etc/config/command.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function escapeCommand($command)
9898
*/
9999
function validateCommand($magentoBinary, $command)
100100
{
101-
exec($magentoBinary . ' list', $commandList);
101+
exec($magentoBinary . ' list --no-ansi', $commandList);
102102
// Trim list of commands after first whitespace
103103
$commandList = array_map("trimAfterWhitespace", $commandList);
104104
return in_array(trimAfterWhitespace($command), $commandList);

0 commit comments

Comments
 (0)