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

Commit 6d2dc04

Browse files
authored
Merge pull request #2556 from magento-commerce/9-29_integration
9 29 integration
2 parents 399f6cd + a278690 commit 6d2dc04

File tree

10 files changed

+28
-30
lines changed

10 files changed

+28
-30
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ See the examples at the end of this section for help specifying different releas
7676
The first time you upgrade using the plugin, you can interactively view and update any out-of-date values that may be remaining from previous versions.
7777
To enable this, use the `--interactive-magento-conflicts` option on the `composer require` commands.
7878

79+
To override all conflicting custom values with the expected Magento values, re-run the `composer require` command with the `--use-default-magento-values` option.
80+
7981
{:.bs-callout-tip}
8082
Use `composer require --help` to learn more about available options.
8183
To learn more about usage of the plugin, refer to the [Plugin Usage](https://github.com/magento/composer-root-update-plugin/blob/0.1/src/Magento/ComposerRootUpdatePlugin/README.md#usage).

src/guides/v2.3/comp-mgr/upgrade-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ It is important to understand the variables that determine the complexity of an
1616

1717
The level of effort to upgrade your {{site.data.var.ee}} instance depends upon these factors:
1818

19-
* **How you have built your site?** The amount of custom work and the number of installed 3rd-party modules strongly affects the complexity of an upgrade. The quality of the custom work and modules also can also determine whether an upgrade will go smoothly.
19+
* **How did you build your site?** The amount of custom work and the number of installed 3rd-party modules strongly affects the complexity of an upgrade. The quality of the custom work and modules can determine whether an upgrade will go smoothly.
2020

2121
* **Are you skipping multiple releases?** Skipping releases will makes the next upgrade more complex, upgrading from consequent versions will make the process easier and cheaper.
2222

src/guides/v2.3/extension-dev-guide/extension_attributes/adding-attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function afterSave
115115
$ourCustomData = $extensionAttributes->getOurCustomData();
116116
$this->customDataRepository->save($ourCustomData);
117117

118-
$resultAttributes = $result->getExtentionAttributes(); /** get extension attributes as they exist after save **/
118+
$resultAttributes = $result->getExtensionAttributes(); /** get extension attributes as they exist after save **/
119119
$resultAttributes->setOurCustomData($ourCustomData); /** update the extension attributes with correct data **/
120120
$result->setExtensionAttributes($resultAttributes);
121121

src/guides/v2.3/frontend-dev-guide/translations/theme_dictionary.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,6 @@ The locale dictionary would use the default values (keys) in the left column fol
6464
"Card Verification Number", <translation>
6565
```
6666

67-
## Element translations per module
68-
69-
You can translate the same element in different ways for different modules:
70-
71-
```text
72-
"Add to Cart", "Add to Cart", module, Magento_Review
73-
"Add to Cart", "Add to Shopping Cart", module, Magento_Catalog
74-
```
75-
7667
## Additional information
7768

7869
- [Translations overview]

src/guides/v2.3/ui_comp_guide/components/ui-fileuploader.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,24 @@ Here is an example of how File Uploader component integrates with [Form]({{ page
2929
...
3030
<fieldset name="foo">
3131
...
32-
<argument name="data" xsi:type="array">
33-
<item name="config" xsi:type="array">
34-
<item name="label" xsi:type="string"/>
35-
</item>
36-
</argument>
37-
<field name="bar">
38-
<argument name="data" xsi:type="array">
39-
<item name="config" xsi:type="array">
40-
<item name="label" xsi:type="string">Sound Check</item>
41-
<item name="visible" xsi:type="boolean">true</item>
42-
<item name="formElement" xsi:type="string">fileUploader</item>
43-
<item name="uploaderConfig" xsi:type="array">
44-
<item name="url" xsi:type="url" path="path/to/controller"/>
45-
</item>
46-
</item>
47-
</argument>
32+
<settings>
33+
<label translate="true">Foo</label>
34+
<collapsible>true</collapsible>
35+
<opened>true</opened>
36+
</settings>
37+
<field name="bar" formElement="fileUploader">
38+
<settings>
39+
<label translate="true">Sound Check</label>
40+
</settings>
41+
<formElements>
42+
<fileUploader>
43+
<settings>
44+
<uploaderConfig>
45+
<param xsi:type="string" name="url">path/to/controller</param>
46+
</uploaderConfig>
47+
</settings>
48+
</fileUploader>
49+
</formElements>
4850
</field>
4951
</fieldset>
5052
</form>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ See the examples at the end of this section for help specifying different releas
7878
The first time you upgrade using the plugin, you can interactively view and update any out-of-date values that may be remaining from previous versions.
7979
To enable this, use the `--interactive-magento-conflicts` option on the `composer require` commands.
8080

81+
To override all conflicting custom values with the expected Magento values, re-run the `composer require` command with the `--use-default-magento-values` option.
82+
8183
{:.bs-callout-tip}
8284
Use `composer require --help` to learn more about available options.
8385
To learn more about usage of the plugin, refer to the [Plugin Usage](https://github.com/magento/composer-root-update-plugin/blob/0.1/src/Magento/ComposerRootUpdatePlugin/README.md#usage).

src/guides/v2.4/install-gde/system-requirements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ functional_areas:
66
- Setup
77
redirect_from:
88
- /guides/v2.4/install-gde/system-requirements-tech.html
9+
- /guides/v2.4/architecture/tech-stack.html
910
---
1011

1112
{:.bs-callout-info}

src/recommendations/test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ See the [user guide](https://docs.magento.com/user-guide/marketing/recommendatio
3131

3232
1. Deploy the `magento/product-recommendations` module to a non-production environment where the catalog data is similar to your production catalog.
3333

34-
1. Use one of the non-production SaaS Environment IDs for [configuration](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) in the Admin.
34+
1. Use one of the non-production Data Space IDs for [configuration](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) in the Admin.
3535

3636
1. Generate the data yourself by clicking around your storefront to mimic the behavior of actual shoppers (or create an automation script to do this). Through your testing, you will generate behavioral events on your non-production environment. Those events will be used to produce the product affinities that power recommendations. For testing, Magento suggests you interact with the following recommendation types:
3737

src/recommendations/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you have configured the `product-recommendations` module correctly, but you a
1111

1212
- If you are not seeing the recommendations that you configured, it is possible there is not yet sufficient data to build recommendations for the user.
1313

14-
- Ensure the SaaS Environment ID or API Key are valid. If you get an error after specifying your SaaS Environment ID or your API key during the product recommendations initialization, check to make sure you have entered the [SaaS Environment ID and API key](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) correctly. To ensure the MageID and API key are linked, the user who owns the MageID, typically the user who owns the Magento license, needs to be the same user who generates the API key. If you must change the MageID that was used, [contact support](https://support.magento.com/hc/en-us).
14+
- Ensure the Data Space ID or API Key are valid. If you get an error after specifying your Data Space ID or your API key during the product recommendations initialization, check to make sure you have entered the [Data Space ID and API key](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) correctly. To ensure the MageID and API key are linked, the user who owns the MageID, typically the user who owns the Magento license, needs to be the same user who generates the API key. If you must change the MageID that was used, [contact support](https://support.magento.com/hc/en-us).
1515

1616
### Catalog SaaS Export module
1717

src/recommendations/verify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Install the [Snowplow Analytics Debugger extension for Chrome](https://chrome.go
4444

4545
1. Scroll down until you see **Context Data _n_**. Look for the storefront instance in the **Schema**.
4646

47-
1. Verify that the [SaaS Environment ID](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) is set correctly.
47+
1. Verify that the [SaaS Data Space ID](https://docs.magento.com/m2/ce/user_guide/configuration/services/saas.html) is set correctly.
4848

4949
![Snowplow filter]({{ page.baseurl }}/recommendations/images/snowplow-filter.png)
5050

0 commit comments

Comments
 (0)