-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
monaco: uplift to 1.72.3
#11787
monaco: uplift to 1.72.3
#11787
Conversation
84a2a0e
to
645262f
Compare
@vince-fugnitto I saw that this PR breaks the playwright tests. Please feel free to ping me anytime if we can help out adapting the page object library to make the tests work again. |
0555e3b
to
72c65fd
Compare
@planger thanks! You can take a look at them if you'd like, I was having a hard time actually debugging playwright. |
@vince-fugnitto Thanks, we'll take a look! As many of us are currently on EclipseCon, I'm not sure we'll get to it this week though. To avoid blocking your PR, feel free to disable the failing test temporarily, and we'll open a PR at latest next week to fix and re-enable it. Thanks! |
@vince-fugnitto I've had a look at the failing test. It seems like Monaco now adds a "zero width non-joiner" character ( protected replaceEditorSymbolsWithSpace(content: string): string | Promise<string | undefined> {
// [ ] => \u00a0 -- NO-BREAK SPACE
// [·] · => \u00b7 -- MIDDLE DOT
// [] ‌ => \u200c -- ZERO WIDTH NON-JOINER
return content.replace(/[\u00a0\u00b7]/g, ' ').replace(/[\u200c]/g, '');
} |
72c65fd
to
b0a7e95
Compare
b0a7e95
to
b821dc2
Compare
a7f7a0d
to
562bd7e
Compare
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.
The changes look good to me. I've tried testing the monaco features and the added preferences in particular. Everything seems to work as expected 👍
I would propose to merge this PR rather sooner than later to catch potential issues before the next release.
562bd7e
to
7b9be65
Compare
Thank you for the review! I performed an official release of |
The latest CQ has been approved 👍 |
As mentioned in the dev meeting, I'll merge the pull-request tomorrow and we have the rest of the month to identify any potential regressions. |
The commit upgrades monaco to `v1.72.3`. Signed-off-by: vince-fugnitto <vincent.fugnitto@ericsson.com>
7b9be65
to
851ffab
Compare
The test seems to fail due to |
Signed-off-by: vince-fugnitto <vincent.fugnitto@ericsson.com>
What it does
The pull-request uplifts monaco to
1.72.2
(latest vscode tag).How to test
Checklist:
syntax highlighting
works for multiple languagesgo to definition
,call hierarchy
,peek >
,refactor
)quick fixes
workquick input
andquick open
menu workseditor.stickyScroll.enabled
)Additional Information
CQ for@theia/monaco-editor-core@1.72.2
@theia/monaco-editor-core@1.72.3
Review checklist
Reminder for reviewers
Signed-off-by: vince-fugnitto vincent.fugnitto@ericsson.com