-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Update Node.js and vscode #19194
Update Node.js and vscode #19194
Conversation
e29475c
to
9b47e1c
Compare
https://eslint.org/docs/latest/use/configure/migration-guide might help here, but you've probably found it already. |
Yeah, just was struggling with it at 3 am. I'll fix it 😅 |
Some proposals must have been merged Via 'product.json#extensionEnabledApiProposals' extension 'ms-vscode.vscode-selfhost-test-provider' wants API proposal 'attributableCoverage' but that proposal DOES NOT EXIST. |
I removed the vscode update and now I'm getting a different error in the same test: Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned. it seems like it is trying to use extensions such as copilot chat in the test? |
ok, new vscode is actually working now |
I can reproduce this error on my windows machine. I don't really know where this is coming from. There is a missing |
wow, I can't believe I actually figured out where that bug was happening. there we go! |
I hate javascript |
@lnicola I think this is ready for your review :) |
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.
Thanks! Will merge this tomorrow.
Gentle reminder |
PS: can you also squash this at the end? |
It doesn't get squashed when you merge it? |
No, not when using merge queues. |
b86d7f6
to
5a02265
Compare
|
Bah, can we switch to Biome or something? Not in this PR, of course. |
5a02265
to
28de9ce
Compare
The squash is tasty |
Head branch was pushed to by a user without write access
28de9ce
to
00726cf
Compare
@lnicola I had to fix a merge conflict in release.yml |
Looks like we can't merge this directly, but the Code version was rolled back.
"ansi-black": "ansiBlack", | ||
"ansi-white": "ansiWhite", | ||
"ansi-red": "ansiRed", | ||
"ansi-green": "ansiGreen", | ||
"ansi-yellow": "ansiYellow", | ||
"ansi-blue": "ansiBlue", | ||
"ansi-magenta": "ansiMagenta", | ||
"ansi-cyan": "ansiCyan", | ||
|
||
"ansi-bright-black": "ansiBrightBlack", | ||
"ansi-bright-white": "ansiBrightWhite", | ||
"ansi-bright-red": "ansiBrightRed", | ||
"ansi-bright-green": "ansiBrightGreen", | ||
"ansi-bright-yellow": "ansiBrightYellow", | ||
"ansi-bright-blue": "ansiBrightBlue", | ||
"ansi-bright-magenta": "ansiBrightMagenta", | ||
"ansi-bright-cyan": "ansiBrightCyan", | ||
"ansi-black": new ThemeColor("terminal.ansiBlack"), | ||
"ansi-white": new ThemeColor("terminal.ansiWhite"), | ||
"ansi-red": new ThemeColor("terminal.ansiRed"), | ||
"ansi-green": new ThemeColor("terminal.ansiGreen"), | ||
"ansi-yellow": new ThemeColor("terminal.ansiYellow"), | ||
"ansi-blue": new ThemeColor("terminal.ansiBlue"), | ||
"ansi-magenta": new ThemeColor("terminal.ansiMagenta"), | ||
"ansi-cyan": new ThemeColor("terminal.ansiCyan"), | ||
|
||
"ansi-bright-black": new ThemeColor("terminal.ansiBrightBlack"), | ||
"ansi-bright-white": new ThemeColor("terminal.ansiBrightWhite"), | ||
"ansi-bright-red": new ThemeColor("terminal.ansiBrightRed"), | ||
"ansi-bright-green": new ThemeColor("terminal.ansiBrightGreen"), | ||
"ansi-bright-yellow": new ThemeColor("terminal.ansiBrightYellow"), | ||
"ansi-bright-blue": new ThemeColor("terminal.ansiBrightBlue"), | ||
"ansi-bright-magenta": new ThemeColor("terminal.ansiBrightMagenta"), | ||
"ansi-bright-cyan": new ThemeColor("terminal.ansiBrightCyan"), |
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.
As pointed out by #19262 this change is wrong / incomplete. The type hints may have lied but the code using the static was expecting strings as values, not ThemeColor
objects
any
stuff because I don't know if it can be fixed