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

Commit ac7f48d

Browse files
authored
Merge branch 'master' into db_bump_theme
2 parents 2ca54d7 + 53c3120 commit ac7f48d

File tree

54 files changed

+954
-116
lines changed

Some content is hidden

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

54 files changed

+954
-116
lines changed

src/_data/core-releases.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"tagName":"2.3.0"
112112
}
113113
],
114-
"end-of-support": "2022-04-??"
114+
"end-of-support": "2022-09-08"
115115
},
116116
"2.2": {
117117
"releases": [

src/_data/whats-new.yml

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,50 @@ 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 Jan 17 15:38:41 2022
7+
updated: Mon Jan 24 15:38:42 2022
88
entries:
9+
- description: Restored 2.3.x [Upgrade Guide](https://devdocs.magento.com/guides/v2.3/comp-mgr/bk-compman-upgrade-guide.html)
10+
topics and redirected only the 2.4.x topics to the migrated guide on [Experience
11+
League](https://experienceleague.adobe.com/docs/commerce-operations/upgrade-guide/overview.html).
12+
versions: 2.3.x, 2.4.x
13+
type: Major Update
14+
date: January 21, 2022
15+
link: https://github.com/magento-commerce/devdocs/pull/2749
16+
merge_commit: f73452c4b7575cfca7beb37dab422d1547a8a8ef
17+
contributor: jeff-matthews
18+
membership: true
19+
labels:
20+
- Major Update
21+
- 2.3.x
22+
- 2.4.x
23+
- description: Updated the Cloud guide to [clarify log rotation tip](https://devdocs.magento.com/cloud/project/log-locations.html),
24+
[delete custom VCL snippets](http://devdocs.magento.com/cloud/cdn/fastly-vcl-bypass-to-origin.html#delete-the-custom-vcl-snippet),
25+
and provide an additional example with multiple themes and locales for the [SCD_MATRIX
26+
build variable](https://devdocs.magento.com/cloud/env/variables-build.html#scd_matrix).
27+
versions: 2.x
28+
type: Technical
29+
date: January 20, 2022
30+
link: https://github.com/magento-commerce/devdocs/pull/2736
31+
merge_commit: bb55fd340360edd73af89dfc02628bb169843593
32+
contributor: hguthrie
33+
membership: true
34+
labels:
35+
- 2.x
36+
- Technical
37+
- imported
38+
- description: Added [extended support](https://devdocs.magento.com/release/lifecycle-policy.html)
39+
date for 2.3.
40+
versions: 2.3.x
41+
type: Major Update
42+
date: January 20, 2022
43+
link: https://github.com/magento/devdocs/pull/9329
44+
merge_commit: 9c12b816643b303e5bcf07252d3402a1b5115b33
45+
contributor: misuadobe
46+
membership: false
47+
labels:
48+
- Major Update
49+
- 2.3.x
50+
- 'Progress: done'
951
- description: Added the [contactUs](https://devdocs.magento.com/guides/v2.4/graphql/mutations/contact-us.html)
1052
mutation topic.
1153
versions: 2.4.x

src/_includes/cloud/cloud-fastly-manage-vcl-from-admin.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,24 @@
1515
1. After the upload completes, refresh the cache according to the notification at the top of the page.
1616

1717
{:.bs-callout-warning}
18-
The *Custom VCL snippets* UI option shows only the snippets added through the Admin UI. You must use the Fastly API to [manage custom snippets added through the API]({{ site.baseurl }}/cloud/cdn/cloud-vcl-custom-snippets.html#manage-custom-vcl-snippets-using-the-api).
18+
The *Custom VCL snippets* UI option shows only the snippets added through the Admin UI. You must [manage custom VCL snippets using the Fastly API]({{ site.baseurl }}/cloud/cdn/cloud-vcl-custom-snippets.html#manage-custom-vcl-snippets-using-the-api).
1919

2020
## Delete the custom VCL snippet
2121

22-
You can delete custom VCL snippet code from your Fastly configuration by uploading an empty version of the snippet from the Admin UI, or delete it completely using the Fastly API.
22+
1. [Log in]({{ site.baseurl }}/cloud/onboarding/onboarding-tasks.html#admin) to the Admin UI.
23+
24+
1. Click **Stores** > **Settings** > **Configuration** > **Advanced** > **System**.
25+
26+
1. Expand **Full Page Cache** > **Fastly Configuration** > **Custom VCL Snippets**.
27+
28+
![Manage custom VCL snippets]
2329

24-
- Upload an empty version of the snippet file to Fastly to remove the VCL logic from the active VCL version:
30+
1. In the _Action_ column, click the trash icon next to the snippet to delete.
2531

26-
- Edit the snippet and delete the **VCL** snippet content.
27-
- Save the configuration.
28-
- Upload the VCL to Fastly to apply your changes.
32+
1. On the next modal window, click **DELETE** and activate a new version.
2933

30-
- Use the Fastly API [Delete custom VCL snippet]({{ site.baseurl }}/cloud/cdn/cloud-vcl-custom-snippets.html#manage-vcl) operation to delete the snippet completely, or submit a support ticket to request deletion.
34+
{:.bs-callout-warning}
35+
The *Custom VCL snippets* UI option shows only the snippets added through the Admin UI. You must [manage custom VCL snippets using the Fastly API]({{ site.baseurl }}/cloud/cdn/cloud-vcl-custom-snippets.html#manage-custom-vcl-snippets-using-the-api).
3136

3237
[Manage custom VCL snippets]: {{site.baseurl}}/common/images/cloud/cloud-fastly-manage-snippets.png
33-
{:width="650px"}
38+
{:width="650px"}

src/_includes/config/redis-verify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you use Redis for page caching, you'll see output similar to the following:
5252

5353
### Inspecting compressed data
5454

55-
To inspect compressed Session data and Page Cache, the [Redis Desktop Manager](https://flathub.org/apps/details/dev.rdm.RDM) supports the automatic decompression of Magento 2 Session and Page cache and displays PHP session data in a human-readable form.
55+
To inspect compressed Session data and Page Cache, the [RESP.app](https://flathub.org/apps/details/app.resp.RESP) supports the automatic decompression of Magento 2 Session and Page cache and displays PHP session data in a human-readable form.
5656

5757
### Redis ping command
5858

src/cloud/cdn/cloud-vcl-custom-snippets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Use the Fastly API [create snippet](https://docs.fastly.com/api/config#snippet_4
241241
curl -H "Fastly-Key: $FASTLY_API_TOKEN" https://api.fastly.com/service/$FASTLY_SERVICE_ID/version/$FASTLY_EDIT_VERSION/snippet -H 'Content-Type: application/json' -X POST --data @<filename.json>
242242
```
243243

244-
The `<filename.vcl>` is the name of the file you prepared in the previous step. Repeat this command for each VCL snippet.
244+
The `<filename.json>` is the name of the file you prepared in the previous step. Repeat this command for each VCL snippet.
245245

246246
If you receive a `500 Internal Server Error` response from the Fastly service, check the JSON file syntax to make sure you are uploading a valid file.
247247

src/cloud/env/variables-build.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,26 +108,48 @@ stage:
108108

109109
You can configure multiple locales per theme. This customization helps speed up the build process by reducing the number of unnecessary theme files. For example, you can build the _magento/backend_ theme in English and a custom theme in other languages.
110110

111-
The following example builds the `magento/backend` theme with three locales:
111+
The following example builds the `Magento/backend` theme with three locales:
112112

113113
```yaml
114114
stage:
115115
build:
116116
SCD_MATRIX:
117-
"magento/backend":
117+
"Magento/backend":
118118
language:
119119
- en_US
120120
- fr_FR
121121
- af_ZA
122122
```
123+
The following example builds three themes with three locales:
123124

124-
Also, you can choose to _not_ deploy a theme:
125+
```yaml
126+
stage:
127+
build:
128+
SCD_MATRIX:
129+
"Magento/backend":
130+
language:
131+
- en_US
132+
- fr_FR
133+
- af_ZA
134+
"Magento/blank":
135+
language:
136+
- en_US
137+
- fr_FR
138+
- af_ZA
139+
"Magento/luma":
140+
language:
141+
- en_US
142+
- fr_FR
143+
- af_ZA
144+
```
145+
146+
Or, you can choose to _not_ deploy a theme:
125147

126148
```yaml
127149
stage:
128150
build:
129151
SCD_MATRIX:
130-
"magento/backend": [ ]
152+
"Magento/backend": [ ]
131153
```
132154

133155
### `SCD_MAX_EXECUTION_TIME`

src/cloud/project/log-locations.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can view the logs from the file system, the project web UI, and the `magento
1919
- **Magento Cloud CLI**—You can view logs using the `magento-cloud log` command.
2020

2121
{:.bs-callout-tip}
22-
Automatic log rotation, compression, and removal are enabled in the Cloud environment. Each log file type has a rotating pattern and lifetime.
22+
For Pro environments, automatic log rotation, compression, and removal are enabled for log files with a fixed file name. Each log file type has a rotating pattern and lifetime. Starter environments do not have log rotation. Full details of the environment's log rotation and lifespan of compressed logs can be found in: `/etc/logrotate.conf` and `/etc/logrotate.d/<various>`
2323

2424
## Manage log data
2525

@@ -152,7 +152,6 @@ For example, on Pro production environments a PHP access log for 21 days in the
152152
```terminal
153153
/var/log/platform/<project_id>/php.access.log.22.gz
154154
```
155-
156155
The archived log files are always stored in the directory where the original file was located before compression.
157156

158157
{:.bs-callout-info}

src/cloud/project/new-relic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The aggregated data includes information from the following logs:
4343
- Logs for cloud services from the `var/log/platform/<project-ID>` directory
4444
- Fastly CDN and WAF logs
4545

46-
As soon as your project is connected to New Relic, you can use the New Relic Logs service to complete tasks like the following:
46+
When your project is connected to New Relic, you can use the New Relic Logs service to complete tasks like the following:
4747

4848
- Use [New Relic queries][New Relic query syntax for logs] to search aggregated log data
4949
- Visualize log data through the New Relic Logs application
@@ -59,9 +59,9 @@ When Adobe provisions your {{site.data.var.ece}} project, the License Owner rece
5959
A New Relic account can have only one person assigned to the Owner role. If you must change the account owner, assign the Admin role to the current Owner, then assign the Owner role to another user. See [Update the account owner] in the New Relic documentation for instructions.
6060

6161
{:.bs-callout-tip}
62-
Before assigning the Owner role to a user, verify that the user exists on the New Relic account for {{site.data.var.ece}}. If you need to add the user to that account and an existing account Owner or Admin cannot help, any user with access to the [Adobe Partnership Owner Account] for New Relic can add users on behalf of the customer.
62+
Before assigning the Owner role to a user, verify that the user exists on the New Relic account for {{site.data.var.ece}}. If you must add the user to that account and an existing account Owner or Admin cannot help, any user with access to the [Adobe Partnership Owner Account] for New Relic can add users on behalf of the customer.
6363

64-
We recommend adding at least one Admin user to your New Relic account to manage all access, integrations, and tool usage. {{site.data.var.ece}} Project Owners and Admin users can add and remove users from the New Relic account.
64+
We recommend adding at least one **Admin** user to your New Relic account to manage all access, integrations, and tool usage. {{site.data.var.ece}} Project Owners and Admin users can add and remove users from the New Relic account. We also recommend that you do not create more than five full-access **Users**. Only grant full access to users that strictly require access to the complete feature set. There is no specific guidance on free **Restricted** users.
6565

6666
{:.procedure}
6767
To add a user:

src/cloud/project/user-admin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ When MFA enforcement is enabled on a {{site.data.var.ece}} project, all users wi
3636
You can add users and assign roles using the Magento Cloud CLI or the Project Web Interface.
3737

3838
{:.bs-callout-tip}
39-
Changing user configuration on a {{site.data.var.ece}} environment triggers a site deployment, which takes your site offline until deployment completes. For Production environments, we recommend completing user administration tasks during off-peak hours to prevent service disruptions.
39+
Changing user configuration on an {{site.data.var.ece}} environment requires a site deployment for the changes to take effect, which takes your site offline until the deployment completes. For Production environments, we recommend completing user administration tasks during off-peak hours to prevent service disruptions.
4040

4141
**Prerequisites:**
4242

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ group: software-update-guide
33
title: Commerce upgrade overview
44
functional_areas:
55
- Upgrade
6-
redirect_to: https://experienceleague.adobe.com/docs/commerce-operations/upgrade-guide/overview.html
76
---
87

98
<!-- Topic variables

0 commit comments

Comments
 (0)