-
Notifications
You must be signed in to change notification settings - Fork 16.2k
fix: reject task append to JumpList when description exceeds 260 characters #28485
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
Conversation
💖 Thanks for opening this pull request! 💖 We use semantic commit messages to streamline the release process. Before your pull request can be merged, you should update your pull request title to start with a semantic prefix. Examples of commit messages with semantic prefixes:
Things that will help get your PR across the finish line:
We get a lot of pull requests on this repo, so please be patient and we will get back to you as soon as we can. |
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.
Is a silent failure the right approach here? Should we perhaps throw an error or truncate the content instead?
Also, this limit should be documented somewhere.
@nornagon the error is not silenced, just not handled by this part of the script. Within the Perhaps it would be better to serve additional information within the rejection itself though, along the lines of "The description of |
Should there be a change in the documentation to include this limit? If yes, where? |
Yeah, it should go in the docs for |
@nornagon I added the documentation changes, do they work like this? Added a small remark to jump-list-item.md as well |
Is there anything left to do? |
Congrats on merging your first pull request! 🎉🎉🎉 |
Release Notes Persisted
|
I have automatically backported this PR to "11-x-y", please check out #28524 |
I have automatically backported this PR to "12-x-y", please check out #28525 |
I have automatically backported this PR to "13-x-y", please check out #28526 |
Description of Change
Fixed: #26862
Checklist
npm test
passesRelease Notes
Notes: Fixed a bug where, when a JumpList task description exceeded 260 characters, the JumpList was empty, despite valid entries.