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

Commit 1a6d70a

Browse files
authored
Merge branch 'master' into imported-chuongnh3atgmaildotcom-devdocs-9415
2 parents b47b150 + 4444e2a commit 1a6d70a

File tree

3 files changed

+65
-10
lines changed

3 files changed

+65
-10
lines changed

src/_data/whats-new.yml

+56-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,63 @@ description: This page contains recent changes that we think you'd like to know
44
We exclude from this list proofreading, spelling checks, and all minor updates.
55
link: "/whats-new.html"
66
thread: "/whatsnew-feed.xml"
7-
updated: Mon Apr 11 14:38:41 2022
7+
updated: Mon Apr 18 16:08:10 2022
88
entries:
9+
- description: The [Site-Wide Analysis Tool](https://devdocs.magento.com/tools/site-wide-analysis.html)
10+
installation topic has moved to [Adobe Experience League](https://experienceleague.adobe.com/docs/commerce-operations/tools/site-wide-analysis-tool/installation.html).
11+
versions: 2.4.x
12+
type: Technical
13+
date: April 13, 2022
14+
link: https://github.com/magento-commerce/devdocs/pull/2913
15+
merge_commit: e3cc7b1a1aa0811ff7313cb98dc5f0917dce9bb3
16+
contributor: jeff-matthews
17+
membership: true
18+
labels:
19+
- Technical
20+
- 2.4.x
21+
- description: Cloud guide updates:<br/>- Updated the [Upgrade version topic](https://devdocs.magento.com/cloud/project/project-upgrade.html)
22+
to include instructions for 2.4.4 template.<br/>- Added a new topic for [OpenSearch
23+
setup](https://devdocs.magento.com/cloud/project/services-opensearch.html). This
24+
is an early version; more to come.<br/>- Updated the [Application Properties topic](https://devdocs.magento.com/cloud/project/magento-app-properties.html)
25+
to include 2.4.4 settings and clarified the Composer 2 install.
26+
versions: 2.4.4
27+
type: Major Update
28+
date: April 13, 2022
29+
link: https://github.com/magento-commerce/devdocs/pull/2908
30+
merge_commit: 5362c1b1392eee3cbf18eafe4f17fa79845fd041
31+
contributor: hguthrie
32+
membership: true
33+
labels:
34+
- Major Update
35+
- 2.4.4
36+
- description: Updated the autogenerated topics and the semi-automated topics that
37+
use release data such as [Module reference guide](https://devdocs.magento.com/guides/v2.4/mrg/intro.html),
38+
[Packages](https://devdocs.magento.com/guides/v2.4/release-notes/packages-open-source.html),
39+
[Backwards incompatible changes](https://devdocs.magento.com/guides/v2.4/release-notes/backward-incompatible-changes/reference.html),
40+
[Required PHP extensions](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html#php-extensions),
41+
[bin/magento CLI](https://devdocs.magento.com/guides/v2.4/reference/cli/magento.html).
42+
versions: 2.4.4
43+
type: Major Update
44+
date: April 12, 2022
45+
link: https://github.com/magento-commerce/devdocs/pull/2907
46+
merge_commit: 81e9594ffa9c24a761ebd3a3c7c076078443f1e5
47+
contributor: dshevtsov
48+
membership: true
49+
labels:
50+
- Major Update
51+
- 2.4.4
52+
- description: Updated the Cloud integration topics to remove the delete remote step
53+
and add a note about default remote names.
54+
versions: 2.x
55+
type: Technical
56+
date: April 11, 2022
57+
link: https://github.com/magento-commerce/devdocs/pull/2894
58+
merge_commit: b584117fd3a6324049c59da591fb2b3cf14b05b6
59+
contributor: hguthrie
60+
membership: true
61+
labels:
62+
- 2.x
63+
- Technical
964
- description: Added a new topic to the _Performance Best Practices_ guide titled
1065
[High-throughput Order Processing](https://devdocs.magento.com/guides/v2.4/performance-best-practices/high-throughput-order-processing.html),
1166
which describes how you can improve performance by optimizing the order placement

src/cloud/docker/docker-development-debug.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you use Microsoft Windows, take the following steps before continuing:
3737
```yaml
3838
fpm_xdebug:
3939
hostname: fpm_xdebug.magento2.docker
40-
image: 'magento/magento-cloud-docker-php:7.4-fpm-1.2.0'
40+
image: 'magento/magento-cloud-docker-php:7.4-fpm-1.3.2'
4141
extends: generic
4242
volumes:
4343
- '.:/app:ro,delegated'
@@ -72,28 +72,28 @@ If you use Microsoft Windows, take the following steps before continuing:
7272
1. Change any Xdebug configuration using the `XDEBUG_CONFIG` option. For example, to change the xdebug.remote_port option:
7373

7474
```bash
75-
XDEBUG_CONFIG='remote_host=host.docker.internal remote_port=9002'
75+
XDEBUG_CONFIG='client_host=host.docker.internal client_port=9002'
7676
```
7777
On Linux systems, use the following command instead:
7878
```bash
79-
XDEBUG_CONFIG=remote_host=host.docker.internal remote_port=9002
79+
XDEBUG_CONFIG=client_host=host.docker.internal client_port=9002
8080
```
8181

8282
{:.procedure}
8383
To configure PhpStorm to work with Xdebug:
8484

8585
1. In your PhpStorm project, open the settings panel.
8686

87-
- _Mac OS X_—Select **File** > **Preferences**.
87+
- _Mac OS X_—Select **PhpStorm** > **Preferences**.
8888
- _Windows/Linux_—Select **File** > **Settings**.
8989

90-
1. In the _Settings_ panel, expand and locate the **Languages & Frameworks** > **PHP** > **Servers** section.
90+
1. In the _Settings_ panel, expand and locate the **PHP** > **Servers** section.
9191

9292
1. Click the **+** to add a `PHP Remote Debug` server configuration. The project name is in grey at the top.
9393

9494
1. Configure the following settings for the new server configuration:
9595

96-
- **Name**—Enter the name used for the `serverName` option from `PHP_IDE_CONFIG` value.
96+
- **Name**—Enter the name used for the `serverName` option from `PHP_IDE_CONFIG` value. By default, MCD use this value: `serverName=magento_cloud_docker`
9797
- **Host**—Enter `localhost`.
9898
- **Port**—Enter `80`.
9999
- **Debugger**—Select `Xdebug`.
@@ -102,7 +102,7 @@ To configure PhpStorm to work with Xdebug:
102102

103103
1. In the **Absolute path on the server** column, click ![Edit]({{ site.baseurl }}/common/images/cloud/cloud-install_docker_php-storm-edit.png){:width="15px"} and add a value to the `MAGENTO_ROOT` option. The default value is `/app`
104104

105-
1. Change the Xdebug port to 9001 in the **Languages & Frameworks** > **PHP** > **Debug** > **Xdebug** > **Debug Port** panel.
105+
1. Change the Xdebug port to 9001 in the **PHP** > **Debug** > **Xdebug** > **Debug Port** panel.
106106

107107
1. Click **Apply**.
108108

@@ -135,7 +135,7 @@ To debug CLI commands:
135135
- _Windows_—Select **TCP socket** and update **Engine Api Url** with `tcp://localhost:2375`.
136136
- _Mac OS X_—Select **Docker for Mac**. [_default_]
137137

138-
1. In the **Languages & Frameworks** > **PHP** > **Cli Interpreter** panel, click **[...]**.
138+
1. In the **PHP** > **Cli Interpreter** panel, click **[...]**.
139139

140140
1. Click **[+]** to add and configure a new Cli Interpreter from your Docker image. Update the following settings:
141141

src/release/lifecycle-policy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ For {{ site.data.var.ee }} 2.4 and subsequent releases:
1616
| Release | Release Date | End of Software Support<sup>1</sup> | Dependent PHP Version |
1717
|----------------------------------|---------------|-------------------------------------|-----------------------------|
1818
| {{site.data.var.ee}} 2.3 | November 2018 | September 8, 2022<sup>2</sup> | PHP 7.3 and 7.4<sup>3</sup> |
19-
| {{site.data.var.ee}} 2.4.0-2.4.3 | July 2020 | November 2022 | PHP 7.4 |
19+
| {{site.data.var.ee}} 2.4.0-2.4.3 | July 2020 | November 28, 2022 | PHP 7.4 |
2020
| {{site.data.var.ee}} 2.4.4-2.4.6 | TBA | November 2024 | PHP 8.1 |
2121

2222
<sup>1 End of Software Support includes both end of quality fixes and end of security fixes.</sup><br>

0 commit comments

Comments
 (0)