-
Notifications
You must be signed in to change notification settings - Fork 9.4k
[Backport] Fix SKU limit in import new products #18591
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Backport] Fix SKU limit in import new products #18591
Conversation
Hi @ravi-chandra3197. Thank you for your contribution
For more details, please, review the Magento Contributor Assistant documentation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the contribution! Please make changes according to the review results.
/** | ||
* SKU max length | ||
*/ | ||
const DB_MAX_SKU_LENGTH = 65; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You introduced the constant in the class marked with @api
that is backward incompatible (https://devdocs.magento.com/guides/v2.3/contributor-guide/backward-compatible-development/). Additionally the size of sku
column is 64, not 65. Please reimplement the solution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also we want the fixes to be delivered to 2.3 and then backported to 2.2. Please create PR to 2.3
Hello, I have created a new pull request #18639 as per your suggestion based on 2.3 develop branch. Please kindly review it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Thank you for urgent reaction :)
Also we want the fixes to be delivered to 2.3 and then backported to 2.2. Please create PR to 2.3 |
… allow 64 characters for SKU
Hi @slavvka can you review it |
hey @ravi-chandra3197 thank you for the changes. Looks good |
Hi @sidolov, thank you for the review. |
Hi @slavvka, thank you for the review. |
Hi @ravi-chandra3197. Thank you for your contribution. Please, consider to port this solution to 2.3 release line. |
Description (*)
Fix SKU limit in import new products
Fixed Issues (if relevant)
Manual testing scenarios (*)
N/A
Contribution checklist (*)
Backport for: #18639