Bump the npm-minor group with 4 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 1
(3 months ago)
(3 months ago)
size/XS
Bumps the npm-minor group with 4 updates: @typescript-eslint/eslint-plugin, @typescript-eslint/parser, esbuild and sinon.
Updates @typescript-eslint/eslint-plugin from 8.49.0 to 8.50.0
Release notes
Sourced from @typescript-eslint/eslint-plugin's releases.
v8.50.0
8.50.0 (2025-12-15)
🚀 Features
- eslint-plugin: [no-useless-default-assignment] add rule (#11720)
❤️ Thank You
- Josh Goldberg ✨
- Ulrich Stark
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from @typescript-eslint/eslint-plugin's changelog.
8.50.0 (2025-12-15)
🚀 Features
- eslint-plugin: [no-useless-default-assignment] add rule (#11720)
❤️ Thank You
- Josh Goldberg ✨
- Ulrich Stark
You can read about our versioning strategy and releases on our website.
Commits
c62e858chore(release): publish 8.50.01301f79feat(eslint-plugin): [no-useless-default-assignment] add rule (#11720)- See full diff in compare view
Updates @typescript-eslint/parser from 8.49.0 to 8.50.0
Release notes
Sourced from @typescript-eslint/parser's releases.
v8.50.0
8.50.0 (2025-12-15)
🚀 Features
- eslint-plugin: [no-useless-default-assignment] add rule (#11720)
❤️ Thank You
- Josh Goldberg ✨
- Ulrich Stark
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from @typescript-eslint/parser's changelog.
8.50.0 (2025-12-15)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
Commits
c62e858chore(release): publish 8.50.0- See full diff in compare view
Updates esbuild from 0.27.1 to 0.27.2
Release notes
Sourced from esbuild's releases.
v0.27.2
Allow import path specifiers starting with
#/(#4361)Previously the specification for
package.jsondisallowed import path specifiers starting with#/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/*to./src/*(previously you had to use another character such as#_*instead, which was more confusing). There is some more context in nodejs/node#49182.This change was contributed by
@hybrist.Automatically add the
-webkit-maskprefix (#4357, #4358)This release automatically adds the
-webkit-vendor prefix for themaskCSS shorthand property:/* Original code */ main { mask: url(x.png) center/5rem no-repeat }/* Old output (with --target=chrome110) */
main {
mask: url(x.png) center/5rem no-repeat;
}/* New output (with --target=chrome110) */
main {
-webkit-mask: url(x.png) center/5rem no-repeat;
mask: url(x.png) center/5rem no-repeat;
}
This change was contributed by
@BPJEnnova.Additional minification of
switchstatements (#4176, #4359)This release contains additional minification patterns for reducing
switchstatements. Here is an example:// Original code switch (x) { case 0: foo() break case 1: default: bar() }// Old output (with --minify)
switch(x){case 0:foo();break;case 1:default:bar()}// New output (with --minify)
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.27.2
Allow import path specifiers starting with
#/(#4361)Previously the specification for
package.jsondisallowed import path specifiers starting with#/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/*to./src/*(previously you had to use another character such as#_*instead, which was more confusing). There is some more context in nodejs/node#49182.This change was contributed by
@hybrist.Automatically add the
-webkit-maskprefix (#4357, #4358)This release automatically adds the
-webkit-vendor prefix for themaskCSS shorthand property:/* Original code */ main { mask: url(x.png) center/5rem no-repeat }/* Old output (with --target=chrome110) */
main {
mask: url(x.png) center/5rem no-repeat;
}/* New output (with --target=chrome110) */
main {
-webkit-mask: url(x.png) center/5rem no-repeat;
mask: url(x.png) center/5rem no-repeat;
}
This change was contributed by
@BPJEnnova.Additional minification of
switchstatements (#4176, #4359)This release contains additional minification patterns for reducing
switchstatements. Here is an example:// Original code switch (x) { case 0: foo() break case 1: default: bar() }// Old output (with --minify)
switch(x){case 0:foo();break;case 1:default:bar()}
... (truncated)
Commits
cd83297publish 0.27.2 to npm2759721additional tests forswitchwithbreakfd2b4b3update release notesc8d93a7fix #4357: -webkit- prefix for mask shorthand (#4358)92ff12ccompat table: update@types/nodea35ecebcompat table: fix a type error with the new typesf598984fixmake compat-tableto install dependenciesf7f6df0release notes for #43616f8ec15fix: allow subpath imports that start with#/(#4361)f7ae61fminify some switch statements to if-else statement- Additional commits viewable in compare view
Updates sinon from 21.0.0 to 21.0.1
Changelog
Sourced from sinon's changelog.
21.0.1
456a65c2Update dependencies - except@sinonjs/samsam(#2669) (Carl-Erik Kopseng)f04f3eb1Fix issue 2618 - Remove browserify in favor of esbuild (#2661) (Artur Parkhisenko)48b69df2fix(docs): removeassert.failExceptionfrom documentation (#2666) (Steffen Schroeder)13b27cccFix sandbox restore not handling stubbed functions (#2667) (thamion)ae9e09acUpdate compatibility target to ES2023 (Carl-Erik Kopseng)Updated compatibility target from ES2017 to ES2023 and clarified the note on breaking changes.
26055043Improve error message for immutable descriptors (#2664) (Stuart Dotson)80fa9a5bAlso mirror the calledOnceWith assertion (#2660) (Benedikt Meurer)Released by Carl-Erik Kopseng on 2025-12-19.
Commits
a8bebe021.0.1456a65cUpdate dependencies - except@sinonjs/samsam(#2669)f04f3ebFix issue 2618 - Remove browserify in favor of esbuild (#2661)48b69dffix(docs): removeassert.failExceptionfrom documentation (#2666)13b27ccFix sandbox restore not handling stubbed functions (#2667)ae9e09aUpdate compatibility target to ES20232605504Improve error message for immutable descriptors (#2664)6d48f12Update text to emphasise that the target is moving3d852aeRemember to quit on first error43c88c9Add some output- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Package Dependencies
@typescript-eslint/parser
npm
8.49.0 → 8.50.0
Minor
@typescript-eslint/eslint-plugin
npm
8.49.0 → 8.50.0
Minor
Technical Details
| ID: | 12205683 |
| UUID: | 3754506451 |
| Node ID: | PR_kwDOD3bUds66Lg0L |
| Host: | GitHub |
| Repository: | github/codeql-action |