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

Commit 310cce9

Browse files
authored
Merge branch 'master' into whatsnew-update
2 parents 5e9249c + 22920d3 commit 310cce9

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

src/_includes/upgrade/uct-error-reference.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Critical errors are raised when the custom code is referencing entities that are
1919
{:.error-table}
2020
| Error code | Error description | Suggested action |
2121
| - | - | - |
22-
| 1110 | Instantiating non-existent Adobe Commerce class/interface | Update code to use a class marked as `@api`. Instantiating non-existent Adobe Commerce class/interface |
22+
| 1110 | Instantiating non-existent Adobe Commerce class/interface | Update code to use a class marked as `@api`. Instantiating non-existent Adobe Commerce class/interface. |
2323
| 1111 | Extending from non-existent Adobe Commerce class | The extended class is no longer present in the codebase. Inheritance is not recommended way of extending Adobe Commerce functionality. Update code to use a class marked as `@api`. |
2424
| 1112 | Importing non-existent Adobe Commerce class | Update code to use a class marked as `@api`. |
2525
| 1113 | Loading non-existent Adobe Commerce class | Update code to use a class marked as `@api`. |
@@ -172,6 +172,11 @@ Custom code errors are raised when custom code is using the Adobe Commerce entry
172172
| 5084 | Do not initialize JS component in php | Initialize JS component in a template. |
173173
| 5085 | The use of certain functions is discouraged | Use the alternative function advised on the message instead. |
174174
| 5087 | PHP cross-version compatibility issue | Follow the suggestions from the message and check the [migration guide](https://www.php.net/manual/en/migration81.php). |
175+
| 5088 | Optional parameters found after required ones | Move required parameters after optional ones. |
176+
| 5089 | Method visibility `final private` found | Change method visibility from `final private` to only `private`. |
177+
| 5090 | Magic method `__set_state` is not defined as `static` | Magic method `__set_state` must be defined as `static`. |
178+
| 5091 | Class with `__toString()` method not inheriting from `Stringable` interface | Add `Stringable` interface to class with `__toString()` method. |
179+
| 5092 | `is_resource()` method used for functions that now return Object | Change `is_resource()` to `instanceof` Object. |
175180
| 6001 | `jQuery.andSelf()` removed | Use `jQuery.addBack()`. |
176181
| 6002 | jQuery `$.bind` and `$.unbind` are deprecated | Use `$.on` and `$.off` instead. |
177182
| 6003 | jQuery method to subscribe to event is deprecated and shouldn't be used | Use `.on("event name", fn)` method instead to subscribe to that event. |

src/quality-patches/release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ For information about quality patches created by the Community for {{site.data.v
2121
- {:.fix}Fixes and improvements
2222
- {:.bug}Known issues -->
2323

24+
## v1.1.8
25+
26+
- **MDVA-41215** _(for Adobe Commerce and Magento Open Source `>=2.3.0 <2.4.4`)_-Fixes the issue where users get the 500 error after setting the "mage-messages" cookie, if it already exists but there are no new messages.
27+
- **MDVA-41139** _(for Adobe Commerce and Magento Open Source `>=2.4.3 <2.4.4`)_-Fixes the issue where configurable products become Out of Stock after product import, when a simple product's qty=0 for one of its sources.
28+
- **MDVA-42326** _(for Adobe Commerce and Magento Open Source `>=2.3.6 <=2.3.7-p2 || >=2.4.1 <2.4.4`)_-Fixes the issue where customers get an error on checkout after a session timeout even if persistent shopping cart is enabled.
29+
- **MDVA-42341** _(for Adobe Commerce and Magento Open Source `>=2.4.2 <2.4.4`)_-Fixes the issue where the “categoryList” GraphQL query does not filter results if a request has the Store header.
30+
- **MDVA-38393** _(for Adobe Commerce and Magento Open Source `>=2.3.0 <2.4.4`)_-Fixes the issue where Catalog rules stop working for a configurable product if its simple product is re-named.
31+
- **MDVA-39153** _(for Adobe Commerce and Magento Open Source `>=2.4.2 <2.4.4`)_-Fixes the issue where a discount amount is calculated incorrectly during reorder in the Admin.
32+
- Updated patches: MDVA-28993, MDVA-41061, MDVA-35984.
33+
2434
## v1.1.7
2535

2636
- **MDVA-39711** _(for Adobe Commerce and Magento Open Source `>=2.3.0 <2.4.3`)_-Fixes the issue where admin users cannot access the customers grid after deleting website.

0 commit comments

Comments
 (0)