Skip to content

Commit 6b3b1d9

Browse files
Merge pull request #97 from magento-commerce/template-version-fix
update template version
2 parents 1275c04 + a67a9fb commit 6b3b1d9

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {
9-
"type": "composer",
10-
"url": "https://repo.magento.com/"
9+
"type": "composer",
10+
"url": "https://repo.magento.com/"
1111
}
1212
},
1313
"require": {
@@ -18,19 +18,18 @@
1818
"symfony/config": "^3.3||^4.4||^5.0||^6.0",
1919
"symfony/console": "^2.6||^4.0||^5.0||^6.0",
2020
"symfony/dependency-injection": "^3.3||^4.3||^5.0||^6.0",
21-
"symfony/process": "^2.1||^4.1||^5.0||^6.0",
21+
"symfony/process": "^2.1 || ^4.1 || ^5.1 || ^5.4 || ^6.4",
2222
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.0||^6.0",
2323
"symfony/yaml": "^3.3||^4.0||^5.0||^6.0",
24-
"monolog/monolog": "^1.25||^2.3||^2.7",
25-
"magento/quality-patches": "^1.1.0"
24+
"monolog/monolog": "^1.25||^2.3||^2.7"
2625
},
2726
"require-dev": {
28-
"codeception/codeception": "^4.1",
29-
"codeception/module-asserts": "^1.2",
30-
"codeception/module-db": "^1.0",
31-
"codeception/module-phpbrowser": "^1.0",
32-
"codeception/module-rest": "^1.2",
33-
"consolidation/robo": "^1.2 || ^2.0",
27+
"codeception/codeception": "^4.1 || ^5.1",
28+
"codeception/module-asserts": "^1.2 || ^3.0",
29+
"codeception/module-db": "^1.0 || ^3.0",
30+
"codeception/module-phpbrowser": "^1.0 || ^3.0",
31+
"codeception/module-rest": "^1.2 || ^3.0",
32+
"consolidation/robo": "^1.2 || ^3.0",
3433
"phpmd/phpmd": "@stable",
3534
"phpunit/phpunit": "^8.5 || ^9.5",
3635
"squizlabs/php_codesniffer": "^3.0"

src/Test/Functional/Acceptance/Acceptance82Cest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function patchesDataProvider(): array
2020
return [
2121
['templateVersion' => '2.4.6', 'magentoVersion' => '2.4.6'],
2222
['templateVersion' => '2.4.6', 'magentoVersion' => '2.4.6-p1'],
23-
['templateVersion' => '2.4.7-beta', 'magentoVersion' => null],
23+
['templateVersion' => '2.4.7', 'magentoVersion' => null],
2424
];
2525
}
2626
}

src/Test/Functional/Acceptance/AcceptanceCest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function testPatches(\CliTester $I, \Codeception\Example $data): void
4949
protected function patchesDataProvider(): array
5050
{
5151
return [
52-
['templateVersion' => '2.4.7-beta-test', 'magentoVersion' => '2.4.7-beta401'],
52+
['templateVersion' => '2.4.7', 'magentoVersion' => '2.4.7'],
5353
];
5454
}
5555
}

src/Test/Functional/Acceptance/PatchApplierCest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function _before(\CliTester $I): void
2121
{
2222
parent::_before($I);
2323

24-
$this->prepareTemplate($I, '2.4.7-beta-test');
24+
$this->prepareTemplate($I, '2.4.7');
2525
$I->copyFileToWorkDir('files/debug_logging/.magento.env.yaml', '.magento.env.yaml');
2626
}
2727

0 commit comments

Comments
 (0)