Skip to content

Commit c3f921f

Browse files
Merge pull request #768 from magento/develop
Backport develop branch into 2002.1
2 parents 95ce8bc + 162d760 commit c3f921f

File tree

205 files changed

+5525
-851
lines changed

Some content is hidden

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

205 files changed

+5525
-851
lines changed

.travis.yml

+6-12
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ php:
1515
- '7.1'
1616
- '7.2'
1717
- '7.3'
18+
- '7.4'
1819

1920
env:
2021
- TEST_SUITE=functional-ce
21-
- TEST_SUITE=functional-ee
2222
- TEST_SUITE=functional-ee FUNCTIONAL_INDEX=1
2323
- TEST_SUITE=functional-ee FUNCTIONAL_INDEX=2
2424
- TEST_SUITE=functional-ee FUNCTIONAL_INDEX=3
@@ -32,30 +32,24 @@ stages:
3232
jobs:
3333
exclude:
3434
- php: '7.1'
35-
env: TEST_SUITE=functional-ee FUNCTIONAL_INDEX=1
36-
- php: '7.1'
37-
env: TEST_SUITE=functional-ee FUNCTIONAL_INDEX=2
38-
- php: '7.1'
39-
env: TEST_SUITE=functional-ee FUNCTIONAL_INDEX=3
40-
- php: '7.1'
41-
env: TEST_SUITE=functional-ee FUNCTIONAL_INDEX=4
42-
- php: '7.1'
43-
env: TEST_SUITE=functional-ee FUNCTIONAL_INDEX=5
44-
- php: '7.1'
45-
env: TEST_SUITE=functional-ee FUNCTIONAL_INDEX=6
35+
env: TEST_SUITE=functional-ee
4636

4737
- php: '7.2'
4838
env: TEST_SUITE=functional-ee
4939

5040
- php: '7.3'
5141
env: TEST_SUITE=functional-ee
5242

43+
- php: '7.4'
44+
env: TEST_SUITE=functional-ee
45+
5346
install:
5447
- composer config http-basic.repo.magento.com ${REPO_USERNAME_CE} ${REPO_PASSWORD_CE}
5548
- composer config github-oauth.github.com ${GITHUB_TOKEN}
5649
- if [ -n "${MCC_VERSION}" ]; then composer config repositories.mcc git [email protected]:magento/magento-cloud-components.git && composer require "magento/magento-cloud-components:${MCC_VERSION}" --no-update; fi;
5750
- if [ -n "${MCD_VERSION}" ]; then composer config repositories.mcd git [email protected]:magento/magento-cloud-docker.git && composer require "magento/magento-cloud-docker:${MCD_VERSION}" --no-update; fi;
5851
- if [ -n "${MCP_VERSION}" ]; then composer config repositories.mcp git [email protected]:magento/magento-cloud-patches.git && composer require "magento/magento-cloud-patches:${MCP_VERSION}" --no-update; fi;
52+
- if [ -n "${MQP_VERSION}" ]; then composer config repositories.mqp git [email protected]:magento/quality-patches.git && composer require "magento/quality-patches:${MQP_VERSION}" --no-update; fi;
5953
- composer update -n --no-suggest
6054

6155
before_script:

codeception.dist.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ modules:
2020
mcd_repo: "https://github.com/magento/magento-cloud-docker.git"
2121
mcc_repo: "https://github.com/magento/magento-cloud-components.git"
2222
mcp_repo: "https://github.com/magento/magento-cloud-patches.git"
23+
mqp_repo: "https://github.com/magento/quality-patches.git"
2324
composer_magento_username: "%REPO_USERNAME%"
2425
composer_magento_password: "%REPO_PASSWORD%"
2526
composer_github_token: "%GITHUB_TOKEN%"

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/ece-tools",
33
"description": "Provides tools to build and deploy Magento 2 Enterprise Edition",
44
"type": "magento2-component",
5-
"version": "2002.1.1",
5+
"version": "2002.1.2",
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {
@@ -21,9 +21,9 @@
2121
"graylog2/gelf-php": "^1.4.2",
2222
"guzzlehttp/guzzle": "^6.2",
2323
"illuminate/config": "^5.5",
24-
"magento/magento-cloud-components": "^1.0.1",
24+
"magento/magento-cloud-components": "^1.0.6",
2525
"magento/magento-cloud-docker": "^1.0.0",
26-
"magento/magento-cloud-patches": "^1.0.0",
26+
"magento/magento-cloud-patches": "^1.0.6",
2727
"monolog/monolog": "^1.16",
2828
"nesbot/carbon": "^1.0||^2.0",
2929
"psr/container": "^1.0",

config/schema.error.yaml

+604
Large diffs are not rendered by default.

config/schema.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,20 @@ variables:
643643
- stage:
644644
global:
645645
X_FRAME_CONFIGURATION: SAMEORIGIN
646+
QUALITY_PATCHES:
647+
description: Specify a list of Magento quality patches that will be applied during deployment.
648+
type: array
649+
stages:
650+
- build
651+
default:
652+
build: []
653+
examples:
654+
- stage:
655+
build:
656+
QUALITY_PATCHES:
657+
- MC-31387
658+
- MDVA-4567
659+
- MC-45634
646660

647661
# Environment variables
648662
ENV_RELATIONSHIPS:

config/services.xml

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
<service id="Magento\MagentoCloud\Config\EnvironmentDataInterface" alias="Magento\MagentoCloud\Config\EnvironmentData" />
114114
<service id="Magento\MagentoCloud\Config\Environment\ReaderInterface" alias="Magento\MagentoCloud\Config\Environment\Reader" />
115115
<service id="Magento\MagentoCloud\Config\Magento\Env\ReaderInterface" alias="Magento\MagentoCloud\Config\Magento\Env\Reader" />
116+
<service id="Magento\MagentoCloud\App\Logger\Error\ReaderInterface" alias="Magento\MagentoCloud\App\Logger\Error\Reader" />
116117
<service id="Magento\MagentoCloud\Config\Magento\Env\WriterInterface" alias="Magento\MagentoCloud\Config\Magento\Env\Writer" />
117118
<service id="Magento\MagentoCloud\Config\Magento\Shared\ReaderInterface" alias="Magento\MagentoCloud\Config\Magento\Shared\Reader" />
118119
<service id="Magento\MagentoCloud\Config\Magento\Shared\WriterInterface" alias="Magento\MagentoCloud\Config\Magento\Shared\Writer" />

0 commit comments

Comments
 (0)