You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
| 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.|
23
23
| 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`. |
24
24
| 1112 | Importing non-existent Adobe Commerce class | Update code to use a class marked as `@api`. |
25
25
| 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
172
172
| 5084 | Do not initialize JS component in php | Initialize JS component in a template. |
173
173
| 5085 | The use of certain functions is discouraged | Use the alternative function advised on the message instead. |
174
174
| 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. |
175
180
| 6001 |`jQuery.andSelf()` removed | Use `jQuery.addBack()`. |
176
181
| 6002 | jQuery `$.bind` and `$.unbind` are deprecated | Use `$.on` and `$.off` instead. |
177
182
| 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. |
Copy file name to clipboardExpand all lines: src/quality-patches/release-notes.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,16 @@ For information about quality patches created by the Community for {{site.data.v
21
21
- {:.fix}Fixes and improvements
22
22
- {:.bug}Known issues -->
23
23
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.
-**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