From 666a7bba29eae89abe0fd7e3c92457d705fa3785 Mon Sep 17 00:00:00 2001 From: Alex Taranovsky Date: Wed, 16 Oct 2019 16:34:52 +0300 Subject: [PATCH 01/28] magento/devdocs#: schema.db does not support ON UPDATE action for constraints https://devdocs.magento.com/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.html --- .../declarative-schema/db-schema.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md b/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md index 0f281b1d707..373e223a6f6 100644 --- a/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md +++ b/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md @@ -5,9 +5,9 @@ title: Configure declarative schema Before Magento 2.3, extension developers were required to write code (PHP scripts) to change the database schema. The following types of scripts existed before Magento 2.3: -* InstallData and InstallSchema scripts, which are executed the first time a module is installed. -* UpgradeData and UpgradeSchema incremental scripts, which supplement an existing module schema. -* Recurring scripts, which are executed each time you install or upgrade Magento. +* InstallData and InstallSchema scripts, which are executed the first time a module is installed. +* UpgradeData and UpgradeSchema incremental scripts, which supplement an existing module schema. +* Recurring scripts, which are executed each time you install or upgrade Magento. Each script iteratively adds changes. During the installation process, upgrade scripts apply only those changes that have not been applied yet. For example, if you have a module with version 2.1.8 installed and the latest version is 2.1.11, then the upgrade script changes for 2.1.9, 2.1.10, and 2.1.11 will be applied, in order, when you upgrade to 2.1.11. Each upgrade script is responsible for checking the required version for each change to apply. The Magento installation only knows that a module has an upgrade script, not what versions it affected. That procedure is called _migration setup_ or _migration scripts_. @@ -76,9 +76,9 @@ Attribute | Description A `table` node can contain three types of subnodes: -* `column` -* `constraint` -* `index` +* `column` +* `constraint` +* `index` #### `column` subnode @@ -192,6 +192,9 @@ Attribute | Description `referenceColumn`| A column in the `referenceTable` `onDelete` | Foreign key trigger. The value must be `CASCADE`, `SET NULL`, or `NO ACTION` +{: .bs-callout-info } +To keep entities identifiers as immutable values the declarative schema does not support `ON UPDATE` action for constraint. + Example: ```xml @@ -437,7 +440,7 @@ It is possible to drop a foreign key only if it exists in the `db_schema_whiteli In this example, Module A defines a new table with primary key `id_column`. Module B declares its own schema, in which it creates a new column (`new_id_column`) and changes the primary index to this column. Module B disables the original primary key and sets a new primary key with a `referenceId` value that is different from PRIMARY. Although this value is different, the real name of the primary key in the database remains PRIMARY. - **Module A declaration** +**Module A declaration** ```xml ``` - **Module B declaration** +**Module B declaration** ```xml Date: Thu, 17 Oct 2019 14:11:29 -0500 Subject: [PATCH 02/28] Fixed breadcrumb bolding --- extensions/b2b/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/extensions/b2b/index.md b/extensions/b2b/index.md index 8b3cfd3023f..66b5b1ba69d 100644 --- a/extensions/b2b/index.md +++ b/extensions/b2b/index.md @@ -7,7 +7,7 @@ redirect_from: - guides/v2.3/comp-mgr/install-extensions/b2b-installation.html --- -{: .bs-callout .bs-callout-warning } +{: .bs-callout-warning } The {{site.data.var.b2b}} extension is only available for {{site.data.var.ee}} v2.2.0 or later. You must install it after installing {{site.data.var.ee}}. 1. Change to your Magento installation directory and enter the following command to update your `composer.json` file and install the {{site.data.var.b2b}} extension: @@ -49,10 +49,10 @@ The {{site.data.var.b2b}} extension is only available for {{site.data.var.ee}} v bin/magento cache:clean ``` -{: .bs-callout .bs-callout-info } +{: .bs-callout-info } Note: In Production mode, you may receive a message to 'Please rerun Magento compile command'. Enter the commands above. Magento does not prompt you to run the compile command in Developer mode. -{: .bs-callout .bs-callout-info } +{: .bs-callout-info } After completing the installation, you must follow the [post-installation steps](#configure-b2b). ## Configure {#configure-b2b} @@ -109,18 +109,18 @@ You may also add these two message consumers to the cron job (optional). For thi Depending on your system configuration, to prevent possible issues, you may also need to specify the following parameters when starting the services: -- `--max-messages`: manages the consumer's lifetime and allows you to specify the maximum number of messages processed by the consumer. The best practice for a PHP application is to restart long-running processes to prevent possible memory leaks. +- `--max-messages`: manages the consumer's lifetime and allows you to specify the maximum number of messages processed by the consumer. The best practice for a PHP application is to restart long-running processes to prevent possible memory leaks. -- `--batch-size`: allows you to limit the system resources consumed by the consumers (CPU, memory). Using smaller batches reduces resource usage and, thus, leads to slower processing. +- `--batch-size`: allows you to limit the system resources consumed by the consumers (CPU, memory). Using smaller batches reduces resource usage and, thus, leads to slower processing. ### Enable B2B features in Magento Admin After installing the {{site.data.var.b2b}} extension and starting message consumers (if you want to enable the **Shared Catalog** module), you must also enable B2B modules in Magento Admin. -{: .bs-callout .bs-callout-info } +{: .bs-callout-info } If you enable the **Shared Catalog** module, you must also enable the **Company** module. The **Quick Order** and **Requisition Lists** modules can be enabled/disabled independently. -1. Access the Magento Admin and click **Stores** > **Settings** > **Configuration** > **General** > **B2B Features**. +1. Access the Magento Admin and click **Stores** > Settings > **Configuration** > General > **B2B Features**. 1. Select **Yes** from the drop-down menus to enable B2B features: From 61eb8d2049a094a07ec8fdd0e5ae35a3a712b1da Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Fri, 18 Oct 2019 22:26:16 +0530 Subject: [PATCH 03/28] Removed unnecessary # tags --- .../v2.2/frontend-dev-guide/translations/translate_theory.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/v2.2/frontend-dev-guide/translations/translate_theory.md b/guides/v2.2/frontend-dev-guide/translations/translate_theory.md index 4c2c42b0196..1815f040a62 100644 --- a/guides/v2.2/frontend-dev-guide/translations/translate_theory.md +++ b/guides/v2.2/frontend-dev-guide/translations/translate_theory.md @@ -18,13 +18,13 @@ To ensure that your new string is added to the dictionary and translated, use th For example: ```php -### + ``` If your string contains a variable, to add a placeholder for this variable in the dictionary, use syntax similar to the following: ```php -### + ``` In this example, the _'Hello %1'_ string is added to the dictionary when the i18n tool is run. From 47e5fc4ec467db80397f9b99fe0435b4af34491f Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sat, 19 Oct 2019 11:50:17 +0530 Subject: [PATCH 04/28] Added clarity of language in which method is used --- .../v2.2/frontend-dev-guide/translations/translate_theory.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guides/v2.2/frontend-dev-guide/translations/translate_theory.md b/guides/v2.2/frontend-dev-guide/translations/translate_theory.md index 5ec099c5c98..756c7a5cbb1 100644 --- a/guides/v2.2/frontend-dev-guide/translations/translate_theory.md +++ b/guides/v2.2/frontend-dev-guide/translations/translate_theory.md @@ -86,8 +86,7 @@ In this example, the *Delete* string is added to the dictionary when the i18n to Delete ``` -Translated strings that originate from `.xml` files will not render unless they are called with a `__()` method. -In this example, you would use a call similar to the following to display the translated *Delete* string. +Translated strings that originate from `.xml` files will not render unless they are called with a `__()` method in `.php` files. In this example, you would use a call similar to the following to display the translated *Delete* string. ```php __($this->config->getData('label')) From 2ed0df95179c4a57678fa50cad41e3cd63927da7 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sat, 19 Oct 2019 18:06:26 +0530 Subject: [PATCH 05/28] Fixed technical and editorial issues --- .../layouts/xml-instructions.md | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md index 2aa2626ec96..9e759549eaf 100644 --- a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md +++ b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md @@ -60,11 +60,11 @@ We recommend always adding a `name` to blocks. Otherwise, it is given a random n | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | -| `class` | Name of a class that implements rendering of a particular block. An object of this class is responsible for actual rendering of block output. | class name | no | +| `class` | Name of a class that implements rendering of a particular block. An object of this class is responsible for actual rendering of block output. | Fully qualified class name E.g. `Vendor\Module\Block\Class` | no | |`name` | Name that can be used to address the block to which this attribute is assigned. The name must be unique per generated page. If not specified, an automatic name will be assigned in the format ANONYMOUS_n | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Should start with a letter. Case-sensitive. | no | -| `before` | Used to position the block before an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block before all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Possible values: element name or dash (-) | no | -| `after` | Used to position the block after an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block after all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Possible values: element name or dash (-) | no | -| `template` | A template that represents the functionality of the block to which this attribute is assigned. | template file name | no | +| `before` | Used to position the block before an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block before all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-) | no | +| `after` | Used to position the block after an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block after all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-) | no | +| `template` | A template that represents the functionality of the block to which this attribute is assigned. | Vendor_Module::path/to/template.phtml (Scope is already in `templates` directory of module) | no | | `as` | An alias name that serves as identifier in the scope of the parent element. | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Case-sensitive. | no | | `cacheable` | Defines whether a block element is cacheable. This can be used for development purposes and to make needed elements of the page dynamic. | `true` or `false` | no | | `ifconfig` | Makes the block's visibility dependent on a system configuration field. | XPath to the system configuration field. E.g. `contact/contact/enabled` | no | @@ -84,9 +84,9 @@ We recommend always adding a `name` to containers. Otherwise, it is given a rand | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | | `name` | A name that can be used to address the container in which this attribute is assigned. The name must be unique per generated page. | A-Z, a-z, 0-9, underscore (_), period (.), dash (-). Should start with a letter. Case-sensitive. | no | -| `label` | An arbitrary name to display in the web browser. | any| no | -| `before` | Used to position the container before an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block before all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Possible values: element name or dash (-). | no | -| `after` | Used to position the container after an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block after all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Possible values: element name or dash (-). | no | +| `label` | An arbitrary name to display in the web browser. | Any | no | +| `before` | Used to position the container before an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block before all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (`-`) | no | +| `after` | Used to position the container after an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block after all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-). | no | | `as` | An alias name that serves as identifier in the scope of the parent element. | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Case-sensitive. | no | | `output` | Defines whether to output the root element. If specified, the element will be added to output list. (If not specified, the parent element is responsible for rendering its children.) | Any value except the obsolete `toHtml`. Recommended value is `1`. | no | | `htmlTag` | Output parameter. If specified, the output is wrapped into specified HTML tag. | Any valid HTML 5 tag. | no | @@ -127,10 +127,10 @@ The following tables give a detailed description of the results you can get usin |:------- |:------ |:------ | | `before` | Dash (-) | The block displays before all other elements in its parent node. | | `before` | [element name] | The block displays before the named element. | -| `before` | empty value or [element name] is absent | Use the value of `after`. If that value is empty or absent as well, the element is considered as non-positioned. | +| `before` | Empty value or [element name] is absent | Use the value of `after`. If that value is empty or absent as well, the element is considered as non-positioned. | | `after` | Dash (-) | The block displays after all other elements in its parent node. | | `after` | [element name] | The block displays after the named element. | -| `after` | empty value or [element name] is absent | Use the value of `before`. If that value is empty or absent as well, the block is considered as non-positioned. | +| `after` | Empty value or [element name] is absent | Use the value of `before`. If that value is empty or absent as well, the block is considered as non-positioned. | #### Examples {#examples} @@ -165,7 +165,7 @@ Calls public methods on the block API. | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | -| `method` | Name of the public method of the block class this tag is located in that is called during block generation. | block method name | yes | +| `method` | Name of the public method of the block class this tag is located in that is called during block generation. | Method name in block | yes | To pass parameters, use the [``](#argument) instruction. @@ -179,8 +179,8 @@ To pass parameters to a block use the [``](#argument) instr | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | -| `remove` | Allows to remove or cancel the removal of the element. When a container is removed, its child elements are removed as well. | true/false | no | -| `display` | Allows you to disable rendering of specific block or container with all its children (both set directly and by reference). The block's/container's and its children' respective PHP objects are still generated and available for manipulation. | true/false | no | +| `remove` | Allows to remove or cancel the removal of the element. When a container is removed, its child elements are removed as well. | `true` or `false` | no | +| `display` | Allows you to disable rendering of specific block or container with all its children (both set directly and by reference). The block's/container's and its children' respective PHP objects are still generated and available for manipulation. | `true` or `false` | no | - The `remove` attribute is optional and its default value is `false`. @@ -213,10 +213,10 @@ Sets the declared block or container element as a child of another element in th | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | -| `element` | Name of the element to move. | element name | yes | -| `destination` | Name of the target parent element. | element name | yes | +| `element` | Name of the element to move. | Element name | yes | +| `destination` | Name of the target parent element. | Element name | yes | | `as` | Alias name for the element in the new location. | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Case-sensitive. | no | -| `after` or `before` | Specifies the element's position relative to siblings. Use dash (-) to position the block before or after all other siblings of its level of nesting. If the attribute is omitted, the element is placed after all siblings. | element name | no | +| `after` or `before` | Specifies the element's position relative to siblings. Use dash (-) to position the block before or after all other siblings of its level of nesting. If the attribute is omitted, the element is placed after all siblings. | Element name | no | ### remove {#fedg_layout_xml-instruc_ex_rmv} @@ -260,8 +260,8 @@ Used to pass an argument. Must be always enclosed in [``](#arguments) |:------- |:------ |:------ |:------ | | `name` | Argument name. | unique | yes | | `shared` | If false, creates a new instance of the block. | `false` | no | -| `translate` | | `true|false` | no | -| `xsi:type` | Argument type. | `string|boolean|object|number|null|array|options|url|helper` | yes | +| `translate` | | `true` or `false` | no | +| `xsi:type` | Argument type. | `string`, `boolean`, `object`, `number`, `null`, `array`, `options`, `url`, `helper` | yes | To pass multiple arguments use the following construction: From d2a06be4a766c1335346a1beb26d4a9d06a4620c Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sat, 19 Oct 2019 22:13:25 +0530 Subject: [PATCH 06/28] Fixed improper rendering of subheading --- guides/v2.2/frontend-dev-guide/conventions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/v2.2/frontend-dev-guide/conventions.md b/guides/v2.2/frontend-dev-guide/conventions.md index 0a3bf8fde06..c194b8acb9d 100644 --- a/guides/v2.2/frontend-dev-guide/conventions.md +++ b/guides/v2.2/frontend-dev-guide/conventions.md @@ -11,7 +11,7 @@ Magento application components, including modules, themes, and language packages The following relative paths are used for modules and themes: -**- ``** +### `` [Theme](https://glossary.magento.com/theme) directory. Usually used when talking about custom themes, or any theme in general. @@ -20,7 +20,7 @@ For Magento out of the box [frontend](https://glossary.magento.com/frontend) the - `app/design/frontend//` - `vendor/magento/theme-frontend-` -**- ``** +### `` Module directory. When talking about a particular Magento module, the following notation is used: ``, where `X` would indicate the module's name. The directory for module `X` in the Magento installation directory would be one of the following: From f6b7190ab6e3641be994985cf6ea393342f0e4cd Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sun, 20 Oct 2019 12:22:30 +0530 Subject: [PATCH 07/28] Fixed incorrect casing of word --- guides/v2.2/frontend-dev-guide/css-topics/css-critical-path.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/frontend-dev-guide/css-topics/css-critical-path.md b/guides/v2.2/frontend-dev-guide/css-topics/css-critical-path.md index 8552709b28a..1d68bda33c7 100644 --- a/guides/v2.2/frontend-dev-guide/css-topics/css-critical-path.md +++ b/guides/v2.2/frontend-dev-guide/css-topics/css-critical-path.md @@ -27,7 +27,7 @@ Make sure that there is a `critical.css` file for your theme. Other non-critical The 'critical' CSS file should be located in `app/design/frontend///web/css/critical.css` The default Luma theme critical CSS file is located in `app/design/frontend/Magento/luma/web/css/critical.css` If there is not a `critical.css` file for the custom theme, but there is one for the Luma theme, Luma's `critical.css` will be used. -THe critical css file path can also be configured in `di.xml` as a constructor `filePath` argument in the `Magento\Theme\Block\Html\Header\CriticalCss` block. +The critical css file path can also be configured in `di.xml` as a constructor `filePath` argument in the `Magento\Theme\Block\Html\Header\CriticalCss` block. To generate a critical CSS for your theme, critical path CSS generators like [Penthouse](https://www.npmjs.com/package/penthouse) or [Critical](https://www.npmjs.com/package/critical) can be used, or you can create it yourself. While creating critical CSS, adhere to the following principles: From 3a090c6bdc6b836731fb4030fe5893e949dd236d Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sun, 20 Oct 2019 14:56:37 +0530 Subject: [PATCH 08/28] Removed unncessary and improperly rendered example link --- guides/v2.2/frontend-dev-guide/themes/theme-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/frontend-dev-guide/themes/theme-structure.md b/guides/v2.2/frontend-dev-guide/themes/theme-structure.md index 674730f6f29..5d2408cd0b1 100644 --- a/guides/v2.2/frontend-dev-guide/themes/theme-structure.md +++ b/guides/v2.2/frontend-dev-guide/themes/theme-structure.md @@ -83,7 +83,7 @@ The directories and files structure described below is the most extended one. It optional - Module-specific styles (.css and/or .less files). General styles for the module are in the _module.less file, and styles for widgets are in _widgets.less

Ex: [Module_Theme]({{ site.mage2bloburl }}/{{ page.guide_version }}/app/code/Magento/Theme/view/frontend/web/css) or description field should be corrected. + Module-specific styles (.css and/or .less files). General styles for the module are in the _module.less file, and styles for widgets are in _widgets.less From 57ff5ed0539d4c3a2e7981263159421ac9bb7fd4 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sun, 20 Oct 2019 15:00:11 +0530 Subject: [PATCH 09/28] Fixed inconsistent casing --- guides/v2.2/frontend-dev-guide/themes/theme-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/frontend-dev-guide/themes/theme-structure.md b/guides/v2.2/frontend-dev-guide/themes/theme-structure.md index 674730f6f29..81c5eb49790 100644 --- a/guides/v2.2/frontend-dev-guide/themes/theme-structure.md +++ b/guides/v2.2/frontend-dev-guide/themes/theme-structure.md @@ -150,7 +150,7 @@ The directories and files structure described below is the most extended one. It /media - Optional + optional This directory contains a theme preview (a screenshot of your theme). From 3a3b18e5d42543501bfa41ce573ca1e1c47d321f Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Sun, 20 Oct 2019 16:58:28 +0300 Subject: [PATCH 10/28] docs(links): duplicate scheme in fastly.com link. Removed additional `https://` scheme in fastly.com (CDN service) link --- guides/v2.2/cloud/project/projects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/cloud/project/projects.md b/guides/v2.2/cloud/project/projects.md index b461038d18a..fa7027c6a7e 100644 --- a/guides/v2.2/cloud/project/projects.md +++ b/guides/v2.2/cloud/project/projects.md @@ -44,7 +44,7 @@ With your {{site.data.var.ece}} account created, you can log into the Project We Your project includes [Fastly]({{ page.baseurl }}/cloud/cdn/cloud-fastly.html), [New Relic]({{ page.baseurl }}/cloud/project/new-relic.html), and [Blackfire]({{ page.baseurl }}/cloud/project/project-integrate-blackfire.html) services. The project details display information for your project plan and important licenses and tokens for these integrations. Only the Account Owner has initial access to the credentials and services. You should provide these credentials to technical and developer resources as needed. -- [Fastly](https://https://www.fastly.com/) provides content delivery (CDN), image optimization, and security services (DDoS and WAF) for your {{ site.data.var.ece }} projects. See [Get Fastly credentials]({{ page.baseurl }}/cloud/cdn/configure-fastly.html). +- [Fastly](https://www.fastly.com/) provides content delivery (CDN), image optimization, and security services (DDoS and WAF) for your {{ site.data.var.ece }} projects. See [Get Fastly credentials]({{ page.baseurl }}/cloud/cdn/configure-fastly.html). - [Blackfire.io Profiler](https://blackfire.io/magento) provides tools for reviewing and optimizing Magento and your store in your environments. The profiler checks every method and call, determining what occurs with performance metrics per step. From 7c0622dc1658b34b24d207cfb6c929358bc69d73 Mon Sep 17 00:00:00 2001 From: Namrata Vora Date: Mon, 21 Oct 2019 14:37:48 +0530 Subject: [PATCH 11/28] Removed unnecessary translate attribute from xml. --- .../ext-best-practices/tutorials/dynamic-row-system-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/ext-best-practices/tutorials/dynamic-row-system-config.md b/guides/v2.2/ext-best-practices/tutorials/dynamic-row-system-config.md index e51ac225520..3b56a2fb00f 100644 --- a/guides/v2.2/ext-best-practices/tutorials/dynamic-row-system-config.md +++ b/guides/v2.2/ext-best-practices/tutorials/dynamic-row-system-config.md @@ -17,7 +17,7 @@ This tutorial shows you how to add a new dynamic rows system configuration in th ```xml -
+
From 88604b7b8a69487c3c455891287f04b6d7ec0817 Mon Sep 17 00:00:00 2001 From: Nick Weisser Date: Mon, 21 Oct 2019 15:35:49 +0200 Subject: [PATCH 12/28] Add tip for installing existing language packs. --- guides/v2.3/frontend-dev-guide/translations/xlate.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guides/v2.3/frontend-dev-guide/translations/xlate.md b/guides/v2.3/frontend-dev-guide/translations/xlate.md index 43028d22168..a9db95fc5f7 100644 --- a/guides/v2.3/frontend-dev-guide/translations/xlate.md +++ b/guides/v2.3/frontend-dev-guide/translations/xlate.md @@ -104,6 +104,9 @@ You can generate a translation dictionary to use by itself (for example, to tran ## Language packages {#m2devgde-xlate-languagepack} +{: .bs-callout-tip } +Existing language packages can be installed using the [Extension Manager]({{ page.baseurl}}/comp-mgr/extens-man/extensman-main-pg.html) or [Composer]({{ page.baseurl }}/cloud/howtos/install-components.html) like any other extension. You can search for package names on Packagist. + Magento enables you to create the following types of language packages: * A set of `.csv` files for modules and themes. These packages files are intended to be deployed in modules. For example: From 1987e92ec558f10763bb6bcca99c5c2fc65c6d1b Mon Sep 17 00:00:00 2001 From: Aakash Jhawar Date: Mon, 21 Oct 2019 21:48:21 +0530 Subject: [PATCH 13/28] Correct statement about multiple db user set up (#5803) * Correct statement about multiple db user set up Per Slack conversation, removed confusing reference to setting up multiple DB users in MagentoCommerce Cloud * Minor spelling fix --- guides/v2.2/cloud/project/project-conf-files_services-mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/cloud/project/project-conf-files_services-mysql.md b/guides/v2.2/cloud/project/project-conf-files_services-mysql.md index dc2b79960c3..c1e4c5cda84 100644 --- a/guides/v2.2/cloud/project/project-conf-files_services-mysql.md +++ b/guides/v2.2/cloud/project/project-conf-files_services-mysql.md @@ -56,7 +56,7 @@ MySQL errors such as `PDO Exception: MySQL server has gone away` may be a result Optionally, you can set up multiple databases as well as multiple users with different permissions. -An _endpoint_ is a set of credentials (or users) with specific privileges. By default, there is one endpoint named `mysql` that has administrator access to all defined databases. To set up multiple databases and users, you must define multiple endpoints in the services.yaml file and declare the relationships in the .magento.app.yaml file. +An _endpoint_ is a set of credentials (or users) with specific privileges. By default, there is one endpoint named `mysql` that has administrator access to all defined databases. To set up multiple database users, you must define multiple endpoints in the services.yaml file and declare the relationships in the .magento.app.yaml file. {: .bs-callout-warning} You cannot use multiple _databases_ with {{site.data.var.ee}} at this time, but you **can** create multiple endpoints to restrict access to the `main` database. From 68aa2e1831ed95a6c296ddf8769a7a33b0c6f70e Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Mon, 21 Oct 2019 20:14:25 +0300 Subject: [PATCH 14/28] PayPal blog link PayPal engineering blog moved to medium.com --- _includes/install/paypal-tls1-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/install/paypal-tls1-2.md b/_includes/install/paypal-tls1-2.md index e4387c83bfd..1d181f6f145 100644 --- a/_includes/install/paypal-tls1-2.md +++ b/_includes/install/paypal-tls1-2.md @@ -5,7 +5,7 @@ PayPal recently announced they will require Transport Layer Security (TLS) versi More information: * [Details (PayPal security bulletin)](https://www.paypal.com/uk/webapps/mpp/ssl-security-update) -* [PayPal live payments switching in June 2016 (PayPal technical blog)](https://devblog.paypal.com/upcoming-security-changes-notice/#tls) +* [PayPal live payments switching in June 2016 (PayPal technical blog)](https://medium.com/paypal-engineering/security-related-changes-required-to-avoid-service-disruption-82caf7778328#0422) ### Symptom From 4ee92f13efb7061f755cc5c59c18ad03474c770c Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Mon, 21 Oct 2019 23:34:29 +0530 Subject: [PATCH 15/28] Update guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md Co-Authored-By: Kevin Harper --- guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md index 9e759549eaf..c4a18628507 100644 --- a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md +++ b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md @@ -60,7 +60,7 @@ We recommend always adding a `name` to blocks. Otherwise, it is given a random n | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | -| `class` | Name of a class that implements rendering of a particular block. An object of this class is responsible for actual rendering of block output. | Fully qualified class name E.g. `Vendor\Module\Block\Class` | no | +| `class` | Name of a class that implements rendering of a particular block. An object of this class is responsible for actual rendering of block output. | A fully-qualified class name, such as `Vendor\Module\Block\Class` | no | |`name` | Name that can be used to address the block to which this attribute is assigned. The name must be unique per generated page. If not specified, an automatic name will be assigned in the format ANONYMOUS_n | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Should start with a letter. Case-sensitive. | no | | `before` | Used to position the block before an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block before all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-) | no | | `after` | Used to position the block after an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block after all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-) | no | From 9d35df8cc3237b46c6c1abb9cfb1c11176cb3622 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Mon, 21 Oct 2019 23:34:53 +0530 Subject: [PATCH 16/28] Update guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md Co-Authored-By: Kevin Harper --- guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md index c4a18628507..c11c698326a 100644 --- a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md +++ b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md @@ -64,7 +64,7 @@ We recommend always adding a `name` to blocks. Otherwise, it is given a random n |`name` | Name that can be used to address the block to which this attribute is assigned. The name must be unique per generated page. If not specified, an automatic name will be assigned in the format ANONYMOUS_n | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Should start with a letter. Case-sensitive. | no | | `before` | Used to position the block before an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block before all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-) | no | | `after` | Used to position the block after an element under the same parent. The element name or alias name is specified in the value. Use dash (-) to position the block after all other elements of its level of nesting. See [before and after attributes](#fedg_xml-instrux_before-after) for details. | Element name or dash (-) | no | -| `template` | A template that represents the functionality of the block to which this attribute is assigned. | Vendor_Module::path/to/template.phtml (Scope is already in `templates` directory of module) | no | +| `template` | A template that represents the functionality of the block to which this attribute is assigned. | `Vendor_Module::path/to/template.phtml` (Scope is already in the `templates` directory of the module) | no | | `as` | An alias name that serves as identifier in the scope of the parent element. | 0-9, A-Z, a-z, underscore (_), period (.), dash (-). Case-sensitive. | no | | `cacheable` | Defines whether a block element is cacheable. This can be used for development purposes and to make needed elements of the page dynamic. | `true` or `false` | no | | `ifconfig` | Makes the block's visibility dependent on a system configuration field. | XPath to the system configuration field. E.g. `contact/contact/enabled` | no | From 784eb35f88aa5db18cb5a44e5a220f3294d7ac88 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Mon, 21 Oct 2019 23:35:21 +0530 Subject: [PATCH 17/28] Update guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md Co-Authored-By: Kevin Harper --- guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md index c11c698326a..5ca5faae2af 100644 --- a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md +++ b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md @@ -165,7 +165,7 @@ Calls public methods on the block API. | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | -| `method` | Name of the public method of the block class this tag is located in that is called during block generation. | Method name in block | yes | +| `method` | The public method that is called during block generation. | The method name in the block | yes | To pass parameters, use the [``](#argument) instruction. From 241abc3c24227d4bfbe47221a4e192a1d6509229 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Mon, 21 Oct 2019 23:36:16 +0530 Subject: [PATCH 18/28] Update guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md Co-Authored-By: Kevin Harper --- guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md index 5ca5faae2af..5b4ed370b93 100644 --- a/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md +++ b/guides/v2.3/frontend-dev-guide/layouts/xml-instructions.md @@ -180,7 +180,7 @@ To pass parameters to a block use the [``](#argument) instr | Attribute | Description | Values | Required? | |:------- |:------ |:------ |:------ | | `remove` | Allows to remove or cancel the removal of the element. When a container is removed, its child elements are removed as well. | `true` or `false` | no | -| `display` | Allows you to disable rendering of specific block or container with all its children (both set directly and by reference). The block's/container's and its children' respective PHP objects are still generated and available for manipulation. | `true` or `false` | no | +| `display` | Allows you to disable rendering of specific block or container with all its children (both set directly and by reference). The PHP objects of the block or container and its children are still generated and available for manipulation. | `true` or `false` | no | - The `remove` attribute is optional and its default value is `false`. From 4c0ae789fbe7fc9db82d058a897728cfee75e4b8 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Mon, 21 Oct 2019 23:37:49 +0530 Subject: [PATCH 19/28] Added a period --- guides/v2.2/frontend-dev-guide/themes/theme-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.2/frontend-dev-guide/themes/theme-structure.md b/guides/v2.2/frontend-dev-guide/themes/theme-structure.md index 5d2408cd0b1..514ad3fbee0 100644 --- a/guides/v2.2/frontend-dev-guide/themes/theme-structure.md +++ b/guides/v2.2/frontend-dev-guide/themes/theme-structure.md @@ -83,7 +83,7 @@ The directories and files structure described below is the most extended one. It optional - Module-specific styles (.css and/or .less files). General styles for the module are in the _module.less file, and styles for widgets are in _widgets.less + Module-specific styles (.css and/or .less files). General styles for the module are in the _module.less file, and styles for widgets are in _widgets.less. From 4c7676b742ba03809b0659875fc68487bfd16054 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 21 Oct 2019 14:42:16 -0500 Subject: [PATCH 20/28] Grammar fix. --- guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md b/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md index 373e223a6f6..57f4e31c5c7 100644 --- a/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md +++ b/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md @@ -193,7 +193,7 @@ Attribute | Description `onDelete` | Foreign key trigger. The value must be `CASCADE`, `SET NULL`, or `NO ACTION` {: .bs-callout-info } -To keep entities identifiers as immutable values the declarative schema does not support `ON UPDATE` action for constraint. +To keep entity identifiers as immutable values, the declarative schema does not support `ON UPDATE` action for `constraint`. Example: From ae6c7460a0516ec85974ecb6b61c7f6faca87fde Mon Sep 17 00:00:00 2001 From: Roman Snitko Date: Tue, 22 Oct 2019 10:56:03 +0300 Subject: [PATCH 21/28] Minor code formatting for Modal widget page (+unified heading styles for 2 options) --- .../javascript-dev-guide/widgets/widget_modal.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/guides/v2.2/javascript-dev-guide/widgets/widget_modal.md b/guides/v2.2/javascript-dev-guide/widgets/widget_modal.md index 0c1c00ec457..342629dcd41 100644 --- a/guides/v2.2/javascript-dev-guide/widgets/widget_modal.md +++ b/guides/v2.2/javascript-dev-guide/widgets/widget_modal.md @@ -53,7 +53,7 @@ The modal widget has the following options: - [trigger](#modal_trigger) - [type](#modal_type) -### autoOpen {#modal_autoopen} +### `autoOpen` {#modal_autoopen} Automatically open the modal window when the widget is initialized. @@ -72,7 +72,7 @@ Array of buttons for action pane. buttons: [{ text: '', class: '', - click: function() {} //handler on button click + click: function () {} //handler on button click }] ``` @@ -82,13 +82,13 @@ buttons: [{ buttons: [{ text: $.mage.__('Ok'), class: '', - click: function() { + click: function () { this.closeModal(); } }] ``` -### clickableOverlay {#modal_clickableOverlay} +### `clickableOverlay` {#modal_clickableOverlay} Close the modal window when a user clicks on the overlay. @@ -215,8 +215,8 @@ You can listen to these events in two ways: Use jQuery's [`on`](http://api.jquery.com/on/) function: ```javascript -var modal = $( "#modal_content").modal({...}); -modal.on( "modalclosed", function() { +var modal = $('#modal_content').modal({...}); +modal.on('modalclosed', function () { // Do some action when modal closed }); ``` @@ -226,7 +226,7 @@ Or assign a callback as a property when creating a modal instance: ```javascript $('#modal_content').modal({ ... - closed: function(){ + closed: function (){ // Do some action when modal closed } }); From 997211a8b2c60c3906ba36f3386b0aa235f8e74e Mon Sep 17 00:00:00 2001 From: Yogesh Suhagiya Date: Tue, 22 Oct 2019 15:08:52 +0530 Subject: [PATCH 22/28] Added round brackets as post fix to method name --- .../widgets/widget_gallery.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/guides/v2.2/javascript-dev-guide/widgets/widget_gallery.md b/guides/v2.2/javascript-dev-guide/widgets/widget_gallery.md index 302c15ed2a2..0b5c9ab19ba 100644 --- a/guides/v2.2/javascript-dev-guide/widgets/widget_gallery.md +++ b/guides/v2.2/javascript-dev-guide/widgets/widget_gallery.md @@ -497,25 +497,25 @@ api.%method_name%(); All available methods are listed in the following paragraph. -### Methods {#gallery_methods} +## Methods {#gallery_methods} -* [first](#gallery_first) -* [last](#gallery_last) -* [next](#gallery_next) -* [prev](#gallery_prev) -* [seek](#gallery_seek) -* [updateData](#gallery_updateData) -* [updateOptions](#gallery_updateData) +* [first()](#gallery_first) +* [last()](#gallery_last) +* [next()](#gallery_next) +* [prev()](#gallery_prev) +* [seek()](#gallery_seek) +* [updateData()](#gallery_updateData) +* [updateOptions()](#gallery_updateData) -#### `first()` {#gallery_first} +### `first()` {#gallery_first} Displays the first preview image. -#### `last()` {#gallery_last} +### `last()` {#gallery_last} Displays the last preview image. -#### `next()` {#gallery_next} +### `next()` {#gallery_next} Image ID is passed as an argument. Displays the next preview image. @@ -524,7 +524,7 @@ If the last image ID is passed, the behavior depends on whether [loop](#gallery_ * if loop is enabled, the first image is displayed. * if loop is disabled, does not change the displayed image. -#### `prev()` {#gallery_prev} +### `prev()` {#gallery_prev} Displays the previous preview image. @@ -533,7 +533,7 @@ If the first image ID is passed, the behavior depends on whether [loop](#gallery * if loop is enabled, the last image is displayed. * if loop is disabled, does not change the displayed image. -#### `seek()` {#gallery_seek} +### `seek()` {#gallery_seek} Displays the image with the specified `index`. @@ -546,7 +546,7 @@ Behavior: * `seek(-1)` displays the last image. * If the argument is a number bigger than the number of items, or less than "-(number of items)" the gallery shows the modulus of the following division: total images number divided by the argument number. -#### `updateData()` {#gallery_updateData} +### `updateData()` {#gallery_updateData} Add new items to the gallery. @@ -560,7 +560,7 @@ api.updateData([{ }]); ``` -#### `updateOptions()` {#gallery_updateOptions} +### `updateOptions()` {#gallery_updateOptions} Updates options of active breakpoint or default gallery options, if there is no active breakpoint. Example: From eff97c101ecddfc3a5db9d2195d1ea92c1576bb8 Mon Sep 17 00:00:00 2001 From: Yogesh Suhagiya Date: Tue, 22 Oct 2019 15:35:29 +0530 Subject: [PATCH 23/28] Corrected data type and default value --- .../v2.2/javascript-dev-guide/widgets/widget-row-builder.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/v2.2/javascript-dev-guide/widgets/widget-row-builder.md b/guides/v2.2/javascript-dev-guide/widgets/widget-row-builder.md index 21bedafa960..e5d7d351655 100644 --- a/guides/v2.2/javascript-dev-guide/widgets/widget-row-builder.md +++ b/guides/v2.2/javascript-dev-guide/widgets/widget-row-builder.md @@ -199,9 +199,9 @@ Max number of rows. The message selector of an element which appears when the max number of rows has been exceeded. -**Type**: Integer +**Type**: String -**Default value**: `1000` +**Default value**: `#max-registrant-message` ## Code sample From 9056f4e25d3f828733890741fd9f62bf7a3b7c35 Mon Sep 17 00:00:00 2001 From: Sergiy Zhovnir Date: Wed, 23 Oct 2019 10:29:03 +0300 Subject: [PATCH 24/28] Fixed the wrong path to cron.php file --- .../archi_perspectives/components/modules/mod_and_areas.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/v2.2/architecture/archi_perspectives/components/modules/mod_and_areas.md b/guides/v2.2/architecture/archi_perspectives/components/modules/mod_and_areas.md index 3935eb218d1..9516cf13dce 100644 --- a/guides/v2.2/architecture/archi_perspectives/components/modules/mod_and_areas.md +++ b/guides/v2.2/architecture/archi_perspectives/components/modules/mod_and_areas.md @@ -20,7 +20,7 @@ Magento is organized into these main areas: * **Basic** (`base`): used as a fallback for files absent in `adminhtml` and `frontend` areas. -* **Cron** (`crontab`): In `cron.php`, the [`\Magento\Framework\App\Cron`]({{ site.mage2bloburl }}/{{ page.guide_version }}/lib/internal/Magento/Framework/App/Cron.php#L68-L70){:target="_blank"} class always loads the 'crontab' area. +* **Cron** (`crontab`): In `pub/cron.php`, the [`\Magento\Framework\App\Cron`]({{ site.mage2bloburl }}/{{ page.guide_version }}/lib/internal/Magento/Framework/App/Cron.php#L68-L70){:target="_blank"} class always loads the 'crontab' area. You can also send requests to Magento using the SOAP and REST APIs. These two areas @@ -57,4 +57,4 @@ Note that only the **execute()** method of any given controller is executed. {:.ref-header} Related topics -[Module overview]({{page.baseurl}}/architecture/archi_perspectives/components/modules/mod_intro.html) \ No newline at end of file +[Module overview]({{page.baseurl}}/architecture/archi_perspectives/components/modules/mod_intro.html) From ea09bc968083b860c1aaa039686ae523fb22a6a2 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Wed, 23 Oct 2019 10:54:27 -0500 Subject: [PATCH 25/28] Fixed linting errors. --- .../declarative-schema/db-schema.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md b/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md index 57f4e31c5c7..02fd1328905 100644 --- a/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md +++ b/guides/v2.3/extension-dev-guide/declarative-schema/db-schema.md @@ -5,9 +5,9 @@ title: Configure declarative schema Before Magento 2.3, extension developers were required to write code (PHP scripts) to change the database schema. The following types of scripts existed before Magento 2.3: -* InstallData and InstallSchema scripts, which are executed the first time a module is installed. -* UpgradeData and UpgradeSchema incremental scripts, which supplement an existing module schema. -* Recurring scripts, which are executed each time you install or upgrade Magento. +* InstallData and InstallSchema scripts, which are executed the first time a module is installed. +* UpgradeData and UpgradeSchema incremental scripts, which supplement an existing module schema. +* Recurring scripts, which are executed each time you install or upgrade Magento. Each script iteratively adds changes. During the installation process, upgrade scripts apply only those changes that have not been applied yet. For example, if you have a module with version 2.1.8 installed and the latest version is 2.1.11, then the upgrade script changes for 2.1.9, 2.1.10, and 2.1.11 will be applied, in order, when you upgrade to 2.1.11. Each upgrade script is responsible for checking the required version for each change to apply. The Magento installation only knows that a module has an upgrade script, not what versions it affected. That procedure is called _migration setup_ or _migration scripts_. @@ -76,9 +76,9 @@ Attribute | Description A `table` node can contain three types of subnodes: -* `column` -* `constraint` -* `index` +* `column` +* `constraint` +* `index` #### `column` subnode From cb376a3f5148a94382a7d3b241615c1b836498ed Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Thu, 24 Oct 2019 18:11:35 +0300 Subject: [PATCH 26/28] Wiki Link Chnage Link to renamed wiki page updated. --- _includes/contributor/labels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/contributor/labels.md b/_includes/contributor/labels.md index 73b8a520920..8abff189c28 100644 --- a/_includes/contributor/labels.md +++ b/_includes/contributor/labels.md @@ -48,7 +48,7 @@ Example labels: ### Components {:.no_toc} -Component labels indicate the components affected by the Pull Request. To learn more about available components and assigned architects, see [Magento Components Assignment](https://github.com/magento/magento2/wiki/Magento-Components-Assignment). +Component labels indicate the components affected by the Pull Request. To learn more about available components and assigned architects, see [Magento Components Assignment](https://github.com/magento/architecture/wiki/Component-Assignments). Example labels: From a0ab9784043b2d3a08546053946e6e6477315001 Mon Sep 17 00:00:00 2001 From: Jeanne Frontain Date: Thu, 24 Oct 2019 21:06:50 -0500 Subject: [PATCH 27/28] fixed broken link and removed linkstoindividualcontributor GH profiles --- .../release-notes/engcomm-2-3-3-issues.md | 352 +++++++++--------- .../release-notes/engcomm-2-3-3-partner.md | 2 +- 2 files changed, 177 insertions(+), 177 deletions(-) diff --git a/_includes/release-notes/engcomm-2-3-3-issues.md b/_includes/release-notes/engcomm-2-3-3-issues.md index 3d3cef6ab6e..a1865a75142 100644 --- a/_includes/release-notes/engcomm-2-3-3-issues.md +++ b/_includes/release-notes/engcomm-2-3-3-issues.md @@ -1,181 +1,181 @@ | Contributing community member | Related GitHub Issues | Pull Requests | | ------- | ------- | ------- | -| [airbone42](https://github.com/airbone42) | [#533](https://github.com/magento/magento2/issues/533) | [magento/graphql-ce#578](https://github.com/magento/graphql-ce/pull/578) | -| [tzyganu](https://github.com/tzyganu) | [#601](https://github.com/magento/magento2/issues/601) | [magento/graphql-ce#632](https://github.com/magento/graphql-ce/pull/632) | -| [pmclain](https://github.com/pmclain) | [#631](https://github.com/magento/magento2/issues/631) | [magento/graphql-ce#634](https://github.com/magento/graphql-ce/pull/634) | -| [dipti2jcommerce](https://github.com/dipti2jcommerce) | [#20124](https://github.com/magento/magento2/issues/20124) | [magento/magento2#20135](https://github.com/magento/magento2/pull/20135) | -| [WalterSmulders](https://github.com/WalterSmulders) | [#21978](https://github.com/magento/magento2/issues/21978) | [magento/magento2#22020](https://github.com/magento/magento2/pull/22020) | -| [afavata](https://github.com/afavata) | [#22045](https://github.com/magento/magento2/issues/22045) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | -| [Userr017](https://github.com/Userr017) | [#22134](https://github.com/magento/magento2/issues/22134) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | -| [sjb9774](https://github.com/sjb9774) | [#22249](https://github.com/magento/magento2/issues/22249) | [magento/magento2#22287](https://github.com/magento/magento2/pull/22287) | -| [bhavik43](https://github.com/bhavik43) | [#22527](https://github.com/magento/magento2/issues/22527) | [magento/magento2#22532](https://github.com/magento/magento2/pull/22532) | -| [tzyganu](https://github.com/tzyganu) | [#628](https://github.com/magento/magento2/issues/628) | [magento/graphql-ce#636](https://github.com/magento/graphql-ce/pull/636) | -| [fzaninotto](https://github.com/fzaninotto) | [#640](https://github.com/magento/magento2/issues/640) | [magento/graphql-ce#648](https://github.com/magento/graphql-ce/pull/648) | -| [akulkarni9](https://github.com/akulkarni9) | [#603](https://github.com/magento/magento2/issues/603) | [magento/graphql-ce#653](https://github.com/magento/graphql-ce/pull/653) | -| [abrarpathan19](https://github.com/abrarpathan19) | [#22406](https://github.com/magento/magento2/issues/22406) | [magento/magento2#22423](https://github.com/magento/magento2/pull/22423) | -| [justinharris1986](https://github.com/justinharris1986) | [#19515](https://github.com/magento/magento2/issues/19515) | [magento/magento2#19767](https://github.com/magento/magento2/pull/19767) | -| [mam08ixo](https://github.com/mam08ixo) | [#21473](https://github.com/magento/magento2/issues/21473) | [magento/magento2#21992](https://github.com/magento/magento2/pull/21992) | -| [vishal-7037](https://github.com/vishal-7037) | [#22641](https://github.com/magento/magento2/issues/22641) | [magento/magento2#22643](https://github.com/magento/magento2/pull/22643) | -| [cedarvinda](https://github.com/cedarvinda) | [#22647](https://github.com/magento/magento2/issues/22647) | [magento/magento2#22656](https://github.com/magento/magento2/pull/22656) | -| [MichaelThessel](https://github.com/MichaelThessel) | [#22395](https://github.com/magento/magento2/issues/22395) | [magento/magento2#22720](https://github.com/magento/magento2/pull/22720) | -| [gfxguru](https://github.com/gfxguru) | [#198](https://github.com/magento/magento2/issues/198) | [magento/graphql-ce#371](https://github.com/magento/graphql-ce/pull/371) | -| [ed29](https://github.com/ed29) | [#436](https://github.com/magento/magento2/issues/436) | [magento/graphql-ce#445](https://github.com/magento/graphql-ce/pull/445) | -| [vigentocommerce](https://github.com/vigentocommerce) | [#309](https://github.com/magento/magento2/issues/309) | [magento/graphql-ce#504](https://github.com/magento/graphql-ce/pull/504) | +| Vitaliy Boyko | [#533](https://github.com/magento/magento2/issues/533) | [magento/graphql-ce#578](https://github.com/magento/graphql-ce/pull/578) | +| tzyganu | [#601](https://github.com/magento/magento2/issues/601) | [magento/graphql-ce#632](https://github.com/magento/graphql-ce/pull/632) | +| pmclain | [#631](https://github.com/magento/magento2/issues/631) | [magento/graphql-ce#634](https://github.com/magento/graphql-ce/pull/634) | +| dipti2jcommerce | [#20124](https://github.com/magento/magento2/issues/20124) | [magento/magento2#20135](https://github.com/magento/magento2/pull/20135) | +| Walter Smulders | [#21978](https://github.com/magento/magento2/issues/21978) | [magento/magento2#22020](https://github.com/magento/magento2/pull/22020) | +| afavata | [#22045](https://github.com/magento/magento2/issues/22045) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | +| Userr017 | [#22134](https://github.com/magento/magento2/issues/22134) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | +| sjb9774 | [#22249](https://github.com/magento/magento2/issues/22249) | [magento/magento2#22287](https://github.com/magento/magento2/pull/22287) | +| bhavik43 | [#22527](https://github.com/magento/magento2/issues/22527) | [magento/magento2#22532](https://github.com/magento/magento2/pull/22532) | +| tzyganu | [#628](https://github.com/magento/magento2/issues/628) | [magento/graphql-ce#636](https://github.com/magento/graphql-ce/pull/636) | +| fzaninotto | [#640](https://github.com/magento/magento2/issues/640) | [magento/graphql-ce#648](https://github.com/magento/graphql-ce/pull/648) | +| akulkarni9 | [#603](https://github.com/magento/magento2/issues/603) | [magento/graphql-ce#653](https://github.com/magento/graphql-ce/pull/653) | +| abrarpathan19 | [#22406](https://github.com/magento/magento2/issues/22406) | [magento/magento2#22423](https://github.com/magento/magento2/pull/22423) | +| justinharris1986 | [#19515](https://github.com/magento/magento2/issues/19515) | [magento/magento2#19767](https://github.com/magento/magento2/pull/19767) | +| mam08ixo | [#21473](https://github.com/magento/magento2/issues/21473) | [magento/magento2#21992](https://github.com/magento/magento2/pull/21992) | +| vishal-7037 | [#22641](https://github.com/magento/magento2/issues/22641) | [magento/magento2#22643](https://github.com/magento/magento2/pull/22643) | +| cedarvinda | [#22647](https://github.com/magento/magento2/issues/22647) | [magento/magento2#22656](https://github.com/magento/magento2/pull/22656) | +| Michael Thessel | [#22395](https://github.com/magento/magento2/issues/22395) | [magento/magento2#22720](https://github.com/magento/magento2/pull/22720) | +| gfxguru | [#198](https://github.com/magento/magento2/issues/198) | [magento/graphql-ce#371](https://github.com/magento/graphql-ce/pull/371) | +| ed29 | [#436](https://github.com/magento/magento2/issues/436) | [magento/graphql-ce#445](https://github.com/magento/graphql-ce/pull/445) | +| vigentocommerce | [#309](https://github.com/magento/magento2/issues/309) | [magento/graphql-ce#504](https://github.com/magento/graphql-ce/pull/504) | | beckindesigns | [#535](https://github.com/magento/magento2/issues/535) | [magento/graphql-ce#650](https://github.com/magento/graphql-ce/pull/650) | -| [tzyganu](https://github.com/tzyganu) | [#658](https://github.com/magento/magento2/issues/658) | [magento/graphql-ce#665](https://github.com/magento/graphql-ce/pull/665), [magento/graphql-ce#744](https://github.com/magento/graphql-ce/pull/744) | -| [tzyganu](https://github.com/tzyganu) | [#657](https://github.com/magento/magento2/issues/657) | [magento/graphql-ce#666](https://github.com/magento/graphql-ce/pull/666) | -| [fwolfst](https://github.com/fwolfst) | [#12612](https://github.com/magento/magento2/issues/12612) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | -| [Leone](https://github.com/Leone) | [#22556](https://github.com/magento/magento2/issues/22556) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | -| [VincentMarmiesse](https://github.com/VincentMarmiesse) | [#20843](https://github.com/magento/magento2/issues/20843) | [magento/magento2#22560](https://github.com/magento/magento2/pull/22560) | -| [cedarvinda](https://github.com/cedarvinda) | [#22636](https://github.com/magento/magento2/issues/22636) | [magento/magento2#22644](https://github.com/magento/magento2/pull/22644) | -| [Surabhi-Cedcoss](https://github.com/Surabhi-Cedcoss) | [#22640](https://github.com/magento/magento2/issues/22640) | [magento/magento2#22655](https://github.com/magento/magento2/pull/22655) | -| [mage2pratik](https://github.com/mage2pratik) | [#20906](https://github.com/magento/magento2/issues/20906) | [magento/magento2#22739](https://github.com/magento/magento2/pull/22739) | -| [Patelcc](https://github.com/Patelcc) | [#22771](https://github.com/magento/magento2/issues/22771) | [magento/magento2#22779](https://github.com/magento/magento2/pull/22779) | -| [DigitalStartupUK](https://github.com/DigitalStartupUK) | [#22788](https://github.com/magento/magento2/issues/22788) | [magento/magento2#22791](https://github.com/magento/magento2/pull/22791) | -| [Hoszi](https://github.com/Hoszi) | [#18651](https://github.com/magento/magento2/issues/18651) | [magento/magento2#19584](https://github.com/magento/magento2/pull/19584) | -| [gwharton](https://github.com/gwharton) | [#21672](https://github.com/magento/magento2/issues/21672) | [magento/magento2#21675](https://github.com/magento/magento2/pull/21675), [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) | -| [mtwegrzycki](https://github.com/mtwegrzycki) | [#22028](https://github.com/magento/magento2/issues/22028) | [magento/magento2#22575](https://github.com/magento/magento2/pull/22575) | -| [Dharmeshvaja91](https://github.com/Dharmeshvaja91) | [#21558](https://github.com/magento/magento2/issues/21558) | [magento/magento2#22794](https://github.com/magento/magento2/pull/22794) | -| [jhruehl](https://github.com/jhruehl) | [#22127](https://github.com/magento/magento2/issues/22127) | [magento/magento2#22186](https://github.com/magento/magento2/pull/22186) | -| [magesanjay](https://github.com/magesanjay) | [#22639](https://github.com/magento/magento2/issues/22639) | [magento/magento2#22724](https://github.com/magento/magento2/pull/22724) | -| [cedarvinda](https://github.com/cedarvinda) | [#22676](https://github.com/magento/magento2/issues/22676) | [magento/magento2#22742](https://github.com/magento/magento2/pull/22742) | -| [JacobDrummond](https://github.com/JacobDrummond) | [#6659](https://github.com/magento/magento2/issues/6659) | [magento/magento2#22850](https://github.com/magento/magento2/pull/22850) | -| [BenSpace48](https://github.com/BenSpace48) | [#4628](https://github.com/magento/magento2/issues/4628) | [magento/magento2#22854](https://github.com/magento/magento2/pull/22854) | -| [samtay](https://github.com/samtay) | [#3795](https://github.com/magento/magento2/issues/3795) | [magento/magento2#21397](https://github.com/magento/magento2/pull/21397) | -| [serhiyzhovnir](https://github.com/serhiyzhovnir) | [#22786](https://github.com/magento/magento2/issues/22786) | [magento/magento2#22787](https://github.com/magento/magento2/pull/22787) | -| [eduard13](https://github.com/eduard13) | [#22822](https://github.com/magento/magento2/issues/22822) | [magento/magento2#22823](https://github.com/magento/magento2/pull/22823) | -| [talset](https://github.com/talset) | [#21852](https://github.com/magento/magento2/issues/21852) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | -| [hostep](https://github.com/hostep) | [#22563](https://github.com/magento/magento2/issues/22563) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | -| [bhavik43](https://github.com/bhavik43) | [#22736](https://github.com/magento/magento2/issues/22736) | [magento/magento2#22795](https://github.com/magento/magento2/pull/22795) | -| [amitvishvakarma](https://github.com/amitvishvakarma) | [#22875](https://github.com/magento/magento2/issues/22875) | [magento/magento2#22876](https://github.com/magento/magento2/pull/22876) | -| [abrarpathan19](https://github.com/abrarpathan19) | [#21214](https://github.com/magento/magento2/issues/21214) | [magento/magento2#21215](https://github.com/magento/magento2/pull/21215) | -| [mikelevy300](https://github.com/mikelevy300) | [#22143](https://github.com/magento/magento2/issues/22143) | [magento/magento2#22307](https://github.com/magento/magento2/pull/22307) | -| [p-bystritsky](https://github.com/p-bystritsky) | [#22317](https://github.com/magento/magento2/issues/22317) | [magento/magento2#22444](https://github.com/magento/magento2/pull/22444) | -| [MichaelThessel](https://github.com/MichaelThessel) | [#22396](https://github.com/magento/magento2/issues/22396) | [magento/magento2#22513](https://github.com/magento/magento2/pull/22513) | -| [GrishmaNayee](https://github.com/GrishmaNayee) | [#22506](https://github.com/magento/magento2/issues/22506) | [magento/magento2#22520](https://github.com/magento/magento2/pull/22520) | -| [808brinks](https://github.com/808brinks) | [#22869](https://github.com/magento/magento2/issues/22869) | [magento/magento2#22893](https://github.com/magento/magento2/pull/22893) | -| [speedy008](https://github.com/speedy008) | [#22924](https://github.com/magento/magento2/issues/22924) | [magento/magento2#22926](https://github.com/magento/magento2/pull/22926) | -| [ipascual](https://github.com/ipascual) | [#20186](https://github.com/magento/magento2/issues/20186) | [magento/magento2#22947](https://github.com/magento/magento2/pull/22947) | -| [steadweb](https://github.com/steadweb) | [#574](https://github.com/magento/magento2/issues/574) | [magento/graphql-ce#694](https://github.com/magento/graphql-ce/pull/694) | -| [tzyganu](https://github.com/tzyganu) | [#686](https://github.com/magento/magento2/issues/686) | [magento/graphql-ce#695](https://github.com/magento/graphql-ce/pull/695) | -| [daniel-ifrim](https://github.com/daniel-ifrim) | [#22380](https://github.com/magento/magento2/issues/22380) | [magento/magento2#22387](https://github.com/magento/magento2/pull/22387) | -| [Cristiano81](https://github.com/Cristiano81) | [#18183](https://github.com/magento/magento2/issues/18183) | [magento/magento2#22718](https://github.com/magento/magento2/pull/22718) | -| [eduan](https://github.com/eduan) | [#22899](https://github.com/magento/magento2/issues/22899) | [magento/magento2#22914](https://github.com/magento/magento2/pull/22914) | -| [milindsingh](https://github.com/milindsingh) | [#22686](https://github.com/magento/magento2/issues/22686) | [magento/magento2#22687](https://github.com/magento/magento2/pull/22687) | -| [Sharkozp](https://github.com/Sharkozp) | [#22767](https://github.com/magento/magento2/issues/22767) | [magento/magento2#22772](https://github.com/magento/magento2/pull/22772) | -| [speedy008](https://github.com/speedy008) | [#20788](https://github.com/magento/magento2/issues/20788) | [magento/magento2#22931](https://github.com/magento/magento2/pull/22931) | -| [matin73](https://github.com/matin73) | [#23030](https://github.com/magento/magento2/issues/23030) | [magento/magento2#23033](https://github.com/magento/magento2/pull/23033) | -| [Den4ik](https://github.com/Den4ik) | [#23034](https://github.com/magento/magento2/issues/23034) | [magento/magento2#23035](https://github.com/magento/magento2/pull/23035) | -| [Vinai](https://github.com/Vinai) | [#12696](https://github.com/magento/magento2/issues/12696) | [magento/magento2#18459](https://github.com/magento/magento2/pull/18459) | -| [arnoudhgz](https://github.com/arnoudhgz) | [#13266](https://github.com/magento/magento2/issues/13266) | [magento/magento2#22071](https://github.com/magento/magento2/pull/22071) | -| [ihor-sviziev](https://github.com/ihor-sviziev) | [#22882](https://github.com/magento/magento2/issues/22882) | [magento/magento2#22884](https://github.com/magento/magento2/pull/22884) | -| [ashsmith](https://github.com/ashsmith) | [#23045](https://github.com/magento/magento2/issues/23045) | [magento/magento2#23046](https://github.com/magento/magento2/pull/23046) | -| [LouNik1984](https://github.com/LouNik1984) | [#16446](https://github.com/magento/magento2/issues/16446) | [magento/magento2#19184](https://github.com/magento/magento2/pull/19184) | -| [victortodoran](https://github.com/victortodoran) | [#14492](https://github.com/magento/magento2/issues/14492) | [magento/magento2#21394](https://github.com/magento/magento2/pull/21394) | -| [gwharton](https://github.com/gwharton) | [#21671](https://github.com/magento/magento2/issues/21671) | [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) | -| [ketan-krish](https://github.com/ketan-krish) | [#22425](https://github.com/magento/magento2/issues/22425) | [magento/magento2#22426](https://github.com/magento/magento2/pull/22426) | -| [squeegy06](https://github.com/squeegy06) | [#22511](https://github.com/magento/magento2/issues/22511) | [magento/magento2#22521](https://github.com/magento/magento2/pull/22521) | +| tzyganu | [#658](https://github.com/magento/magento2/issues/658) | [magento/graphql-ce#665](https://github.com/magento/graphql-ce/pull/665), [magento/graphql-ce#744](https://github.com/magento/graphql-ce/pull/744) | +| tzyganu | [#657](https://github.com/magento/magento2/issues/657) | [magento/graphql-ce#666](https://github.com/magento/graphql-ce/pull/666) | +| fwolfst | [#12612](https://github.com/magento/magento2/issues/12612) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | +| Leone | [#22556](https://github.com/magento/magento2/issues/22556) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | +| Vincent Marmiesse | [#20843](https://github.com/magento/magento2/issues/20843) | [magento/magento2#22560](https://github.com/magento/magento2/pull/22560) | +| cedarvinda | [#22636](https://github.com/magento/magento2/issues/22636) | [magento/magento2#22644](https://github.com/magento/magento2/pull/22644) | +| Surabhi Cedcoss | [#22640](https://github.com/magento/magento2/issues/22640) | [magento/magento2#22655](https://github.com/magento/magento2/pull/22655) | +| mage2pratik | [#20906](https://github.com/magento/magento2/issues/20906) | [magento/magento2#22739](https://github.com/magento/magento2/pull/22739) | +| Patelcc | [#22771](https://github.com/magento/magento2/issues/22771) | [magento/magento2#22779](https://github.com/magento/magento2/pull/22779) | +| DigitalStartupUK | [#22788](https://github.com/magento/magento2/issues/22788) | [magento/magento2#22791](https://github.com/magento/magento2/pull/22791) | +| Hoszi | [#18651](https://github.com/magento/magento2/issues/18651) | [magento/magento2#19584](https://github.com/magento/magento2/pull/19584) | +| gwharton | [#21672](https://github.com/magento/magento2/issues/21672) | [magento/magento2#21675](https://github.com/magento/magento2/pull/21675), [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) | +| mtwegrzycki | [#22028](https://github.com/magento/magento2/issues/22028) | [magento/magento2#22575](https://github.com/magento/magento2/pull/22575) | +| Dharmeshvaja91 | [#21558](https://github.com/magento/magento2/issues/21558) | [magento/magento2#22794](https://github.com/magento/magento2/pull/22794) | +| jhruehl | [#22127](https://github.com/magento/magento2/issues/22127) | [magento/magento2#22186](https://github.com/magento/magento2/pull/22186) | +| magesanjay | [#22639](https://github.com/magento/magento2/issues/22639) | [magento/magento2#22724](https://github.com/magento/magento2/pull/22724) | +| cedarvinda | [#22676](https://github.com/magento/magento2/issues/22676) | [magento/magento2#22742](https://github.com/magento/magento2/pull/22742) | +| Jacob Drummond | [#6659](https://github.com/magento/magento2/issues/6659) | [magento/magento2#22850](https://github.com/magento/magento2/pull/22850) | +| BenSpace48 | [#4628](https://github.com/magento/magento2/issues/4628) | [magento/magento2#22854](https://github.com/magento/magento2/pull/22854) | +| samtay | [#3795](https://github.com/magento/magento2/issues/3795) | [magento/magento2#21397](https://github.com/magento/magento2/pull/21397) | +| serhiyzhovnir | [#22786](https://github.com/magento/magento2/issues/22786) | [magento/magento2#22787](https://github.com/magento/magento2/pull/22787) | +| eduard13 | [#22822](https://github.com/magento/magento2/issues/22822) | [magento/magento2#22823](https://github.com/magento/magento2/pull/22823) | +| talset | [#21852](https://github.com/magento/magento2/issues/21852) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | +| hostep | [#22563](https://github.com/magento/magento2/issues/22563) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | +| bhavik43 | [#22736](https://github.com/magento/magento2/issues/22736) | [magento/magento2#22795](https://github.com/magento/magento2/pull/22795) | +| Amit Vishvakarma | [#22875](https://github.com/magento/magento2/issues/22875) | [magento/magento2#22876](https://github.com/magento/magento2/pull/22876) | +| abrarpathan19 | [#21214](https://github.com/magento/magento2/issues/21214) | [magento/magento2#21215](https://github.com/magento/magento2/pull/21215) | +| mikelevy300 | [#22143](https://github.com/magento/magento2/issues/22143) | [magento/magento2#22307](https://github.com/magento/magento2/pull/22307) | +| p-bystritsky | [#22317](https://github.com/magento/magento2/issues/22317) | [magento/magento2#22444](https://github.com/magento/magento2/pull/22444) | +| Michael Thessel | [#22396](https://github.com/magento/magento2/issues/22396) | [magento/magento2#22513](https://github.com/magento/magento2/pull/22513) | +| Grishma Nayee | [#22506](https://github.com/magento/magento2/issues/22506) | [magento/magento2#22520](https://github.com/magento/magento2/pull/22520) | +| 808brinks | [#22869](https://github.com/magento/magento2/issues/22869) | [magento/magento2#22893](https://github.com/magento/magento2/pull/22893) | +| speedy008 | [#22924](https://github.com/magento/magento2/issues/22924) | [magento/magento2#22926](https://github.com/magento/magento2/pull/22926) | +| ipascual | [#20186](https://github.com/magento/magento2/issues/20186) | [magento/magento2#22947](https://github.com/magento/magento2/pull/22947) | +| steadweb | [#574](https://github.com/magento/magento2/issues/574) | [magento/graphql-ce#694](https://github.com/magento/graphql-ce/pull/694) | +| tzyganu | [#686](https://github.com/magento/magento2/issues/686) | [magento/graphql-ce#695](https://github.com/magento/graphql-ce/pull/695) | +| Daniel Ifrim | [#22380](https://github.com/magento/magento2/issues/22380) | [magento/magento2#22387](https://github.com/magento/magento2/pull/22387) | +| Cristiano81 | [#18183](https://github.com/magento/magento2/issues/18183) | [magento/magento2#22718](https://github.com/magento/magento2/pull/22718) | +| eduan | [#22899](https://github.com/magento/magento2/issues/22899) | [magento/magento2#22914](https://github.com/magento/magento2/pull/22914) | +| Milind Singh | [#22686](https://github.com/magento/magento2/issues/22686) | [magento/magento2#22687](https://github.com/magento/magento2/pull/22687) | +| Sharkozp | [#22767](https://github.com/magento/magento2/issues/22767) | [magento/magento2#22772](https://github.com/magento/magento2/pull/22772) | +| speedy008 | [#20788](https://github.com/magento/magento2/issues/20788) | [magento/magento2#22931](https://github.com/magento/magento2/pull/22931) | +| matin73 | [#23030](https://github.com/magento/magento2/issues/23030) | [magento/magento2#23033](https://github.com/magento/magento2/pull/23033) | +| Den4ik | [#23034](https://github.com/magento/magento2/issues/23034) | [magento/magento2#23035](https://github.com/magento/magento2/pull/23035) | +| Vinai | [#12696](https://github.com/magento/magento2/issues/12696) | [magento/magento2#18459](https://github.com/magento/magento2/pull/18459) | +| arnoudhgz | [#13266](https://github.com/magento/magento2/issues/13266) | [magento/magento2#22071](https://github.com/magento/magento2/pull/22071) | +| ihor-sviziev | [#22882](https://github.com/magento/magento2/issues/22882) | [magento/magento2#22884](https://github.com/magento/magento2/pull/22884) | +| ashsmith | [#23045](https://github.com/magento/magento2/issues/23045) | [magento/magento2#23046](https://github.com/magento/magento2/pull/23046) | +| LouNik1984 | [#16446](https://github.com/magento/magento2/issues/16446) | [magento/magento2#19184](https://github.com/magento/magento2/pull/19184) | +| victortodoran | [#14492](https://github.com/magento/magento2/issues/14492) | [magento/magento2#21394](https://github.com/magento/magento2/pull/21394) | +| gwharton | [#21671](https://github.com/magento/magento2/issues/21671) | [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) | +| ketan-krish | [#22425](https://github.com/magento/magento2/issues/22425) | [magento/magento2#22426](https://github.com/magento/magento2/pull/22426) | +| squeegy06 | [#22511](https://github.com/magento/magento2/issues/22511) | [magento/magento2#22521](https://github.com/magento/magento2/pull/22521) | | alexeya-ven | [#23080](https://github.com/magento/magento2/issues/23080) | [magento/magento2#23081](https://github.com/magento/magento2/pull/23081) | -| [aasim110](https://github.com/aasim110) | [#19872](https://github.com/magento/magento2/issues/19872) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | -| [jasonkcarter](https://github.com/jasonkcarter) | [#22092](https://github.com/magento/magento2/issues/22092) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | -| [nicholasscottfish](https://github.com/nicholasscottfish) | [#22087](https://github.com/magento/magento2/issues/22087) | [magento/magento2#22646](https://github.com/magento/magento2/pull/22646) | -| [gwharton](https://github.com/gwharton) | [#21546](https://github.com/magento/magento2/issues/21546) | [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) | -| [gwharton](https://github.com/gwharton) | [#21604](https://github.com/magento/magento2/issues/21604) | [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) | -| [fetzi](https://github.com/fetzi) | [#4247](https://github.com/magento/magento2/issues/4247) | [magento/magento2#21876](https://github.com/magento/magento2/pull/21876) | -| [renard123](https://github.com/renard123) | [#22940](https://github.com/magento/magento2/issues/22940) | [magento/magento2#23007](https://github.com/magento/magento2/pull/23007) | -| [TomashKhamlai](https://github.com/TomashKhamlai) | [#23053](https://github.com/magento/magento2/issues/23053) | [magento/magento2#23118](https://github.com/magento/magento2/pull/23118) | -| [tzyganu](https://github.com/tzyganu) | [#675](https://github.com/magento/magento2/issues/675) | [magento/graphql-ce#677](https://github.com/magento/graphql-ce/pull/677) | -| [joshdifabio](https://github.com/joshdifabio) | [#682](https://github.com/magento/magento2/issues/682) | [magento/graphql-ce#700](https://github.com/magento/graphql-ce/pull/700) | -| [tzyganu](https://github.com/tzyganu) | [#681](https://github.com/magento/magento2/issues/681) | [magento/graphql-ce#711](https://github.com/magento/graphql-ce/pull/711) | -| [cdiacon](https://github.com/cdiacon) | [#22484](https://github.com/magento/magento2/issues/22484) | [magento/magento2#22637](https://github.com/magento/magento2/pull/22637) | -| [atwixfirster](https://github.com/atwixfirster) | [#23138](https://github.com/magento/magento2/issues/23138) | [magento/magento2#23140](https://github.com/magento/magento2/pull/23140) | -| [huyenvk2017](https://github.com/huyenvk2017) | [#22004](https://github.com/magento/magento2/issues/22004) | [magento/magento2#22704](https://github.com/magento/magento2/pull/22704) | -| [ioweb-gr](https://github.com/ioweb-gr) | [#22870](https://github.com/magento/magento2/issues/22870) | [magento/magento2#22933](https://github.com/magento/magento2/pull/22933) | -| [ioweb-gr](https://github.com/ioweb-gr) | [#22808](https://github.com/magento/magento2/issues/22808) | [magento/magento2#23005](https://github.com/magento/magento2/pull/23005) | -| [tzyganu](https://github.com/tzyganu) | [#674](https://github.com/magento/magento2/issues/674) | [magento/graphql-ce#709](https://github.com/magento/graphql-ce/pull/709) | -| [thecaligarmo](https://github.com/thecaligarmo) | [#683](https://github.com/magento/magento2/issues/683) | [magento/graphql-ce#717](https://github.com/magento/graphql-ce/pull/717) | -| [MagePsycho](https://github.com/MagePsycho) | [#9113](https://github.com/magento/magento2/issues/9113) | [magento/graphql-ce#721](https://github.com/magento/graphql-ce/pull/721) | -| [BezV8](https://github.com/BezV8) | [#18337](https://github.com/magento/magento2/issues/18337) | [magento/magento2#22942](https://github.com/magento/magento2/pull/22942) | -| [amitvishvakarma](https://github.com/amitvishvakarma) | [#23213](https://github.com/magento/magento2/issues/23213) | [magento/magento2#23216](https://github.com/magento/magento2/pull/23216) | -| [renard123](https://github.com/renard123) | [#23238](https://github.com/magento/magento2/issues/23238) | [magento/magento2#23250](https://github.com/magento/magento2/pull/23250) | -| [teokolo](https://github.com/teokolo) | [#4788](https://github.com/magento/magento2/issues/4788) | [magento/magento2#23129](https://github.com/magento/magento2/pull/23129) | -| [AlexWorking](https://github.com/AlexWorking) | [#22934](https://github.com/magento/magento2/issues/22934) | [magento/magento2#23129](https://github.com/magento/magento2/pull/23129) | -| [JeroenVanLeusden](https://github.com/JeroenVanLeusden) | [#23266](https://github.com/magento/magento2/issues/23266) | [magento/magento2#23267](https://github.com/magento/magento2/pull/23267) | -| [nishantjariwala](https://github.com/nishantjariwala) | [#23285](https://github.com/magento/magento2/issues/23285) | [magento/magento2#23286](https://github.com/magento/magento2/pull/23286) | -| [jamiemck](https://github.com/jamiemck) | [#486](https://github.com/magento/magento2/issues/486) | [magento/graphql-ce#714](https://github.com/magento/graphql-ce/pull/714) | -| [Dorn-](https://github.com/Dorn-) | [#716](https://github.com/magento/magento2/issues/716) | [magento/graphql-ce#723](https://github.com/magento/graphql-ce/pull/723) | -| [gstaniforthsessiondigital](https://github.com/gstaniforthsessiondigital) | [#687](https://github.com/magento/magento2/issues/687) | [magento/graphql-ce#749](https://github.com/magento/graphql-ce/pull/749) | -| [bharanikonda](https://github.com/bharanikonda) | [#20038](https://github.com/magento/magento2/issues/20038) | [magento/magento2#22675](https://github.com/magento/magento2/pull/22675) | -| [Vishrootways](https://github.com/Vishrootways) | [#23074](https://github.com/magento/magento2/issues/23074) | [magento/magento2#23309](https://github.com/magento/magento2/pull/23309) | -| [gfxguru](https://github.com/gfxguru) | [#622](https://github.com/magento/magento2/issues/622) | [magento/graphql-ce#626](https://github.com/magento/graphql-ce/pull/626) | -| [tzyganu](https://github.com/tzyganu) | [#732](https://github.com/magento/magento2/issues/732) | [magento/graphql-ce#734](https://github.com/magento/graphql-ce/pull/734) | -| [novakivskiy](https://github.com/novakivskiy) | [#13227](https://github.com/magento/magento2/issues/13227) | [magento/magento2#22650](https://github.com/magento/magento2/pull/22650) | -| [magesanjay](https://github.com/magesanjay) | [#22638](https://github.com/magento/magento2/issues/22638) | [magento/magento2#22800](https://github.com/magento/magento2/pull/22800) | -| [ilnytskyi](https://github.com/ilnytskyi) | [#22266](https://github.com/magento/magento2/issues/22266) | [magento/magento2#23218](https://github.com/magento/magento2/pull/23218) | -| [OleksiiBulba](https://github.com/OleksiiBulba) | [#23230](https://github.com/magento/magento2/issues/23230) | [magento/magento2#23247](https://github.com/magento/magento2/pull/23247) | +| aasim110 | [#19872](https://github.com/magento/magento2/issues/19872) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | +| jasonkcarter | [#22092](https://github.com/magento/magento2/issues/22092) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | +| nicholasscottfish | [#22087](https://github.com/magento/magento2/issues/22087) | [magento/magento2#22646](https://github.com/magento/magento2/pull/22646) | +| gwharton | [#21546](https://github.com/magento/magento2/issues/21546) | [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) | +| gwharton | [#21604](https://github.com/magento/magento2/issues/21604) | [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) | +| fetzi | [#4247](https://github.com/magento/magento2/issues/4247) | [magento/magento2#21876](https://github.com/magento/magento2/pull/21876) | +| renard123 | [#22940](https://github.com/magento/magento2/issues/22940) | [magento/magento2#23007](https://github.com/magento/magento2/pull/23007) | +| Tomash Khamlai | [#23053](https://github.com/magento/magento2/issues/23053) | [magento/magento2#23118](https://github.com/magento/magento2/pull/23118) | +| tzyganu | [#675](https://github.com/magento/magento2/issues/675) | [magento/graphql-ce#677](https://github.com/magento/graphql-ce/pull/677) | +| joshdifabio | [#682](https://github.com/magento/magento2/issues/682) | [magento/graphql-ce#700](https://github.com/magento/graphql-ce/pull/700) | +| tzyganu | [#681](https://github.com/magento/magento2/issues/681) | [magento/graphql-ce#711](https://github.com/magento/graphql-ce/pull/711) | +| cdiacon | [#22484](https://github.com/magento/magento2/issues/22484) | [magento/magento2#22637](https://github.com/magento/magento2/pull/22637) | +| atwixfirster | [#23138](https://github.com/magento/magento2/issues/23138) | [magento/magento2#23140](https://github.com/magento/magento2/pull/23140) | +| huyenvk2017 | [#22004](https://github.com/magento/magento2/issues/22004) | [magento/magento2#22704](https://github.com/magento/magento2/pull/22704) | +| ioweb-gr | [#22870](https://github.com/magento/magento2/issues/22870) | [magento/magento2#22933](https://github.com/magento/magento2/pull/22933) | +| ioweb-gr | [#22808](https://github.com/magento/magento2/issues/22808) | [magento/magento2#23005](https://github.com/magento/magento2/pull/23005) | +| tzyganu | [#674](https://github.com/magento/magento2/issues/674) | [magento/graphql-ce#709](https://github.com/magento/graphql-ce/pull/709) | +| thecaligarmo | [#683](https://github.com/magento/magento2/issues/683) | [magento/graphql-ce#717](https://github.com/magento/graphql-ce/pull/717) | +| Mage Psycho | [#9113](https://github.com/magento/magento2/issues/9113) | [magento/graphql-ce#721](https://github.com/magento/graphql-ce/pull/721) | +| BezV8 | [#18337](https://github.com/magento/magento2/issues/18337) | [magento/magento2#22942](https://github.com/magento/magento2/pull/22942) | +| Amit Vishvakarma | [#23213](https://github.com/magento/magento2/issues/23213) | [magento/magento2#23216](https://github.com/magento/magento2/pull/23216) | +| renard123 | [#23238](https://github.com/magento/magento2/issues/23238) | [magento/magento2#23250](https://github.com/magento/magento2/pull/23250) | +| teokolo | [#4788](https://github.com/magento/magento2/issues/4788) | [magento/magento2#23129](https://github.com/magento/magento2/pull/23129) | +| AlexWorking | [#22934](https://github.com/magento/magento2/issues/22934) | [magento/magento2#23129](https://github.com/magento/magento2/pull/23129) | +| Jeroen VanLeusden | [#23266](https://github.com/magento/magento2/issues/23266) | [magento/magento2#23267](https://github.com/magento/magento2/pull/23267) | +| Nishant Jariwala | [#23285](https://github.com/magento/magento2/issues/23285) | [magento/magento2#23286](https://github.com/magento/magento2/pull/23286) | +| jamiemck | [#486](https://github.com/magento/magento2/issues/486) | [magento/graphql-ce#714](https://github.com/magento/graphql-ce/pull/714) | +| Dorn- | [#716](https://github.com/magento/magento2/issues/716) | [magento/graphql-ce#723](https://github.com/magento/graphql-ce/pull/723) | +| gstaniforthsessiondigital | [#687](https://github.com/magento/magento2/issues/687) | [magento/graphql-ce#749](https://github.com/magento/graphql-ce/pull/749) | +| bharanikonda | [#20038](https://github.com/magento/magento2/issues/20038) | [magento/magento2#22675](https://github.com/magento/magento2/pull/22675) | +| Vishrootways | [#23074](https://github.com/magento/magento2/issues/23074) | [magento/magento2#23309](https://github.com/magento/magento2/pull/23309) | +| gfxguru | [#622](https://github.com/magento/magento2/issues/622) | [magento/graphql-ce#626](https://github.com/magento/graphql-ce/pull/626) | +| tzyganu | [#732](https://github.com/magento/magento2/issues/732) | [magento/graphql-ce#734](https://github.com/magento/graphql-ce/pull/734) | +| novakivskiy | [#13227](https://github.com/magento/magento2/issues/13227) | [magento/magento2#22650](https://github.com/magento/magento2/pull/22650) | +| magesanjay | [#22638](https://github.com/magento/magento2/issues/22638) | [magento/magento2#22800](https://github.com/magento/magento2/pull/22800) | +| ilnytskyi | [#22266](https://github.com/magento/magento2/issues/22266) | [magento/magento2#23218](https://github.com/magento/magento2/pull/23218) | +| Oleksii Bulba | [#23230](https://github.com/magento/magento2/issues/23230) | [magento/magento2#23247](https://github.com/magento/magento2/pull/23247) | | alexeya-ven | [#23333](https://github.com/magento/magento2/issues/23333) | [magento/magento2#23338](https://github.com/magento/magento2/pull/23338) | -| [TomashKhamlai](https://github.com/TomashKhamlai) | [#23346](https://github.com/magento/magento2/issues/23346) | [magento/magento2#23367](https://github.com/magento/magento2/pull/23367) | -| [udovicic](https://github.com/udovicic) | [#21380](https://github.com/magento/magento2/issues/21380) | [magento/magento2#23312](https://github.com/magento/magento2/pull/23312) | -| [oleksii-lisovyi](https://github.com/oleksii-lisovyi) | [#21136](https://github.com/magento/magento2/issues/21136) | [magento/magento2#22116](https://github.com/magento/magento2/pull/22116) | -| [eduard13](https://github.com/eduard13) | [#23233](https://github.com/magento/magento2/issues/23233) | [magento/magento2#23234](https://github.com/magento/magento2/pull/23234) | -| [AndreasMueller75](https://github.com/AndreasMueller75) | [#21974](https://github.com/magento/magento2/issues/21974) | [magento/magento2#23393](https://github.com/magento/magento2/pull/23393) | -| [iamckindia](https://github.com/iamckindia) | [#23377](https://github.com/magento/magento2/issues/23377) | [magento/magento2#23394](https://github.com/magento/magento2/pull/23394) | -| [YurySk](https://github.com/YurySk) | [#22998](https://github.com/magento/magento2/issues/22998) | [magento/magento2#23048](https://github.com/magento/magento2/pull/23048) | -| [ankurvr](https://github.com/ankurvr) | [#23522](https://github.com/magento/magento2/issues/23522) | [magento/magento2#23523](https://github.com/magento/magento2/pull/23523) | -| [CNanninga](https://github.com/CNanninga) | [#8298](https://github.com/magento/magento2/issues/8298) | [magento/magento2#23528](https://github.com/magento/magento2/pull/23528) | -| [gwharton](https://github.com/gwharton) | [#22103](https://github.com/magento/magento2/issues/22103) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | -| [msawyers](https://github.com/msawyers) | [#23199](https://github.com/magento/magento2/issues/23199) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | -| [sunilit42](https://github.com/sunilit42) | [#23538](https://github.com/magento/magento2/issues/23538) | [magento/magento2#23541](https://github.com/magento/magento2/pull/23541) | -| [speedy008](https://github.com/speedy008) | [#21126](https://github.com/magento/magento2/issues/21126) | [magento/magento2#21128](https://github.com/magento/magento2/pull/21128) | -| [dipeshrangani](https://github.com/dipeshrangani) | [#23471](https://github.com/magento/magento2/issues/23471) | [magento/magento2#23474](https://github.com/magento/magento2/pull/23474) | -| [nirmalraval18](https://github.com/nirmalraval18) | [#23466](https://github.com/magento/magento2/issues/23466) | [magento/magento2#23477](https://github.com/magento/magento2/pull/23477) | -| [vrajesh-patel1993](https://github.com/vrajesh-patel1993) | [#23467](https://github.com/magento/magento2/issues/23467) | [magento/magento2#23494](https://github.com/magento/magento2/pull/23494) | -| [stkrelax](https://github.com/stkrelax) | [#23222](https://github.com/magento/magento2/issues/23222) | [magento/magento2#23310](https://github.com/magento/magento2/pull/23310) | -| [bhavik43](https://github.com/bhavik43) | [#23354](https://github.com/magento/magento2/issues/23354) | [magento/magento2#23360](https://github.com/magento/magento2/pull/23360) | -| [engcom-Golf](https://github.com/engcom-Golf) | [#23424](https://github.com/magento/magento2/issues/23424) | [magento/magento2#23427](https://github.com/magento/magento2/pull/23427) | -| [molovo](https://github.com/molovo) | [#16234](https://github.com/magento/magento2/issues/16234) | [magento/magento2#23496](https://github.com/magento/magento2/pull/23496) | -| [troublediehard](https://github.com/troublediehard) | [#9798](https://github.com/magento/magento2/issues/9798) | [magento/magento2#23529](https://github.com/magento/magento2/pull/23529) | -| [alexgoodey](https://github.com/alexgoodey) | [#6287](https://github.com/magento/magento2/issues/6287) | [magento/magento2#20918](https://github.com/magento/magento2/pull/20918) | -| [kanduvisla](https://github.com/kanduvisla) | [#8258](https://github.com/magento/magento2/issues/8258) | [magento/magento2#15383](https://github.com/magento/magento2/pull/15383) | -| [craigcarnell](https://github.com/craigcarnell) | [#13561](https://github.com/magento/magento2/issues/13561) | [magento/magento2#18075](https://github.com/magento/magento2/pull/18075) | -| [KooTjoo](https://github.com/KooTjoo) | [#22545](https://github.com/magento/magento2/issues/22545) | [magento/magento2#22658](https://github.com/magento/magento2/pull/22658) | -| [diamondavocado](https://github.com/diamondavocado) | [#23383](https://github.com/magento/magento2/issues/23383) | [magento/magento2#23500](https://github.com/magento/magento2/pull/23500) | -| [bhavik43](https://github.com/bhavik43) | [#22950](https://github.com/magento/magento2/issues/22950) | [magento/magento2#23226](https://github.com/magento/magento2/pull/23226) | -| [rogyar](https://github.com/rogyar) | [#23606](https://github.com/magento/magento2/issues/23606) | [magento/magento2#23607](https://github.com/magento/magento2/pull/23607) | -| [tzyganu](https://github.com/tzyganu) | [#736](https://github.com/magento/magento2/issues/736) | [magento/graphql-ce#747](https://github.com/magento/graphql-ce/pull/747) | -| [Vinai](https://github.com/Vinai) | [#739](https://github.com/magento/magento2/issues/739) | [magento/graphql-ce#753](https://github.com/magento/graphql-ce/pull/753) | -| [bst2002git](https://github.com/bst2002git) | [#23435](https://github.com/magento/magento2/issues/23435) | [magento/magento2#23444](https://github.com/magento/magento2/pull/23444) | -| [AleksLi](https://github.com/AleksLi) | [#12817](https://github.com/magento/magento2/issues/12817) | [magento/magento2#20579](https://github.com/magento/magento2/pull/20579) | -| [swnsma](https://github.com/swnsma) | [#23386](https://github.com/magento/magento2/issues/23386) | [magento/magento2#23387](https://github.com/magento/magento2/pull/23387) | -| [pavdan](https://github.com/pavdan) | [#23345](https://github.com/magento/magento2/issues/23345) | [magento/magento2#23358](https://github.com/magento/magento2/pull/23358) | -| [davidpixie](https://github.com/davidpixie) | [#22814](https://github.com/magento/magento2/issues/22814) | [magento/magento2#23459](https://github.com/magento/magento2/pull/23459) | -| [gwharton](https://github.com/gwharton) | [#23594](https://github.com/magento/magento2/issues/23594) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | -| [gwharton](https://github.com/gwharton) | [#23595](https://github.com/magento/magento2/issues/23595) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | -| [gwharton](https://github.com/gwharton) | [#23596](https://github.com/magento/magento2/issues/23596) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | -| [ffauvel](https://github.com/ffauvel) | [#23643](https://github.com/magento/magento2/issues/23643) | [magento/magento2#23649](https://github.com/magento/magento2/pull/23649) | -| [gwharton](https://github.com/gwharton) | [#23597](https://github.com/magento/magento2/issues/23597) | [magento/magento2#23710](https://github.com/magento/magento2/pull/23710) | -| [shinoamakusa](https://github.com/shinoamakusa) | [#23510](https://github.com/magento/magento2/issues/23510) | [magento/magento2#23524](https://github.com/magento/magento2/pull/23524) | -| [kassner](https://github.com/kassner) | [#22890](https://github.com/magento/magento2/issues/22890) | [magento/magento2#22891](https://github.com/magento/magento2/pull/22891) | -| [QuentinFarizon](https://github.com/QuentinFarizon) | [#23054](https://github.com/magento/magento2/issues/23054) | [magento/magento2#23125](https://github.com/magento/magento2/pull/23125) | -| [roma84](https://github.com/roma84) | [#23135](https://github.com/magento/magento2/issues/23135) | [magento/magento2#23173](https://github.com/magento/magento2/pull/23173) | -| [navarr](https://github.com/navarr) | [#23211](https://github.com/magento/magento2/issues/23211) | [magento/magento2#23688](https://github.com/magento/magento2/pull/23688) | -| [simonlandry0](https://github.com/simonlandry0) | [#23624](https://github.com/magento/magento2/issues/23624) | [magento/magento2#23718](https://github.com/magento/magento2/pull/23718) | -| [ioweb-gr](https://github.com/ioweb-gr) | [#23717](https://github.com/magento/magento2/issues/23717) | [magento/magento2#23753](https://github.com/magento/magento2/pull/23753) | -| [tzyganu](https://github.com/tzyganu) | [#758](https://github.com/magento/magento2/issues/758) | [magento/graphql-ce#759](https://github.com/magento/graphql-ce/pull/759) | -| [patelnimesh1988](https://github.com/patelnimesh1988) | [#14071](https://github.com/magento/magento2/issues/14071) | [magento/magento2#22984](https://github.com/magento/magento2/pull/22984) | -| [delyriand](https://github.com/delyriand) | [#22112](https://github.com/magento/magento2/issues/22112) | [magento/magento2#23656](https://github.com/magento/magento2/pull/23656) | -| [shilpambb](https://github.com/shilpambb) | [#23654](https://github.com/magento/magento2/issues/23654) | [magento/magento2#23681](https://github.com/magento/magento2/pull/23681) | -| [gwharton](https://github.com/gwharton) | [#23751](https://github.com/magento/magento2/issues/23751) | [magento/magento2#23752](https://github.com/magento/magento2/pull/23752) | -| [textarea](https://github.com/textarea) | [#23678](https://github.com/magento/magento2/issues/23678) | [magento/magento2#23679](https://github.com/magento/magento2/pull/23679) | -| [edenduong](https://github.com/edenduong) | [#23777](https://github.com/magento/magento2/issues/23777) | [magento/magento2#23779](https://github.com/magento/magento2/pull/23779) | -| [p-bystritsky](https://github.com/p-bystritsky) | [#23789](https://github.com/magento/magento2/issues/23789) | [magento/magento2#23790](https://github.com/magento/magento2/pull/23790) | -| [nehaguptacedcoss](https://github.com/nehaguptacedcoss) | [#22702](https://github.com/magento/magento2/issues/22702) | [magento/magento2#23803](https://github.com/magento/magento2/pull/23803) | -| [clockworkgeek](https://github.com/clockworkgeek) | [#167](https://github.com/magento/magento2/issues/167) | [magento/graphql-ce#351](https://github.com/magento/graphql-ce/pull/351) | -| [ihor-sviziev](https://github.com/ihor-sviziev) | [#438](https://github.com/magento/magento2/issues/438) | [magento/graphql-ce#699](https://github.com/magento/graphql-ce/pull/699) | -| [fatihky](https://github.com/fatihky) | [#702](https://github.com/magento/magento2/issues/702) | [magento/graphql-ce#779](https://github.com/magento/graphql-ce/pull/779) | -| [Vinai](https://github.com/Vinai) | [#738](https://github.com/magento/magento2/issues/738) | [magento/graphql-ce#789](https://github.com/magento/graphql-ce/pull/789) | -| [pmsteil](https://github.com/pmsteil) | [#23405](https://github.com/magento/magento2/issues/23405) | [magento/magento2#23866](https://github.com/magento/magento2/pull/23866) | -| [edenduong](https://github.com/edenduong) | [#23900](https://github.com/magento/magento2/issues/23900) | [magento/magento2#23901](https://github.com/magento/magento2/pull/23901) | -| [edenduong](https://github.com/edenduong) | [#23904](https://github.com/magento/magento2/issues/23904) | [magento/magento2#23905](https://github.com/magento/magento2/pull/23905) | -| [edenduong](https://github.com/edenduong) | [#23916](https://github.com/magento/magento2/issues/23916) | [magento/magento2#23917](https://github.com/magento/magento2/pull/23917) | -| [mfickers](https://github.com/mfickers) | [#23932](https://github.com/magento/magento2/issues/23932) | [magento/magento2#23933](https://github.com/magento/magento2/pull/23933) | +| Tomash Khamlai | [#23346](https://github.com/magento/magento2/issues/23346) | [magento/magento2#23367](https://github.com/magento/magento2/pull/23367) | +| udovicic | [#21380](https://github.com/magento/magento2/issues/21380) | [magento/magento2#23312](https://github.com/magento/magento2/pull/23312) | +| Oleksii Lisovyi | [#21136](https://github.com/magento/magento2/issues/21136) | [magento/magento2#22116](https://github.com/magento/magento2/pull/22116) | +| eduard13 | [#23233](https://github.com/magento/magento2/issues/23233) | [magento/magento2#23234](https://github.com/magento/magento2/pull/23234) | +| AndreasMueller75 | [#21974](https://github.com/magento/magento2/issues/21974) | [magento/magento2#23393](https://github.com/magento/magento2/pull/23393) | +| iamckindia | [#23377](https://github.com/magento/magento2/issues/23377) | [magento/magento2#23394](https://github.com/magento/magento2/pull/23394) | +| YurySk | [#22998](https://github.com/magento/magento2/issues/22998) | [magento/magento2#23048](https://github.com/magento/magento2/pull/23048) | +| ankurvr | [#23522](https://github.com/magento/magento2/issues/23522) | [magento/magento2#23523](https://github.com/magento/magento2/pull/23523) | +| CNanninga | [#8298](https://github.com/magento/magento2/issues/8298) | [magento/magento2#23528](https://github.com/magento/magento2/pull/23528) | +| gwharton | [#22103](https://github.com/magento/magento2/issues/22103) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | +| msawyers | [#23199](https://github.com/magento/magento2/issues/23199) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | +| sunilit42 | [#23538](https://github.com/magento/magento2/issues/23538) | [magento/magento2#23541](https://github.com/magento/magento2/pull/23541) | +| speedy008 | [#21126](https://github.com/magento/magento2/issues/21126) | [magento/magento2#21128](https://github.com/magento/magento2/pull/21128) | +| dipeshrangani | [#23471](https://github.com/magento/magento2/issues/23471) | [magento/magento2#23474](https://github.com/magento/magento2/pull/23474) | +| nirmalraval18 | [#23466](https://github.com/magento/magento2/issues/23466) | [magento/magento2#23477](https://github.com/magento/magento2/pull/23477) | +| vrajesh-patel1993 | [#23467](https://github.com/magento/magento2/issues/23467) | [magento/magento2#23494](https://github.com/magento/magento2/pull/23494) | +| stkrelax | [#23222](https://github.com/magento/magento2/issues/23222) | [magento/magento2#23310](https://github.com/magento/magento2/pull/23310) | +| bhavik43 | [#23354](https://github.com/magento/magento2/issues/23354) | [magento/magento2#23360](https://github.com/magento/magento2/pull/23360) | +| engcom-Golf | [#23424](https://github.com/magento/magento2/issues/23424) | [magento/magento2#23427](https://github.com/magento/magento2/pull/23427) | +| molovo | [#16234](https://github.com/magento/magento2/issues/16234) | [magento/magento2#23496](https://github.com/magento/magento2/pull/23496) | +| troublediehar | [#9798](https://github.com/magento/magento2/issues/9798) | [magento/magento2#23529](https://github.com/magento/magento2/pull/23529) | +| Alex Goodey | [#6287](https://github.com/magento/magento2/issues/6287) | [magento/magento2#20918](https://github.com/magento/magento2/pull/20918) | +| kanduvisla | [#8258](https://github.com/magento/magento2/issues/8258) | [magento/magento2#15383](https://github.com/magento/magento2/pull/15383) | +| Craig Carnell | [#13561](https://github.com/magento/magento2/issues/13561) | [magento/magento2#18075](https://github.com/magento/magento2/pull/18075) | +| KooTjoo | [#22545](https://github.com/magento/magento2/issues/22545) | [magento/magento2#22658](https://github.com/magento/magento2/pull/22658) | +| diamondavocado | [#23383](https://github.com/magento/magento2/issues/23383) | [magento/magento2#23500](https://github.com/magento/magento2/pull/23500) | +| bhavik43 | [#22950](https://github.com/magento/magento2/issues/22950) | [magento/magento2#23226](https://github.com/magento/magento2/pull/23226) | +| rogyar | [#23606](https://github.com/magento/magento2/issues/23606) | [magento/magento2#23607](https://github.com/magento/magento2/pull/23607) | +| tzyganu | [#736](https://github.com/magento/magento2/issues/736) | [magento/graphql-ce#747](https://github.com/magento/graphql-ce/pull/747) | +| Vinai | [#739](https://github.com/magento/magento2/issues/739) | [magento/graphql-ce#753](https://github.com/magento/graphql-ce/pull/753) | +| bst2002git | [#23435](https://github.com/magento/magento2/issues/23435) | [magento/magento2#23444](https://github.com/magento/magento2/pull/23444) | +| AleksLi | [#12817](https://github.com/magento/magento2/issues/12817) | [magento/magento2#20579](https://github.com/magento/magento2/pull/20579) | +| swnsma | [#23386](https://github.com/magento/magento2/issues/23386) | [magento/magento2#23387](https://github.com/magento/magento2/pull/23387) | +| pavdan | [#23345](https://github.com/magento/magento2/issues/23345) | [magento/magento2#23358](https://github.com/magento/magento2/pull/23358) | +| David Pixie | [#22814](https://github.com/magento/magento2/issues/22814) | [magento/magento2#23459](https://github.com/magento/magento2/pull/23459) | +| gwharton | [#23594](https://github.com/magento/magento2/issues/23594) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | +| gwharton | [#23595](https://github.com/magento/magento2/issues/23595) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | +| gwharton | [#23596](https://github.com/magento/magento2/issues/23596) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | +| ffauvel | [#23643](https://github.com/magento/magento2/issues/23643) | [magento/magento2#23649](https://github.com/magento/magento2/pull/23649) | +| gwharton | [#23597](https://github.com/magento/magento2/issues/23597) | [magento/magento2#23710](https://github.com/magento/magento2/pull/23710) | +| shinoamakusa | [#23510](https://github.com/magento/magento2/issues/23510) | [magento/magento2#23524](https://github.com/magento/magento2/pull/23524) | +| kassner | [#22890](https://github.com/magento/magento2/issues/22890) | [magento/magento2#22891](https://github.com/magento/magento2/pull/22891) | +| Quentin Farizon | [#23054](https://github.com/magento/magento2/issues/23054) | [magento/magento2#23125](https://github.com/magento/magento2/pull/23125) | +| roma84 | [#23135](https://github.com/magento/magento2/issues/23135) | [magento/magento2#23173](https://github.com/magento/magento2/pull/23173) | +| navarr | [#23211](https://github.com/magento/magento2/issues/23211) | [magento/magento2#23688](https://github.com/magento/magento2/pull/23688) | +| simonlandry0 | [#23624](https://github.com/magento/magento2/issues/23624) | [magento/magento2#23718](https://github.com/magento/magento2/pull/23718) | +| ioweb-gr | [#23717](https://github.com/magento/magento2/issues/23717) | [magento/magento2#23753](https://github.com/magento/magento2/pull/23753) | +| tzyganu | [#758](https://github.com/magento/magento2/issues/758) | [magento/graphql-ce#759](https://github.com/magento/graphql-ce/pull/759) | +| patelnimesh1988 | [#14071](https://github.com/magento/magento2/issues/14071) | [magento/magento2#22984](https://github.com/magento/magento2/pull/22984) | +| delyriand | [#22112](https://github.com/magento/magento2/issues/22112) | [magento/magento2#23656](https://github.com/magento/magento2/pull/23656) | +| shilpambb | [#23654](https://github.com/magento/magento2/issues/23654) | [magento/magento2#23681](https://github.com/magento/magento2/pull/23681) | +| gwharton | [#23751](https://github.com/magento/magento2/issues/23751) | [magento/magento2#23752](https://github.com/magento/magento2/pull/23752) | +| textarea | [#23678](https://github.com/magento/magento2/issues/23678) | [magento/magento2#23679](https://github.com/magento/magento2/pull/23679) | +| Eden Duong | [#23777](https://github.com/magento/magento2/issues/23777) | [magento/magento2#23779](https://github.com/magento/magento2/pull/23779) | +| p-bystritsky | [#23789](https://github.com/magento/magento2/issues/23789) | [magento/magento2#23790](https://github.com/magento/magento2/pull/23790) | +| nehaguptacedcoss | [#22702](https://github.com/magento/magento2/issues/22702) | [magento/magento2#23803](https://github.com/magento/magento2/pull/23803) | +| clockworkgeek | [#167](https://github.com/magento/magento2/issues/167) | [magento/graphql-ce#351](https://github.com/magento/graphql-ce/pull/351) | +| Ihor Sviziev | [#438](https://github.com/magento/magento2/issues/438) | [magento/graphql-ce#699](https://github.com/magento/graphql-ce/pull/699) | +| fatihky | [#702](https://github.com/magento/magento2/issues/702) | [magento/graphql-ce#779](https://github.com/magento/graphql-ce/pull/779) | +| Vinai | [#738](https://github.com/magento/magento2/issues/738) | [magento/graphql-ce#789](https://github.com/magento/graphql-ce/pull/789) | +| pmsteil | [#23405](https://github.com/magento/magento2/issues/23405) | [magento/magento2#23866](https://github.com/magento/magento2/pull/23866) | +| Eden Duong | [#23900](https://github.com/magento/magento2/issues/23900) | [magento/magento2#23901](https://github.com/magento/magento2/pull/23901) | +| Eden Duong | [#23904](https://github.com/magento/magento2/issues/23904) | [magento/magento2#23905](https://github.com/magento/magento2/pull/23905) | +| Eden Duong | [#23916](https://github.com/magento/magento2/issues/23916) | [magento/magento2#23917](https://github.com/magento/magento2/pull/23917) | +| mfickers | [#23932](https://github.com/magento/magento2/issues/23932) | [magento/magento2#23933](https://github.com/magento/magento2/pull/23933) | diff --git a/_includes/release-notes/engcomm-2-3-3-partner.md b/_includes/release-notes/engcomm-2-3-3-partner.md index 79e84b00260..6202943c61f 100644 --- a/_includes/release-notes/engcomm-2-3-3-partner.md +++ b/_includes/release-notes/engcomm-2-3-3-partner.md @@ -22,6 +22,6 @@ | Vaimo | [magento/magento2#22854](https://github.com/magento/magento2/pull/22854), [magento/magento2#23248](https://github.com/magento/magento2/pull/23248), [magento/magento2#22213](https://github.com/magento/magento2/pull/22213) | [magento/magento2#4628](https://github.com/magento/magento2/issues/4628) | | Limesharp | [magento/graphql-ce#747](https://github.com/magento/graphql-ce/pull/747) | [magento/graphql-ce#736](https://github.com/magento/graphql-ce/issues/736) | | Brandung | [magento/magento2#22186](https://github.com/magento/magento2/pull/22186), [magento/magento2#23099](https://github.com/magento/magento2/pull/23099) | [magento/magento2#22127](https://github.com/magento/magento2/issues/22127) | -| MageSpecialist | [magento/partners-magento2ee#18](https://github.com/magento/partners-magento2ee/pull/18), [magento/magento2#23353](https://github.com/magento/magento2/pull/23353) | | +| MageSpecialist | magento/partners-magento2ee#18, [magento/magento2#23353](https://github.com/magento/magento2/pull/23353) | | | Crimson Agility | [magento/magento2#23656](https://github.com/magento/magento2/pull/23656) | [magento/magento2#22112](https://github.com/magento/magento2/issues/22112) | | Space 48 | [magento/magento2#22844](https://github.com/magento/magento2/pull/22844), [magento/magento2#23244](https://github.com/magento/magento2/pull/23244) | | \ No newline at end of file From b396db9565247132ee94aab5062859df22945bbd Mon Sep 17 00:00:00 2001 From: Jeanne Frontain Date: Thu, 24 Oct 2019 22:30:17 -0500 Subject: [PATCH 28/28] fixed broken link and removed linkstoindividualcontributor GH profiles --- .../release-notes/engcomm-2-3-3-issues.md | 180 +++++++++--------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/_includes/release-notes/engcomm-2-3-3-issues.md b/_includes/release-notes/engcomm-2-3-3-issues.md index a1865a75142..91980207765 100644 --- a/_includes/release-notes/engcomm-2-3-3-issues.md +++ b/_includes/release-notes/engcomm-2-3-3-issues.md @@ -1,100 +1,100 @@ | Contributing community member | Related GitHub Issues | Pull Requests | | ------- | ------- | ------- | | Vitaliy Boyko | [#533](https://github.com/magento/magento2/issues/533) | [magento/graphql-ce#578](https://github.com/magento/graphql-ce/pull/578) | -| tzyganu | [#601](https://github.com/magento/magento2/issues/601) | [magento/graphql-ce#632](https://github.com/magento/graphql-ce/pull/632) | -| pmclain | [#631](https://github.com/magento/magento2/issues/631) | [magento/graphql-ce#634](https://github.com/magento/graphql-ce/pull/634) | -| dipti2jcommerce | [#20124](https://github.com/magento/magento2/issues/20124) | [magento/magento2#20135](https://github.com/magento/magento2/pull/20135) | +| Marius Strajeru | [#601](https://github.com/magento/magento2/issues/601) | [magento/graphql-ce#632](https://github.com/magento/graphql-ce/pull/632) | +| Patrick McLain | [#631](https://github.com/magento/magento2/issues/631) | [magento/graphql-ce#634](https://github.com/magento/graphql-ce/pull/634) | +| Dipti | [#20124](https://github.com/magento/magento2/issues/20124) | [magento/magento2#20135](https://github.com/magento/magento2/pull/20135) | | Walter Smulders | [#21978](https://github.com/magento/magento2/issues/21978) | [magento/magento2#22020](https://github.com/magento/magento2/pull/22020) | -| afavata | [#22045](https://github.com/magento/magento2/issues/22045) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | +| Alessandro | [#22045](https://github.com/magento/magento2/issues/22045) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | | Userr017 | [#22134](https://github.com/magento/magento2/issues/22134) | [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) | -| sjb9774 | [#22249](https://github.com/magento/magento2/issues/22249) | [magento/magento2#22287](https://github.com/magento/magento2/pull/22287) | +| Stephen Biston | [#22249](https://github.com/magento/magento2/issues/22249) | [magento/magento2#22287](https://github.com/magento/magento2/pull/22287) | | bhavik43 | [#22527](https://github.com/magento/magento2/issues/22527) | [magento/magento2#22532](https://github.com/magento/magento2/pull/22532) | -| tzyganu | [#628](https://github.com/magento/magento2/issues/628) | [magento/graphql-ce#636](https://github.com/magento/graphql-ce/pull/636) | -| fzaninotto | [#640](https://github.com/magento/magento2/issues/640) | [magento/graphql-ce#648](https://github.com/magento/graphql-ce/pull/648) | -| akulkarni9 | [#603](https://github.com/magento/magento2/issues/603) | [magento/graphql-ce#653](https://github.com/magento/graphql-ce/pull/653) | -| abrarpathan19 | [#22406](https://github.com/magento/magento2/issues/22406) | [magento/magento2#22423](https://github.com/magento/magento2/pull/22423) | +| Marius Strajeru | [#628](https://github.com/magento/magento2/issues/628) | [magento/graphql-ce#636](https://github.com/magento/graphql-ce/pull/636) | +| Francois Zaninotto | [#640](https://github.com/magento/magento2/issues/640) | [magento/graphql-ce#648](https://github.com/magento/graphql-ce/pull/648) | +| Ajay Kulkarni | [#603](https://github.com/magento/magento2/issues/603) | [magento/graphql-ce#653](https://github.com/magento/graphql-ce/pull/653) | +| Abrar Pathan | [#22406](https://github.com/magento/magento2/issues/22406) | [magento/magento2#22423](https://github.com/magento/magento2/pull/22423) | | justinharris1986 | [#19515](https://github.com/magento/magento2/issues/19515) | [magento/magento2#19767](https://github.com/magento/magento2/pull/19767) | -| mam08ixo | [#21473](https://github.com/magento/magento2/issues/21473) | [magento/magento2#21992](https://github.com/magento/magento2/pull/21992) | -| vishal-7037 | [#22641](https://github.com/magento/magento2/issues/22641) | [magento/magento2#22643](https://github.com/magento/magento2/pull/22643) | -| cedarvinda | [#22647](https://github.com/magento/magento2/issues/22647) | [magento/magento2#22656](https://github.com/magento/magento2/pull/22656) | +| Christoph Aßmann | [#21473](https://github.com/magento/magento2/issues/21473) | [magento/magento2#21992](https://github.com/magento/magento2/pull/21992) | +| Vishal Sutariya | [#22641](https://github.com/magento/magento2/issues/22641) | [magento/magento2#22643](https://github.com/magento/magento2/pull/22643) | +| Arvinda Kumar | [#22647](https://github.com/magento/magento2/issues/22647) | [magento/magento2#22656](https://github.com/magento/magento2/pull/22656) | | Michael Thessel | [#22395](https://github.com/magento/magento2/issues/22395) | [magento/magento2#22720](https://github.com/magento/magento2/pull/22720) | | gfxguru | [#198](https://github.com/magento/magento2/issues/198) | [magento/graphql-ce#371](https://github.com/magento/graphql-ce/pull/371) | | ed29 | [#436](https://github.com/magento/magento2/issues/436) | [magento/graphql-ce#445](https://github.com/magento/graphql-ce/pull/445) | -| vigentocommerce | [#309](https://github.com/magento/magento2/issues/309) | [magento/graphql-ce#504](https://github.com/magento/graphql-ce/pull/504) | +| Calvin Cao | [#309](https://github.com/magento/magento2/issues/309) | [magento/graphql-ce#504](https://github.com/magento/graphql-ce/pull/504) | | beckindesigns | [#535](https://github.com/magento/magento2/issues/535) | [magento/graphql-ce#650](https://github.com/magento/graphql-ce/pull/650) | -| tzyganu | [#658](https://github.com/magento/magento2/issues/658) | [magento/graphql-ce#665](https://github.com/magento/graphql-ce/pull/665), [magento/graphql-ce#744](https://github.com/magento/graphql-ce/pull/744) | -| tzyganu | [#657](https://github.com/magento/magento2/issues/657) | [magento/graphql-ce#666](https://github.com/magento/graphql-ce/pull/666) | -| fwolfst | [#12612](https://github.com/magento/magento2/issues/12612) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | +| Marius Strajeru | [#658](https://github.com/magento/magento2/issues/658) | [magento/graphql-ce#665](https://github.com/magento/graphql-ce/pull/665), [magento/graphql-ce#744](https://github.com/magento/graphql-ce/pull/744) | +| Marius Strajeru | [#657](https://github.com/magento/magento2/issues/657) | [magento/graphql-ce#666](https://github.com/magento/graphql-ce/pull/666) | +| Felix Wolfsteller | [#12612](https://github.com/magento/magento2/issues/12612) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | | Leone | [#22556](https://github.com/magento/magento2/issues/22556) | [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) | | Vincent Marmiesse | [#20843](https://github.com/magento/magento2/issues/20843) | [magento/magento2#22560](https://github.com/magento/magento2/pull/22560) | -| cedarvinda | [#22636](https://github.com/magento/magento2/issues/22636) | [magento/magento2#22644](https://github.com/magento/magento2/pull/22644) | +| Arvinda Kumar | [#22636](https://github.com/magento/magento2/issues/22636) | [magento/magento2#22644](https://github.com/magento/magento2/pull/22644) | | Surabhi Cedcoss | [#22640](https://github.com/magento/magento2/issues/22640) | [magento/magento2#22655](https://github.com/magento/magento2/pull/22655) | -| mage2pratik | [#20906](https://github.com/magento/magento2/issues/20906) | [magento/magento2#22739](https://github.com/magento/magento2/pull/22739) | -| Patelcc | [#22771](https://github.com/magento/magento2/issues/22771) | [magento/magento2#22779](https://github.com/magento/magento2/pull/22779) | +| Pratik Oza | [#20906](https://github.com/magento/magento2/issues/20906) | [magento/magento2#22739](https://github.com/magento/magento2/pull/22739) | +| Chirag Patel | [#22771](https://github.com/magento/magento2/issues/22771) | [magento/magento2#22779](https://github.com/magento/magento2/pull/22779) | | DigitalStartupUK | [#22788](https://github.com/magento/magento2/issues/22788) | [magento/magento2#22791](https://github.com/magento/magento2/pull/22791) | | Hoszi | [#18651](https://github.com/magento/magento2/issues/18651) | [magento/magento2#19584](https://github.com/magento/magento2/pull/19584) | | gwharton | [#21672](https://github.com/magento/magento2/issues/21672) | [magento/magento2#21675](https://github.com/magento/magento2/pull/21675), [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) | -| mtwegrzycki | [#22028](https://github.com/magento/magento2/issues/22028) | [magento/magento2#22575](https://github.com/magento/magento2/pull/22575) | -| Dharmeshvaja91 | [#21558](https://github.com/magento/magento2/issues/21558) | [magento/magento2#22794](https://github.com/magento/magento2/pull/22794) | +| Mateusz Wegrzycki | [#22028](https://github.com/magento/magento2/issues/22028) | [magento/magento2#22575](https://github.com/magento/magento2/pull/22575) | +| Dharmesh Vaja | [#21558](https://github.com/magento/magento2/issues/21558) | [magento/magento2#22794](https://github.com/magento/magento2/pull/22794) | | jhruehl | [#22127](https://github.com/magento/magento2/issues/22127) | [magento/magento2#22186](https://github.com/magento/magento2/pull/22186) | -| magesanjay | [#22639](https://github.com/magento/magento2/issues/22639) | [magento/magento2#22724](https://github.com/magento/magento2/pull/22724) | -| cedarvinda | [#22676](https://github.com/magento/magento2/issues/22676) | [magento/magento2#22742](https://github.com/magento/magento2/pull/22742) | +| Sanjay Vadadoriya | [#22639](https://github.com/magento/magento2/issues/22639) | [magento/magento2#22724](https://github.com/magento/magento2/pull/22724) | +| Arvinda Kumar | [#22676](https://github.com/magento/magento2/issues/22676) | [magento/magento2#22742](https://github.com/magento/magento2/pull/22742) | | Jacob Drummond | [#6659](https://github.com/magento/magento2/issues/6659) | [magento/magento2#22850](https://github.com/magento/magento2/pull/22850) | -| BenSpace48 | [#4628](https://github.com/magento/magento2/issues/4628) | [magento/magento2#22854](https://github.com/magento/magento2/pull/22854) | -| samtay | [#3795](https://github.com/magento/magento2/issues/3795) | [magento/magento2#21397](https://github.com/magento/magento2/pull/21397) | -| serhiyzhovnir | [#22786](https://github.com/magento/magento2/issues/22786) | [magento/magento2#22787](https://github.com/magento/magento2/pull/22787) | -| eduard13 | [#22822](https://github.com/magento/magento2/issues/22822) | [magento/magento2#22823](https://github.com/magento/magento2/pull/22823) | -| talset | [#21852](https://github.com/magento/magento2/issues/21852) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | -| hostep | [#22563](https://github.com/magento/magento2/issues/22563) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | +| Ben | [#4628](https://github.com/magento/magento2/issues/4628) | [magento/magento2#22854](https://github.com/magento/magento2/pull/22854) | +| Sam Tay | [#3795](https://github.com/magento/magento2/issues/3795) | [magento/magento2#21397](https://github.com/magento/magento2/pull/21397) | +| Serhiy Zhovnir | [#22786](https://github.com/magento/magento2/issues/22786) | [magento/magento2#22787](https://github.com/magento/magento2/pull/22787) | +| Eduard Chitoraga | [#22822](https://github.com/magento/magento2/issues/22822) | [magento/magento2#22823](https://github.com/magento/magento2/pull/22823) | +| Florian Lambert | [#21852](https://github.com/magento/magento2/issues/21852) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | +| Pieter Hoste | [#22563](https://github.com/magento/magento2/issues/22563) | [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) | | bhavik43 | [#22736](https://github.com/magento/magento2/issues/22736) | [magento/magento2#22795](https://github.com/magento/magento2/pull/22795) | | Amit Vishvakarma | [#22875](https://github.com/magento/magento2/issues/22875) | [magento/magento2#22876](https://github.com/magento/magento2/pull/22876) | -| abrarpathan19 | [#21214](https://github.com/magento/magento2/issues/21214) | [magento/magento2#21215](https://github.com/magento/magento2/pull/21215) | +| Abrar Pathan | [#21214](https://github.com/magento/magento2/issues/21214) | [magento/magento2#21215](https://github.com/magento/magento2/pull/21215) | | mikelevy300 | [#22143](https://github.com/magento/magento2/issues/22143) | [magento/magento2#22307](https://github.com/magento/magento2/pull/22307) | | p-bystritsky | [#22317](https://github.com/magento/magento2/issues/22317) | [magento/magento2#22444](https://github.com/magento/magento2/pull/22444) | | Michael Thessel | [#22396](https://github.com/magento/magento2/issues/22396) | [magento/magento2#22513](https://github.com/magento/magento2/pull/22513) | | Grishma Nayee | [#22506](https://github.com/magento/magento2/issues/22506) | [magento/magento2#22520](https://github.com/magento/magento2/pull/22520) | | 808brinks | [#22869](https://github.com/magento/magento2/issues/22869) | [magento/magento2#22893](https://github.com/magento/magento2/pull/22893) | -| speedy008 | [#22924](https://github.com/magento/magento2/issues/22924) | [magento/magento2#22926](https://github.com/magento/magento2/pull/22926) | +| Kajal Solanki | [#22924](https://github.com/magento/magento2/issues/22924) | [magento/magento2#22926](https://github.com/magento/magento2/pull/22926) | | ipascual | [#20186](https://github.com/magento/magento2/issues/20186) | [magento/magento2#22947](https://github.com/magento/magento2/pull/22947) | -| steadweb | [#574](https://github.com/magento/magento2/issues/574) | [magento/graphql-ce#694](https://github.com/magento/graphql-ce/pull/694) | -| tzyganu | [#686](https://github.com/magento/magento2/issues/686) | [magento/graphql-ce#695](https://github.com/magento/graphql-ce/pull/695) | +| Luke Steadman | [#574](https://github.com/magento/magento2/issues/574) | [magento/graphql-ce#694](https://github.com/magento/graphql-ce/pull/694) | +| Marius Strajeru | [#686](https://github.com/magento/magento2/issues/686) | [magento/graphql-ce#695](https://github.com/magento/graphql-ce/pull/695) | | Daniel Ifrim | [#22380](https://github.com/magento/magento2/issues/22380) | [magento/magento2#22387](https://github.com/magento/magento2/pull/22387) | -| Cristiano81 | [#18183](https://github.com/magento/magento2/issues/18183) | [magento/magento2#22718](https://github.com/magento/magento2/pull/22718) | -| eduan | [#22899](https://github.com/magento/magento2/issues/22899) | [magento/magento2#22914](https://github.com/magento/magento2/pull/22914) | +| Cristiano Nerozzi | [#18183](https://github.com/magento/magento2/issues/18183) | [magento/magento2#22718](https://github.com/magento/magento2/pull/22718) | +| Eduan | [#22899](https://github.com/magento/magento2/issues/22899) | [magento/magento2#22914](https://github.com/magento/magento2/pull/22914) | | Milind Singh | [#22686](https://github.com/magento/magento2/issues/22686) | [magento/magento2#22687](https://github.com/magento/magento2/pull/22687) | -| Sharkozp | [#22767](https://github.com/magento/magento2/issues/22767) | [magento/magento2#22772](https://github.com/magento/magento2/pull/22772) | -| speedy008 | [#20788](https://github.com/magento/magento2/issues/20788) | [magento/magento2#22931](https://github.com/magento/magento2/pull/22931) | +| Oleksandr Dykyi | [#22767](https://github.com/magento/magento2/issues/22767) | [magento/magento2#22772](https://github.com/magento/magento2/pull/22772) | +| Kajal Solanki | [#20788](https://github.com/magento/magento2/issues/20788) | [magento/magento2#22931](https://github.com/magento/magento2/pull/22931) | | matin73 | [#23030](https://github.com/magento/magento2/issues/23030) | [magento/magento2#23033](https://github.com/magento/magento2/pull/23033) | | Den4ik | [#23034](https://github.com/magento/magento2/issues/23034) | [magento/magento2#23035](https://github.com/magento/magento2/pull/23035) | -| Vinai | [#12696](https://github.com/magento/magento2/issues/12696) | [magento/magento2#18459](https://github.com/magento/magento2/pull/18459) | -| arnoudhgz | [#13266](https://github.com/magento/magento2/issues/13266) | [magento/magento2#22071](https://github.com/magento/magento2/pull/22071) | +| Vinai Kopp | [#12696](https://github.com/magento/magento2/issues/12696) | [magento/magento2#18459](https://github.com/magento/magento2/pull/18459) | +| Arnoud Beekman | [#13266](https://github.com/magento/magento2/issues/13266) | [magento/magento2#22071](https://github.com/magento/magento2/pull/22071) | | ihor-sviziev | [#22882](https://github.com/magento/magento2/issues/22882) | [magento/magento2#22884](https://github.com/magento/magento2/pull/22884) | -| ashsmith | [#23045](https://github.com/magento/magento2/issues/23045) | [magento/magento2#23046](https://github.com/magento/magento2/pull/23046) | +| Ash Smith | [#23045](https://github.com/magento/magento2/issues/23045) | [magento/magento2#23046](https://github.com/magento/magento2/pull/23046) | | LouNik1984 | [#16446](https://github.com/magento/magento2/issues/16446) | [magento/magento2#19184](https://github.com/magento/magento2/pull/19184) | -| victortodoran | [#14492](https://github.com/magento/magento2/issues/14492) | [magento/magento2#21394](https://github.com/magento/magento2/pull/21394) | +| vitoriodachef | [#14492](https://github.com/magento/magento2/issues/14492) | [magento/magento2#21394](https://github.com/magento/magento2/pull/21394) | | gwharton | [#21671](https://github.com/magento/magento2/issues/21671) | [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) | -| ketan-krish | [#22425](https://github.com/magento/magento2/issues/22425) | [magento/magento2#22426](https://github.com/magento/magento2/pull/22426) | -| squeegy06 | [#22511](https://github.com/magento/magento2/issues/22511) | [magento/magento2#22521](https://github.com/magento/magento2/pull/22521) | +| Ketan Patel | [#22425](https://github.com/magento/magento2/issues/22425) | [magento/magento2#22426](https://github.com/magento/magento2/pull/22426) | +| Jason | [#22511](https://github.com/magento/magento2/issues/22511) | [magento/magento2#22521](https://github.com/magento/magento2/pull/22521) | | alexeya-ven | [#23080](https://github.com/magento/magento2/issues/23080) | [magento/magento2#23081](https://github.com/magento/magento2/pull/23081) | -| aasim110 | [#19872](https://github.com/magento/magento2/issues/19872) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | -| jasonkcarter | [#22092](https://github.com/magento/magento2/issues/22092) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | -| nicholasscottfish | [#22087](https://github.com/magento/magento2/issues/22087) | [magento/magento2#22646](https://github.com/magento/magento2/pull/22646) | +| Aasim | [#19872](https://github.com/magento/magento2/issues/19872) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | +| Jason Carter | [#22092](https://github.com/magento/magento2/issues/22092) | [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) | +| Nicholas Scott Fish | [#22087](https://github.com/magento/magento2/issues/22087) | [magento/magento2#22646](https://github.com/magento/magento2/pull/22646) | | gwharton | [#21546](https://github.com/magento/magento2/issues/21546) | [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) | | gwharton | [#21604](https://github.com/magento/magento2/issues/21604) | [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) | -| fetzi | [#4247](https://github.com/magento/magento2/issues/4247) | [magento/magento2#21876](https://github.com/magento/magento2/pull/21876) | +| Johannes Pichler | [#4247](https://github.com/magento/magento2/issues/4247) | [magento/magento2#21876](https://github.com/magento/magento2/pull/21876) | | renard123 | [#22940](https://github.com/magento/magento2/issues/22940) | [magento/magento2#23007](https://github.com/magento/magento2/pull/23007) | | Tomash Khamlai | [#23053](https://github.com/magento/magento2/issues/23053) | [magento/magento2#23118](https://github.com/magento/magento2/pull/23118) | -| tzyganu | [#675](https://github.com/magento/magento2/issues/675) | [magento/graphql-ce#677](https://github.com/magento/graphql-ce/pull/677) | -| joshdifabio | [#682](https://github.com/magento/magento2/issues/682) | [magento/graphql-ce#700](https://github.com/magento/graphql-ce/pull/700) | -| tzyganu | [#681](https://github.com/magento/magento2/issues/681) | [magento/graphql-ce#711](https://github.com/magento/graphql-ce/pull/711) | -| cdiacon | [#22484](https://github.com/magento/magento2/issues/22484) | [magento/magento2#22637](https://github.com/magento/magento2/pull/22637) | +| Marius Strajeru | [#675](https://github.com/magento/magento2/issues/675) | [magento/graphql-ce#677](https://github.com/magento/graphql-ce/pull/677) | +| Josh Di Fabio | [#682](https://github.com/magento/magento2/issues/682) | [magento/graphql-ce#700](https://github.com/magento/graphql-ce/pull/700) | +| Marius Strajeru | [#681](https://github.com/magento/magento2/issues/681) | [magento/graphql-ce#711](https://github.com/magento/graphql-ce/pull/711) | +| Calin Diacon | [#22484](https://github.com/magento/magento2/issues/22484) | [magento/magento2#22637](https://github.com/magento/magento2/pull/22637) | | atwixfirster | [#23138](https://github.com/magento/magento2/issues/23138) | [magento/magento2#23140](https://github.com/magento/magento2/pull/23140) | | huyenvk2017 | [#22004](https://github.com/magento/magento2/issues/22004) | [magento/magento2#22704](https://github.com/magento/magento2/pull/22704) | -| ioweb-gr | [#22870](https://github.com/magento/magento2/issues/22870) | [magento/magento2#22933](https://github.com/magento/magento2/pull/22933) | -| ioweb-gr | [#22808](https://github.com/magento/magento2/issues/22808) | [magento/magento2#23005](https://github.com/magento/magento2/pull/23005) | -| tzyganu | [#674](https://github.com/magento/magento2/issues/674) | [magento/graphql-ce#709](https://github.com/magento/graphql-ce/pull/709) | -| thecaligarmo | [#683](https://github.com/magento/magento2/issues/683) | [magento/graphql-ce#717](https://github.com/magento/graphql-ce/pull/717) | -| Mage Psycho | [#9113](https://github.com/magento/magento2/issues/9113) | [magento/graphql-ce#721](https://github.com/magento/graphql-ce/pull/721) | +| Ioweb Technologies | [#22870](https://github.com/magento/magento2/issues/22870) | [magento/magento2#22933](https://github.com/magento/magento2/pull/22933) | +| Ioweb Technologies | [#22808](https://github.com/magento/magento2/issues/22808) | [magento/magento2#23005](https://github.com/magento/magento2/pull/23005) | +| Marius Strajeru | [#674](https://github.com/magento/magento2/issues/674) | [magento/graphql-ce#709](https://github.com/magento/graphql-ce/pull/709) | +| Aram Dermenjian | [#683](https://github.com/magento/magento2/issues/683) | [magento/graphql-ce#717](https://github.com/magento/graphql-ce/pull/717) | +| Raj KB | [#9113](https://github.com/magento/magento2/issues/9113) | [magento/graphql-ce#721](https://github.com/magento/graphql-ce/pull/721) | | BezV8 | [#18337](https://github.com/magento/magento2/issues/18337) | [magento/magento2#22942](https://github.com/magento/magento2/pull/22942) | | Amit Vishvakarma | [#23213](https://github.com/magento/magento2/issues/23213) | [magento/magento2#23216](https://github.com/magento/magento2/pull/23216) | | renard123 | [#23238](https://github.com/magento/magento2/issues/23238) | [magento/magento2#23250](https://github.com/magento/magento2/pull/23250) | @@ -103,67 +103,67 @@ | Jeroen VanLeusden | [#23266](https://github.com/magento/magento2/issues/23266) | [magento/magento2#23267](https://github.com/magento/magento2/pull/23267) | | Nishant Jariwala | [#23285](https://github.com/magento/magento2/issues/23285) | [magento/magento2#23286](https://github.com/magento/magento2/pull/23286) | | jamiemck | [#486](https://github.com/magento/magento2/issues/486) | [magento/graphql-ce#714](https://github.com/magento/graphql-ce/pull/714) | -| Dorn- | [#716](https://github.com/magento/magento2/issues/716) | [magento/graphql-ce#723](https://github.com/magento/graphql-ce/pull/723) | -| gstaniforthsessiondigital | [#687](https://github.com/magento/magento2/issues/687) | [magento/graphql-ce#749](https://github.com/magento/graphql-ce/pull/749) | +| Dorn | [#716](https://github.com/magento/magento2/issues/716) | [magento/graphql-ce#723](https://github.com/magento/graphql-ce/pull/723) | +| Gavin Staniforth | [#687](https://github.com/magento/magento2/issues/687) | [magento/graphql-ce#749](https://github.com/magento/graphql-ce/pull/749) | | bharanikonda | [#20038](https://github.com/magento/magento2/issues/20038) | [magento/magento2#22675](https://github.com/magento/magento2/pull/22675) | -| Vishrootways | [#23074](https://github.com/magento/magento2/issues/23074) | [magento/magento2#23309](https://github.com/magento/magento2/pull/23309) | +| Vish V | [#23074](https://github.com/magento/magento2/issues/23074) | [magento/magento2#23309](https://github.com/magento/magento2/pull/23309) | | gfxguru | [#622](https://github.com/magento/magento2/issues/622) | [magento/graphql-ce#626](https://github.com/magento/graphql-ce/pull/626) | -| tzyganu | [#732](https://github.com/magento/magento2/issues/732) | [magento/graphql-ce#734](https://github.com/magento/graphql-ce/pull/734) | +| Marius Strajeru | [#732](https://github.com/magento/magento2/issues/732) | [magento/graphql-ce#734](https://github.com/magento/graphql-ce/pull/734) | | novakivskiy | [#13227](https://github.com/magento/magento2/issues/13227) | [magento/magento2#22650](https://github.com/magento/magento2/pull/22650) | -| magesanjay | [#22638](https://github.com/magento/magento2/issues/22638) | [magento/magento2#22800](https://github.com/magento/magento2/pull/22800) | +| Sanjay Vadadoriya | [#22638](https://github.com/magento/magento2/issues/22638) | [magento/magento2#22800](https://github.com/magento/magento2/pull/22800) | | ilnytskyi | [#22266](https://github.com/magento/magento2/issues/22266) | [magento/magento2#23218](https://github.com/magento/magento2/pull/23218) | | Oleksii Bulba | [#23230](https://github.com/magento/magento2/issues/23230) | [magento/magento2#23247](https://github.com/magento/magento2/pull/23247) | | alexeya-ven | [#23333](https://github.com/magento/magento2/issues/23333) | [magento/magento2#23338](https://github.com/magento/magento2/pull/23338) | | Tomash Khamlai | [#23346](https://github.com/magento/magento2/issues/23346) | [magento/magento2#23367](https://github.com/magento/magento2/pull/23367) | -| udovicic | [#21380](https://github.com/magento/magento2/issues/21380) | [magento/magento2#23312](https://github.com/magento/magento2/pull/23312) | +| Udovicic | [#21380](https://github.com/magento/magento2/issues/21380) | [magento/magento2#23312](https://github.com/magento/magento2/pull/23312) | | Oleksii Lisovyi | [#21136](https://github.com/magento/magento2/issues/21136) | [magento/magento2#22116](https://github.com/magento/magento2/pull/22116) | -| eduard13 | [#23233](https://github.com/magento/magento2/issues/23233) | [magento/magento2#23234](https://github.com/magento/magento2/pull/23234) | +| Eduard Chitoraga | [#23233](https://github.com/magento/magento2/issues/23233) | [magento/magento2#23234](https://github.com/magento/magento2/pull/23234) | | AndreasMueller75 | [#21974](https://github.com/magento/magento2/issues/21974) | [magento/magento2#23393](https://github.com/magento/magento2/pull/23393) | -| iamckindia | [#23377](https://github.com/magento/magento2/issues/23377) | [magento/magento2#23394](https://github.com/magento/magento2/pull/23394) | -| YurySk | [#22998](https://github.com/magento/magento2/issues/22998) | [magento/magento2#23048](https://github.com/magento/magento2/pull/23048) | +| Chandrakesh Kumar | [#23377](https://github.com/magento/magento2/issues/23377) | [magento/magento2#23394](https://github.com/magento/magento2/pull/23394) | +| Yury Skanavy | [#22998](https://github.com/magento/magento2/issues/22998) | [magento/magento2#23048](https://github.com/magento/magento2/pull/23048) | | ankurvr | [#23522](https://github.com/magento/magento2/issues/23522) | [magento/magento2#23523](https://github.com/magento/magento2/pull/23523) | -| CNanninga | [#8298](https://github.com/magento/magento2/issues/8298) | [magento/magento2#23528](https://github.com/magento/magento2/pull/23528) | +| Chris Nanninga | [#8298](https://github.com/magento/magento2/issues/8298) | [magento/magento2#23528](https://github.com/magento/magento2/pull/23528) | | gwharton | [#22103](https://github.com/magento/magento2/issues/22103) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | -| msawyers | [#23199](https://github.com/magento/magento2/issues/23199) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | +| Maurice Sawyers | [#23199](https://github.com/magento/magento2/issues/23199) | [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) | | sunilit42 | [#23538](https://github.com/magento/magento2/issues/23538) | [magento/magento2#23541](https://github.com/magento/magento2/pull/23541) | -| speedy008 | [#21126](https://github.com/magento/magento2/issues/21126) | [magento/magento2#21128](https://github.com/magento/magento2/pull/21128) | -| dipeshrangani | [#23471](https://github.com/magento/magento2/issues/23471) | [magento/magento2#23474](https://github.com/magento/magento2/pull/23474) | -| nirmalraval18 | [#23466](https://github.com/magento/magento2/issues/23466) | [magento/magento2#23477](https://github.com/magento/magento2/pull/23477) | +| Kajal Solanki | [#21126](https://github.com/magento/magento2/issues/21126) | [magento/magento2#21128](https://github.com/magento/magento2/pull/21128) | +| Dipesh Rangani | [#23471](https://github.com/magento/magento2/issues/23471) | [magento/magento2#23474](https://github.com/magento/magento2/pull/23474) | +| Nirmal Raval | [#23466](https://github.com/magento/magento2/issues/23466) | [magento/magento2#23477](https://github.com/magento/magento2/pull/23477) | | vrajesh-patel1993 | [#23467](https://github.com/magento/magento2/issues/23467) | [magento/magento2#23494](https://github.com/magento/magento2/pull/23494) | | stkrelax | [#23222](https://github.com/magento/magento2/issues/23222) | [magento/magento2#23310](https://github.com/magento/magento2/pull/23310) | | bhavik43 | [#23354](https://github.com/magento/magento2/issues/23354) | [magento/magento2#23360](https://github.com/magento/magento2/pull/23360) | -| engcom-Golf | [#23424](https://github.com/magento/magento2/issues/23424) | [magento/magento2#23427](https://github.com/magento/magento2/pull/23427) | -| molovo | [#16234](https://github.com/magento/magento2/issues/16234) | [magento/magento2#23496](https://github.com/magento/magento2/pull/23496) | -| troublediehar | [#9798](https://github.com/magento/magento2/issues/9798) | [magento/magento2#23529](https://github.com/magento/magento2/pull/23529) | +| Nazar Klovanych | [#23424](https://github.com/magento/magento2/issues/23424) | [magento/magento2#23427](https://github.com/magento/magento2/pull/23427) | +| James Dinsdale | [#16234](https://github.com/magento/magento2/issues/16234) | [magento/magento2#23496](https://github.com/magento/magento2/pull/23496) | +| Dmytro Portenko | [#9798](https://github.com/magento/magento2/issues/9798) | [magento/magento2#23529](https://github.com/magento/magento2/pull/23529) | | Alex Goodey | [#6287](https://github.com/magento/magento2/issues/6287) | [magento/magento2#20918](https://github.com/magento/magento2/pull/20918) | -| kanduvisla | [#8258](https://github.com/magento/magento2/issues/8258) | [magento/magento2#15383](https://github.com/magento/magento2/pull/15383) | +| Giel Berkers | [#8258](https://github.com/magento/magento2/issues/8258) | [magento/magento2#15383](https://github.com/magento/magento2/pull/15383) | | Craig Carnell | [#13561](https://github.com/magento/magento2/issues/13561) | [magento/magento2#18075](https://github.com/magento/magento2/pull/18075) | | KooTjoo | [#22545](https://github.com/magento/magento2/issues/22545) | [magento/magento2#22658](https://github.com/magento/magento2/pull/22658) | | diamondavocado | [#23383](https://github.com/magento/magento2/issues/23383) | [magento/magento2#23500](https://github.com/magento/magento2/pull/23500) | | bhavik43 | [#22950](https://github.com/magento/magento2/issues/22950) | [magento/magento2#23226](https://github.com/magento/magento2/pull/23226) | -| rogyar | [#23606](https://github.com/magento/magento2/issues/23606) | [magento/magento2#23607](https://github.com/magento/magento2/pull/23607) | -| tzyganu | [#736](https://github.com/magento/magento2/issues/736) | [magento/graphql-ce#747](https://github.com/magento/graphql-ce/pull/747) | -| Vinai | [#739](https://github.com/magento/magento2/issues/739) | [magento/graphql-ce#753](https://github.com/magento/graphql-ce/pull/753) | +| Yaroslav Rogoza | [#23606](https://github.com/magento/magento2/issues/23606) | [magento/magento2#23607](https://github.com/magento/magento2/pull/23607) | +| Marius Strajeru | [#736](https://github.com/magento/magento2/issues/736) | [magento/graphql-ce#747](https://github.com/magento/graphql-ce/pull/747) | +| Vinai Kopp | [#739](https://github.com/magento/magento2/issues/739) | [magento/graphql-ce#753](https://github.com/magento/graphql-ce/pull/753) | | bst2002git | [#23435](https://github.com/magento/magento2/issues/23435) | [magento/magento2#23444](https://github.com/magento/magento2/pull/23444) | | AleksLi | [#12817](https://github.com/magento/magento2/issues/12817) | [magento/magento2#20579](https://github.com/magento/magento2/pull/20579) | | swnsma | [#23386](https://github.com/magento/magento2/issues/23386) | [magento/magento2#23387](https://github.com/magento/magento2/pull/23387) | -| pavdan | [#23345](https://github.com/magento/magento2/issues/23345) | [magento/magento2#23358](https://github.com/magento/magento2/pull/23358) | -| David Pixie | [#22814](https://github.com/magento/magento2/issues/22814) | [magento/magento2#23459](https://github.com/magento/magento2/pull/23459) | +| Daniel Pavlov | [#23345](https://github.com/magento/magento2/issues/23345) | [magento/magento2#23358](https://github.com/magento/magento2/pull/23358) | +| David Wilkinson | [#22814](https://github.com/magento/magento2/issues/22814) | [magento/magento2#23459](https://github.com/magento/magento2/pull/23459) | | gwharton | [#23594](https://github.com/magento/magento2/issues/23594) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | | gwharton | [#23595](https://github.com/magento/magento2/issues/23595) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | | gwharton | [#23596](https://github.com/magento/magento2/issues/23596) | [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) | | ffauvel | [#23643](https://github.com/magento/magento2/issues/23643) | [magento/magento2#23649](https://github.com/magento/magento2/pull/23649) | | gwharton | [#23597](https://github.com/magento/magento2/issues/23597) | [magento/magento2#23710](https://github.com/magento/magento2/pull/23710) | -| shinoamakusa | [#23510](https://github.com/magento/magento2/issues/23510) | [magento/magento2#23524](https://github.com/magento/magento2/pull/23524) | -| kassner | [#22890](https://github.com/magento/magento2/issues/22890) | [magento/magento2#22891](https://github.com/magento/magento2/pull/22891) | +| Oleg K. | [#23510](https://github.com/magento/magento2/issues/23510) | [magento/magento2#23524](https://github.com/magento/magento2/pull/23524) | +| Rafael Kassner | [#22890](https://github.com/magento/magento2/issues/22890) | [magento/magento2#22891](https://github.com/magento/magento2/pull/22891) | | Quentin Farizon | [#23054](https://github.com/magento/magento2/issues/23054) | [magento/magento2#23125](https://github.com/magento/magento2/pull/23125) | -| roma84 | [#23135](https://github.com/magento/magento2/issues/23135) | [magento/magento2#23173](https://github.com/magento/magento2/pull/23173) | -| navarr | [#23211](https://github.com/magento/magento2/issues/23211) | [magento/magento2#23688](https://github.com/magento/magento2/pull/23688) | -| simonlandry0 | [#23624](https://github.com/magento/magento2/issues/23624) | [magento/magento2#23718](https://github.com/magento/magento2/pull/23718) | -| ioweb-gr | [#23717](https://github.com/magento/magento2/issues/23717) | [magento/magento2#23753](https://github.com/magento/magento2/pull/23753) | +| Chumak Roman | [#23135](https://github.com/magento/magento2/issues/23135) | [magento/magento2#23173](https://github.com/magento/magento2/pull/23173) | +| Navarr Barnier | [#23211](https://github.com/magento/magento2/issues/23211) | [magento/magento2#23688](https://github.com/magento/magento2/pull/23688) | +| Simon Landry | [#23624](https://github.com/magento/magento2/issues/23624) | [magento/magento2#23718](https://github.com/magento/magento2/pull/23718) | +| Ioweb Technologies | [#23717](https://github.com/magento/magento2/issues/23717) | [magento/magento2#23753](https://github.com/magento/magento2/pull/23753) | | tzyganu | [#758](https://github.com/magento/magento2/issues/758) | [magento/graphql-ce#759](https://github.com/magento/graphql-ce/pull/759) | -| patelnimesh1988 | [#14071](https://github.com/magento/magento2/issues/14071) | [magento/magento2#22984](https://github.com/magento/magento2/pull/22984) | -| delyriand | [#22112](https://github.com/magento/magento2/issues/22112) | [magento/magento2#23656](https://github.com/magento/magento2/pull/23656) | +| Nimesh Patel | [#14071](https://github.com/magento/magento2/issues/14071) | [magento/magento2#22984](https://github.com/magento/magento2/pull/22984) | +| Maxime | [#22112](https://github.com/magento/magento2/issues/22112) | [magento/magento2#23656](https://github.com/magento/magento2/pull/23656) | | shilpambb | [#23654](https://github.com/magento/magento2/issues/23654) | [magento/magento2#23681](https://github.com/magento/magento2/pull/23681) | | gwharton | [#23751](https://github.com/magento/magento2/issues/23751) | [magento/magento2#23752](https://github.com/magento/magento2/pull/23752) | | textarea | [#23678](https://github.com/magento/magento2/issues/23678) | [magento/magento2#23679](https://github.com/magento/magento2/pull/23679) | @@ -172,9 +172,9 @@ | nehaguptacedcoss | [#22702](https://github.com/magento/magento2/issues/22702) | [magento/magento2#23803](https://github.com/magento/magento2/pull/23803) | | clockworkgeek | [#167](https://github.com/magento/magento2/issues/167) | [magento/graphql-ce#351](https://github.com/magento/graphql-ce/pull/351) | | Ihor Sviziev | [#438](https://github.com/magento/magento2/issues/438) | [magento/graphql-ce#699](https://github.com/magento/graphql-ce/pull/699) | -| fatihky | [#702](https://github.com/magento/magento2/issues/702) | [magento/graphql-ce#779](https://github.com/magento/graphql-ce/pull/779) | -| Vinai | [#738](https://github.com/magento/magento2/issues/738) | [magento/graphql-ce#789](https://github.com/magento/graphql-ce/pull/789) | -| pmsteil | [#23405](https://github.com/magento/magento2/issues/23405) | [magento/magento2#23866](https://github.com/magento/magento2/pull/23866) | +| Fatih Kaya | [#702](https://github.com/magento/magento2/issues/702) | [magento/graphql-ce#779](https://github.com/magento/graphql-ce/pull/779) | +| Vinai Kopp | [#738](https://github.com/magento/magento2/issues/738) | [magento/graphql-ce#789](https://github.com/magento/graphql-ce/pull/789) | +| Patrick Steil | [#23405](https://github.com/magento/magento2/issues/23405) | [magento/magento2#23866](https://github.com/magento/magento2/pull/23866) | | Eden Duong | [#23900](https://github.com/magento/magento2/issues/23900) | [magento/magento2#23901](https://github.com/magento/magento2/pull/23901) | | Eden Duong | [#23904](https://github.com/magento/magento2/issues/23904) | [magento/magento2#23905](https://github.com/magento/magento2/pull/23905) | | Eden Duong | [#23916](https://github.com/magento/magento2/issues/23916) | [magento/magento2#23917](https://github.com/magento/magento2/pull/23917) |