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

Commit 19cb2cd

Browse files
authored
Merge branch 'master' into reference-name-correction
2 parents 56ec4a3 + 15313ca commit 19cb2cd

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

guides/v2.2/cloud/release-notes/cloud-tools.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ The `{{ site.data.var.ct }}` 2002.0.22 release changes the structure of the `{{
2626

2727
- {:.new}Updated the `composer.json` file for the `{{ site.data.var.ct }}` package to add a dependency for the `magento/magento-cloud-patches` v1.0.0 package.
2828

29+
- {:.fix}<!--MAGECLOUD-4661-->Fixed an issue that caused the `{{ site.data.var.ct }}` patching process to break when applying patch sets on top of security-only releases, starting with Magento version 2.3.2-p2 and later. This issue was introduced by the new versioning scheme adopted for [security-only patches]({{ site.baseurl }}/guides/v2.3/release-notes/bk-release-notes.html#security-only-patches).
30+
2931
- {:.fix}**Patches and critical fixes**–Update your Cloud environments with `{{ site.data.var.ct }}` version 2002.0.22 to apply the following patches and critical fixes. These patches are included in the `magento/magento-cloud-patches` v1.0.0 package.
3032

3133
- {:.fix}<!--MAGECLOUD-4649-->**Page Builder security patches for 2.3.1.x and 2.3.2.x releases**–Fixes an issue in Page Builder preview that allows unauthenticated users to access some templating methods that can be used to trigger arbitrary code execution over the network (RCE) resulting in global information leaks. This issue can occur when using unsupported versions of Page Builder with {{ site.data.var.ee }} versions 2.3.1 and 2.3.2.

guides/v2.3/config-guide/elasticsearch/es-config-stopwords.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ See one of the following topics for more information:
3333

3434
* [Edit stopwords for an existing locale](#config-edit-stopwords)
3535
* [Create stopwords for a new locale](#config-create-stopwords)
36+
* [To change the directory from your module](#to-change-directory-stopwords)
3637

3738
### Edit stopwords for an existing locale {#config-edit-stopwords}
3839

@@ -126,3 +127,21 @@ To change the directory:
126127
```
127128

128129
Save your changes to `di.xml` and exit the text editor.
130+
131+
## To change the directory from your module {#to-change-directory-stopwords}
132+
133+
1. [Create a new module](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/build/module-file-structure.html){:target="_blank"}
134+
1. In your module `etc/di.xml` add instructions:
135+
136+
```xml
137+
<type name="Magento\Elasticsearch\SearchAdapter\Query\Preprocessor\Stopwords">
138+
<arguments>
139+
<argument name="stopwordsModule" xsi:type="string">Your_Module</argument>
140+
<argument name="stopwordsDirectory" xsi:type="string">stopwords</argument>
141+
</arguments>
142+
</type>
143+
```
144+
145+
1. In your module, create the directory `etc/stopwords`, with the corresponding `.csv`.
146+
147+
Save your changes to `di.xml` and exit the text editor.

guides/v2.3/security/google-recaptcha.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ The Google reCAPTCHA extension is bundled and installed with {{site.data.var.ce}
2121

2222
## Configure reCAPTCHA
2323

24+
{:.bs-callout .bs-callout-warning}
25+
Before reCAPTCHA can be configured, ensure that your `PHP.ini` file includes this setting: `allow_url_fopen = 1`. See [Required PHP Settings]({{page.baseurl}}/install-gde/prereq/php-settings.html).
26+
2427
See the Magento Admin User Guide [Open Source](https://docs.magento.com/m2/ce/user_guide/stores/security-google-recaptcha.html) and [Commerce](https://docs.magento.com/m2/ee/user_guide/stores/security-google-recaptcha.html) for configuration options in the Magento Admin and storefront.
2528

2629
## Troubleshooting

0 commit comments

Comments
 (0)