-
Notifications
You must be signed in to change notification settings - Fork 7
chore(deps): update devdependencies #289
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
base: main
Are you sure you want to change the base?
Conversation
📝 WalkthroughWalkthroughBumped devDependency versions in the root and test package.json files. Root package.json updates: 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Comment |
|
26193f2 to
31a513b
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.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In @package.json:
- Line 2771: Dependencies and lockfiles were updated and tooling versions
pinned, but you need to locally verify the full developer workflow: run the
openInBrowser npm script (referencing the openInBrowser script in package.json),
run a full build, and trigger the precommit hooks (lint-staged) to ensure
@vscode/test-cli "^0.0.12" and the bumped @vscode/test-web and other tools work
with the locked Node 22.21.1; if any script fails, update the offending package
or scripts (package.json entries and lint-staged config) to restore
compatibility, regenerate the lockfile, and re-run the checks until
openInBrowser, build, and precommit succeed.
📜 Review details
Configuration used: Organization UI
Review profile: ASSERTIVE
Plan: Pro
Disabled knowledge base sources:
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
⛔ Files ignored due to path filters (2)
package-lock.jsonis excluded by!**/package-lock.jsonsrc/test/vscode-notebook-perf/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (2)
package.jsonsrc/test/vscode-notebook-perf/package.json
🔇 Additional comments (1)
src/test/vscode-notebook-perf/package.json (1)
33-33: Looks fine; verify notebook-perf tests still run with @vscode/test-cli ^0.0.12.
Since this is the test runner, confirm no CLI/behavior changes breaksrc/test/vscode-notebook-perf’stestflow.
31a513b to
99ac546
Compare
99ac546 to
0078f35
Compare
0078f35 to
34d13bd
Compare
34d13bd to
afe6311
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.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@package.json`:
- Line 2769: The pin to "esbuild": "^0.27.0" may be incompatible with our
build/runtime; verify and either pin to a known-compatible esbuild release or
update our build config and environment: check any esbuild invocations
(package.json "scripts" like "build" and any esbuild config files) and either
set an explicit esbuild target/runtime that provides Uint8Array.fromBase64 or
upgrade CI/engine/node versions to meet esbuild 0.27 OS/Node requirements;
update package.json to the chosen esbuild version and adjust engines or CI specs
accordingly, then run the build/test to confirm compatibility.
📜 Review details
Configuration used: Organization UI
Review profile: ASSERTIVE
Plan: Pro
Disabled knowledge base sources:
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
⛔ Files ignored due to path filters (2)
package-lock.jsonis excluded by!**/package-lock.jsonsrc/test/vscode-notebook-perf/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (2)
package.jsonsrc/test/vscode-notebook-perf/package.json
🔇 Additional comments (2)
src/test/vscode-notebook-perf/package.json (1)
33-33: LGTM.Keeps test tooling in sync with root package.json.
package.json (1)
2747-2749: Dev dependency bumps look reasonable.Patch-level updates for test-cli, test-web, cspell, and lint-staged. No concerns.
Also applies to: 2764-2764, 2800-2800
✏️ Tip: You can disable this entire section by setting review_details to false in your review settings.
c9244c6 to
9ac7c0e
Compare
9ac7c0e to
423e296
Compare
423e296 to
6438969
Compare
6438969 to
b7f969a
Compare
b7f969a to
14be61a
Compare
14be61a to
b7b7407
Compare
b7b7407 to
755b1f7
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.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@src/test/vscode-notebook-perf/package.json`:
- Line 33: The package.json currently lists "@vscode/test-cli" but the companion
UI extension ms-vscode.extension-test-runner v0.0.12 requires VS Code 1.88+ and
will break tests on 1.78; inspect package.json for the "@vscode/test-cli" entry
and any ms-vscode.extension-test-runner dependency (or test-runner usage in
CI/workflows), then either (a) pin or upgrade the extension to a version
compatible with the VS Code target used by this repo, (b) change the CI/workflow
VS Code version to an Insiders build that meets the extension requirement, or
(c) remove/switch to the CLI-only test approach if the UI extension is not
needed; update package.json and workflows accordingly and ensure tests run
locally/CI after the change.
♻️ Duplicate comments (1)
package.json (1)
2785-2785: Re-validate esbuild 0.27.0 build compatibility.esbuild 0.27.0 release notes breaking changes Node version requirements
| "@types/node": "^18.15.0", | ||
| "@types/vscode": "^1.78.0", | ||
| "@vscode/test-cli": "^0.0.8", | ||
| "@vscode/test-cli": "^0.0.12", |
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.
🧩 Analysis chain
🌐 Web query:
@vscode/test-cli 0.0.12 release notes VS Code 1.78 compatibility requirements
💡 Result:
- @vscode/test-cli
0.0.12release notes (published 2025-10-09): “Package version bumps” (no functional changes called out). [1] - VS Code 1.78 compatibility / requirements:
- The CLI package (
@vscode/test-cli) is a Node-based runner; it doesn’t require that your installed VS Code be a specific version, because it can download/launch the VS Code version you configure for testing. [1] - The companion VS Code UI extension (ms-vscode.extension-test-runner) is not compatible with VS Code 1.78—version
0.0.12of that extension lists Requires: VS Code 1.88.0-insider and up. [2]
- The CLI package (
Sources: [1] [2]
@vscode/test-cli 0.0.12 works with VS Code 1.78, but the companion UI extension doesn't.
The CLI package can download and test with any configured VS Code version. However, the companion extension (ms-vscode.extension-test-runner) v0.0.12 requires VS Code 1.88.0-insider+, so it won't work with VS Code 1.78. If this repo uses the UI extension for testing workflows, verify compatibility or update the extension requirement.
🤖 Prompt for AI Agents
In `@src/test/vscode-notebook-perf/package.json` at line 33, The package.json
currently lists "@vscode/test-cli" but the companion UI extension
ms-vscode.extension-test-runner v0.0.12 requires VS Code 1.88+ and will break
tests on 1.78; inspect package.json for the "@vscode/test-cli" entry and any
ms-vscode.extension-test-runner dependency (or test-runner usage in
CI/workflows), then either (a) pin or upgrade the extension to a version
compatible with the VS Code target used by this repo, (b) change the CI/workflow
VS Code version to an Insiders build that meets the extension requirement, or
(c) remove/switch to the CLI-only test approach if the UI extension is not
needed; update package.json and workflows accordingly and ensure tests run
locally/CI after the change.
This PR contains the following updates:
4.1.14→4.1.186.9.0→6.21.06.9.0→6.21.06.9.0→6.21.00.4.0→0.4.1^0.0.8→^0.0.122.3.9→2.5.2^0.0.71→^0.0.7810.4.21→10.4.232.8.1→2.8.24.0.6→4.1.04.3.10→4.5.07.1.1→7.1.22.1.0→2.1.19.2.1→9.6.01.22.3→1.24.10.10.63→0.10.64^0.25.1→^0.27.01.3.19→1.3.358.52.0→8.57.19.0.0→9.1.22.29.0→2.32.046.8.2→46.10.16.7.1→6.10.23.1.0→3.3.05.0.1→5.5.57.33.2→7.37.54.6.0→4.6.25.0.0→5.0.12.0.0→2.1.01.4.1→1.5.04.2.2→4.5.116.2.3→16.2.710.2.0→10.4.311.0.1→11.7.52.2.0→2.2.13.0.0→3.8.05.0.1→5.0.101.15.2→1.15.30.7.4→0.7.64.1.14→4.1.181.3.8→1.3.194.19.4→4.21.05.4.5→5.9.35.8.3→5.9.31.3.1→1.4.15.0.9→5.0.10Release Notes
tailwindlabs/tailwindcss (@tailwindcss/postcss)
v4.1.18Compare Source
Fixed
source(…)happens relative to the file it is in (#19274)!in the value (#19243)@tailwindcss/vite(#18970)--watch(#19373)ringColor.DEFAULT) in JS configs (#19348)contenttheme key from JS configs (#19381)futureandexperimentalconfig keys (#19344)text-*andleading-*classes (#19396)@keyframes(#19419)/dev/stdout(#19421)v4.1.17Compare Source
Fixed
@variantinside legacy JS APIs (#19263)v4.1.16Compare Source
Fixed
&(#19184)& > :pseudoand& :pseudoarbitrary variants (#19178)v4.1.15Compare Source
Fixed
color-mixfallback (#19069):deep,:slotted, and:global(#19094)not-*,has-*, andin-*(#19100)theme(…)function (#19111)\tis used in at-rules (#19130)0values (#19095)break-wordstowrap-break-word(#19157)Changed
postinstallscript from oxide ([#19149])(#19149)typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v6.21.0Compare Source
🚀 Features
export plugin metadata
allow
parserOptions.project: falseeslint-plugin: add rule prefer-find
🩹 Fixes
eslint-plugin: [no-unused-vars] don't report on types referenced in export assignment expression
eslint-plugin: [switch-exhaustiveness-check] better support for intersections, infinite types, non-union values
eslint-plugin: [consistent-type-imports] dont report on types used in export assignment expressions
eslint-plugin: [no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option
eslint-plugin: [class-literal-property-style] allow getter when same key setter exists
eslint-plugin: [no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before
askeyword❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.20.0Compare Source
🚀 Features
🩹 Fixes
eslint-plugin: [no-useless-template-literals] incorrect bigint autofix result
eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as non-nullable
eslint-plugin: [no-useless-template-literals] report Infinity & NaN
eslint-plugin: [prefer-readonly] disable checking accessors
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.19.1Compare Source
🩹 Fixes
type-utils: preventing isUnsafeAssignment infinite recursive calls
eslint-plugin: [no-unnecessary-condition] fix false positive for type variable
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.19.0Compare Source
🚀 Features
eslint-plugin: [prefer-promise-reject-errors] add rule
eslint-plugin: [no-array-delete] add new rule
eslint-plugin: [no-useless-template-literals] add fix suggestions
🩹 Fixes
eslint-plugin: [no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression
eslint-plugin: [no-unnecesary-type-assertion] treat unknown/any as nullable
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.18.1Compare Source
🩹 Fixes
eslint-plugin: [no-non-null-assertion] provide valid fix when member access is on next line
eslint-plugin: [no-unnecessary-condition] improve checking optional callee
eslint-plugin: [prefer-readonly] support modifiers of unions and intersections
eslint-plugin: [switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.18.0Compare Source
🚀 Features
typescript-estree: throw on invalid update expressions
eslint-plugin: [no-var-requires, no-require-imports] allow option
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.17.0Compare Source
Bug Fixes
patternsorpathsin options are empty (#8108) (675e987)Features
defaultcase on an already exhaustiveswitch(#7539) (6a219bd)You can read about our versioning strategy and releases on our website.
v6.16.0Compare Source
Bug Fixes
Features
You can read about our versioning strategy and releases on our website.
v6.15.0Compare Source
Features
You can read about our versioning strategy and releases on our website.
v6.14.0Compare Source
Bug Fixes
no-unsafe-unary-minus(#7998) (705370a)Features
You can read about our versioning strategy and releases on our website.
6.13.2 (2023-12-04)
Note: Version bump only for package @typescript-eslint/eslint-plugin
You can read about our versioning strategy and releases on our website.
6.13.1 (2023-11-28)
Note: Version bump only for package @typescript-eslint/eslint-plugin
You can read about our versioning strategy and releases on our website.
v6.13.2Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
You can read about our versioning strategy and releases on our website.
v6.13.1Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
You can read about our versioning strategy and releases on our website.
v6.13.0Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
You can read about our versioning strategy and releases on our website.
v6.12.0Compare Source
Bug Fixes
ignoreClassesThatImplementAnInterfaceis set (#7705) (155aa1f)Features
You can read about our versioning strategy and releases on our website.
v6.11.0Compare Source
Bug Fixes
allowTypedFunctionExpressions(#7553) (be2777c)Features
no-unsafe-unary-minusrule (#7390) (c4709c2)CodePathselector types (#7551) (99a026f)You can read about our versioning strategy and releases on our website.
v6.10.0Compare Source
Bug Fixes
Features
You can read about our versioning strategy and releases on our website.
6.9.1 (2023-10-30)
Bug Fixes
You can read about our versioning strategy and releases on our website.
v6.9.1Compare Source
Bug Fixes
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin-tslint)
v6.21.0Compare Source
🚀 Features
parserOptions.project: false(#8339)🩹 Fixes
JSXElementtype to theJSXAttribute['value'](#8285)askeyword (#8326)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.20.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.19.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.19.0Compare Source
🚀 Features
🩹 Fixes
usingas the variable keyword forfor..inloops (#7649)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.18.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.18.0Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v6.17.0[Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compa
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.