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

Commit 0cbe58c

Browse files
authored
Merge pull request #2620 from magento-commerce/10-28_integration
10 28 integration
2 parents 4f9cf19 + ded158e commit 0cbe58c

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

src/cloud/howtos/install-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ To update an extension:
160160
git push origin <branch-names>
161161
```
162162

163-
If you encounter errors, see [extension deployment failure][].
163+
If you encounter errors, see [extension deployment failure][trouble].
164164

165165
<!-- link definitions -->
166166

src/cloud/project/magento-app-properties.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,16 @@ web:
119119

120120
You can fine-tune your `locations` configuration using the following key values for each `locations` block:
121121

122-
| Attribute | Description |
123-
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
124-
| `allow` | Serve files that do not match "rules". Default value = `true` |
125-
| `expires` | Set the number of seconds to cache content in the browser. This key enables the `cache-control` and `expires` headers for static content. If this value is not set, the `expires` directive and resulting headers are not included when serving static content files. A negative 1 (`-1`) value results in no caching and is the default value. You can express time value with the following units: `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours), `d` (days), `w` (weeks), `M` (months, 30d), or `y` (years, 365d) |
126-
| `index` | List the static files to serve your application, such as the `index.html` file. This key expects a collection. This only works if access to the file or files is "allowed" by the `allow` or `rules` key for this location. |
127-
| `rules` | Specify overrides for a location. Use a regular expression to match a request. If an incoming request matches the rule, then regular handling of the request is overridden by the keys used in the rule. |
128-
| `passthru` | Set the URL used in the event that a static file or PHP file cannot be found. Typically, this URL is the front controller for your applications, such as `/index.php` or `/app.php`. |
129-
| `root` | Set the path relative to the root of the application that is exposed on the web. The public directory (location "/") for a Cloud project is set to "pub" by default. |
130-
| `scripts` | Allow loading scripts in this location. Set the value to `true` to allow scripts. |
122+
| Attribute | Description |
123+
| - | - |
124+
| `allow` | Serve files that do not match "rules". Default value = `true` |
125+
| `expires` | Set the number of seconds to cache content in the browser. This key enables the `cache-control` and `expires` headers for static content. If this value is not set, the `expires` directive and resulting headers are not included when serving static content files. A negative 1 (`-1`) value results in no caching and is the default value. You can express time value with the following units: `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours), `d` (days), `w` (weeks), `M` (months, 30d), or `y` (years, 365d) |
126+
| `headers` | Set custom headers, such as `X-Frame-Options`, for static content served from this location. |
127+
| `index` | List the static files to serve your application, such as the `index.html` file. This key expects a collection. This only works if access to the file or files is "allowed" by the `allow` or `rules` key for this location. |
128+
| `rules` | Specify overrides for a location. Use a regular expression to match a request. If an incoming request matches the rule, then regular handling of the request is overridden by the keys used in the rule. |
129+
| `passthru` | Set the URL used in the event that a static file or PHP file cannot be found. Typically, this URL is the front controller for your applications, such as `/index.php` or `/app.php`. |
130+
| `root` | Set the path relative to the root of the application that is exposed on the web. The public directory (location "/") for a Cloud project is set to "pub" by default. |
131+
| `scripts` | Allow loading scripts in this location. Set the value to `true` to allow scripts. |
131132

132133
Our default configuration allows the following:
133134

src/contributor-guide/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ If you are sure that the problem you are experiencing is a bug, file a new issue
390390

391391
The [Issue Reporting Template](https://github.com/magento/magento2/blob/2.3-develop/.github/ISSUE_TEMPLATE.md) is a default placeholder for every new issue. Follow the sections carefully, as it ensures it will pass `Gate 1` quickly. More information on gates is available in [Magento Issue Gates](https://github.com/magento/magento2/wiki/Magento-Issue-Gates).
392392

393-
{.bs-callout-tip}
393+
{:.bs-callout-tip}
394394
Note that a higher level of detail in the report increases the chance that someone will be able to reproduce the issue.
395395

396396
### Title

src/guides/v2.3/comp-mgr/patching/composer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ functional_areas:
77

88

99
{:.bs-callout-warning}
10-
Always perform comprehensive testing before deploying any custom patch.
10+
To apply official quality patches, use the [Quality Patches Tool]({{ site.baseurl }}{{ site.gdeurl }}/comp-mgr/patching/mqp.html). Always perform comprehensive testing before deploying any custom patch.
1111

1212
{:.procedure}
1313
To apply a custom patch using Composer:

src/guides/v2.3/extension-dev-guide/security/uploads.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ store the file, you only need the contents of the file to add those SKUs to a ca
1414
SKUs, and delete it without ever moving it from the temporary folder on the file system. Another, even better option for security and
1515
performance, is to never upload the file in the first place. The file can be handled on the frontend side using JavaScript
1616
to extract SKUs and quantities and send those to a web API endpoint on the server.
17-
{.:bs-callout-tip}
17+
18+
{:.bs-callout-tip}
1819
The best way to avoid security issues with files is to not upload or store them in the first place
1920
if you don't have to.
2021

src/guides/v2.4/comp-mgr/cli/cli-upgrade.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ See the examples at the end of this section for help specifying different releas
134134

135135
```bash
136136
composer update
137+
```
137138

138139
### Example - Minor release
139140

0 commit comments

Comments
 (0)