Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit ab4ed5f

Browse files
authored
Merge branch 'master' into hg-mc1329-orphan
2 parents d082575 + 434c9ad commit ab4ed5f

Some content is hidden

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

41 files changed

+432
-247
lines changed

src/_data/toc/software-update-guide.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,26 @@ pages:
2121
- label: Update and upgrade checklist
2222
url: /comp-mgr/prereq/prereq_compman-checklist.html
2323

24-
- label: Safe Upgrade Tool
25-
url: /safe-upgrade-tool/introduction.html
24+
- label: Upgrade Compatibility Tool
25+
url: /upgrade-compatibility-tool/introduction.html
2626
versionless: true
2727
edition: ee-only
2828
children:
2929

3030
- label: Prerequisites
31-
url: /safe-upgrade-tool/prerequisites.html
31+
url: /upgrade-compatibility-tool/prerequisites.html
3232
versionless: true
3333

3434
- label: Install
35-
url: /safe-upgrade-tool/install.html
35+
url: /upgrade-compatibility-tool/install.html
3636
versionless: true
3737

3838
- label: Run the tool
39-
url: /safe-upgrade-tool/run.html
39+
url: /upgrade-compatibility-tool/run.html
4040
versionless: true
4141

4242
- label: Developer information
43-
url: /safe-upgrade-tool/developer.html
43+
url: /upgrade-compatibility-tool/developer.html
4444
versionless: true
4545

4646
- label: Magento Marketplace example

src/_data/whats-new.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ entries:
3030
link: https://github.com/magento/devdocs/pull/8547
3131
contributor: dobooth
3232
profile: https://github.com/dobooth
33-
- description: Added the [Safe Upgrade Tool](https://devdocs.magento.com/safe-upgrade-tool/introduction.html)
33+
- description: Added the [Upgrade Compatibility Tool](https://devdocs.magento.com/upgrade-compatibility-tool/introduction.html)
3434
topics to the Software Update Guide section.
3535
versions: ''
3636
type: Major Update, New Topic
@@ -272,7 +272,7 @@ entries:
272272
contributor: jeff-matthews
273273
profile: https://github.com/jeff-matthews
274274
- description: Reorganized the [system requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html)
275-
pages in the Magento Installation Guide to to make it more coherent.
275+
pages in the Magento Installation Guide to make it more coherent.
276276
versions: 2.3.x, 2.4.x
277277
type: Major Update
278278
date: November 5, 2020

src/_includes/layout/page-header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ <h2 class="page-subtitle no_toc">{{ page.subtitle }}</h2>
4242
</div>
4343
{% endif %}
4444

45-
{% if page.url contains "safe-upgrade-tool/" %}
45+
{% if page.url contains "upgrade-compatibility-tool/" %}
4646
<div class="message-banner">
47-
This tool is an ALPHA version with limited scope, available for all Magento Commerce merchants, and only validating PHP Magento APIs and GraphQL schema. If you are a Magento Commerce user you can download it at the <a href="https://repo.magento.com/">Magento repo</a>.
47+
The Upgrade Compatibility Tool is an ALPHA version with limited scope, available for all Magento Commerce merchants, and only validating PHP Magento APIs and GraphQL schema. If you are a Magento Commerce user you can download it at the <a href="https://repo.magento.com/">Magento repo</a>.
4848
</div>
4949
{% endif %}
5050

src/cloud/project/privatelink-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ To test the connection to the VPC endpoint service:
154154
```
155155
{:.no-copy}
156156

157-
1. Run the following command to to ensure the service is listening on VM:
157+
1. Run the following command to ensure the service is listening on VM:
158158

159159
```bash
160160
netstat -na |grep <port>

src/cloud/project/project-upgrade.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ You can upgrade the core {{site.data.var.ee}} code base to a newer version. Befo
1616

1717
Review the [{{site.data.var.ece}} service versions][version compatibility matrix] information for the latest software version requirements. Your upgrade tasks may include the following:
1818

19-
- Update your PHP version Elasticsearch version, and other services
20-
- Convert an older configuration management file
21-
- Update the `.magento.app.yaml` file with new settings for hooks and environment variables
22-
- Upgrade third-party extensions to the latest supported version
23-
- Update the `.gitignore` file
19+
- Update PHP, Elasticsearch, and other services for compatibility with new Magento version. See [Change service version].
20+
- Convert an older configuration management file.
21+
- Update the `.magento.app.yaml` file with new settings for hooks and environment variables.
22+
- Upgrade third-party extensions to the latest supported version.
23+
- Update the `.gitignore` file.
2424

2525
{:.bs-callout-info}
2626
If you upgrade the PHP version, you must also submit a Support ticket to update the New Relic service.
2727

2828
### Configuration management
2929

30-
If you are upgrading from 2.1.4 or later to 2.2.x or later and use [Configuration Management], you need to migrate the `config.local.php` file. Older versions used a `config.local.php` file for Configuration Management, but version 2.2.0 and later use the `config.php` file. This file works exactly like the `config.local.php` file, but it has different configuration settings that include a list of your enabled modules and additional configuration options.
30+
Older versions of {{site.data.var.ee}}, such as 2.1.4 or later to 2.2.x or later, used a `config.local.php` file for Configuration Management. {{site.data.var.ee}} version 2.2.0 and later use the `config.php` file, which works exactly like the `config.local.php` file, but it has different configuration settings that include a list of your enabled modules and additional configuration options.
31+
32+
When upgrading from an older version, you must migrate the `config.local.php` file to use the newer `config.php` file. Use the following steps to backup your configuration file and create a new one.
3133

3234
{:.procedure}
3335
To create a temporary `config.php` file:
@@ -302,6 +304,7 @@ To resolve the error:
302304
<!--Link definitions-->
303305
[.magento.app.yaml]: {{site.baseurl}}/cloud/project/magento-app.html
304306
[Configuration Management]: {{site.baseurl}}/cloud/live/sens-data-over.html
307+
[Change service version]: {{site.baseurl}}/cloud/project/services.html#change-service-version
305308
[Examine the logs]: {{site.baseurl}}/cloud/project/log-locations.html
306309
[extensions section of the .magento.app.yaml file]: {{site.baseurl}}/cloud/project/magento-app.html#configure-php-options
307310
[Fastly CDN module for Magento 2]: {{site.baseurl}}/cloud/cdn/cloud-fastly.html#fastly-cdn-module-for-magento-2

src/cloud/release-notes/mcd-release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ The release notes include:
155155

156156
- Added the ability to customize the [Elasticsearch container configuration]({{ site.baseurl }}/cloud/docker/docker-containers-service.html#elasticsearch-container) when you generate the Docker compose configuration file.<!--MCLOUD-3059-->
157157

158-
- Added the `--no-es` option to the service configuration options for generating the Docker Compose configuration file. Use this option to skip the Elasticsearch container installation and and use MySQL search instead. This option is supported only for Magento versions 2.3.5 and earlier.<!--MCLOUD-3766-->
158+
- Added the `--no-es` option to the service configuration options for generating the Docker Compose configuration file. Use this option to skip the Elasticsearch container installation and use MySQL search instead. This option is supported only for Magento versions 2.3.5 and earlier.<!--MCLOUD-3766-->
159159

160160
- {:.new}**FPM-XDEBUG container**—Added a service configuration option to install and configure Xdebug for debugging PHP in your Cloud Docker environment. See [Configure Xdebug]({{site.baseurl}}/cloud/docker/docker-development-debug.html).<!--MCLOUD-4098-->
161161

src/guides/v2.3/b2b/negotiable-checkout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ An order ID, such as `83`
601601

602602
### Return payment information
603603

604-
This call returns returns payment information and all information from the `totals` object.
604+
This call payment information and all information from the `totals` object.
605605

606606
**Sample Usage:**
607607

src/guides/v2.3/comp-mgr/bk-compman-upgrade-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Related topics
5454
Complete the tasks discussed in [Prerequisites].
5555

5656
{:.bs-callout-info}
57-
See the [Safe Upgrade Tool ALPHA]({{site.baseurl}}/safe-upgrade-tool/introduction.html) for more information about the new Magento CLI tool that helps you update your Magento software.
57+
See the [Upgrade Compatibility Tool ALPHA]({{site.baseurl}}/upgrade-compatibility-tool/introduction.html) page for more information about the new Magento command line tool that helps you update your Magento software.
5858

5959
<!-- ABBREVIATIONS -->
6060

src/guides/v2.3/extension-dev-guide/framework/datetime.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ use Magento\Framework\Stdlib\DateTime;
4848
{
4949
return $this->dataTime->formatDate(time());
5050
}
51+
...
5152
```

src/guides/v2.3/extension-dev-guide/xss-protection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ parentElement.appendChild(newDiv);
171171
172172
#### UI component data providers
173173
174-
UI component data providers pass dynamic (user generated) data to UI components. The data they return is being rendered in order to support component dynamic linking. Since user data is supposed to be treated a a literal value which is not refering to any other component, rendering of these properties must be disabled. See [UI component data providers](https://devdocs.magento.com/guides/v2.3/ui_comp_guide/concepts/ui_comp_data_source.html) to read more about data providers and component linking.
174+
UI component data providers pass dynamic (user generated) data to UI components. The data they return is being rendered in order to support component dynamic linking. Since user data is supposed to be treated as a literal value which is not refering to any other component, rendering of these properties must be disabled. See [UI component data providers](https://devdocs.magento.com/guides/v2.3/ui_comp_guide/concepts/ui_comp_data_source.html) to read more about data providers and component linking.
175175
176176
```php
177177
$uiData = ['linkProperty' => '${ $.otherComponent.value }'];

0 commit comments

Comments
 (0)