Bump the npm-minor group with 5 updates
Bumps the npm-minor group with 5 updates:
| Package | From | To |
|---|---|---|
| node-forge | 1.3.2 |
1.3.3 |
| @typescript-eslint/eslint-plugin | 8.48.0 |
8.48.1 |
| @typescript-eslint/parser | 8.48.0 |
8.48.1 |
| esbuild | 0.27.0 |
0.27.1 |
| eslint-plugin-jsdoc | 61.4.1 |
61.5.0 |
Updates node-forge from 1.3.2 to 1.3.3
Changelog
Sourced from node-forge's changelog.
1.3.3 - 2025-12-02
Fixed
- [pkcs12] Make digestAlgorithm parameters optional to fix PKCS#12/PFX issues introduced in 1.3.2.
Commits
Updates @typescript-eslint/eslint-plugin from 8.48.0 to 8.48.1
Release notes
Sourced from @typescript-eslint/eslint-plugin's releases.
v8.48.1
8.48.1 (2025-12-02)
⏪ Reverts
- eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)
🩹 Fixes
- eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
- eslint-plugin: honor ignored base types on generic classes (#11767)
- eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)
❤️ Thank You
- Josh Goldberg
- OleksandraKordonets
- SangheeSon
@Higangssh- tao
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from @typescript-eslint/eslint-plugin's changelog.
8.48.1 (2025-12-02)
🩹 Fixes
- eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)
- eslint-plugin: honor ignored base types on generic classes (#11767)
- eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
❤️ Thank You
- Josh Goldberg
- OleksandraKordonets
- SangheeSon
@Higangssh- tao
You can read about our versioning strategy and releases on our website.
Commits
8fe3445chore(release): publish 8.48.15ac66a6fix(eslint-plugin): revert "[no-redundant-type-constituents] use assignabilit...906cc3cfix(eslint-plugin): [restrict-template-expressions] check base types in allow...16cf0f7test(eslint-plugin): [consistent-type-exports] add more shadowed imports test...0db02acfix(eslint-plugin): honor ignored base types on generic classes (#11767)bb9ba53fix(eslint-plugin): [consistent-type-exports] check value flag before resolvi...- See full diff in compare view
Updates @typescript-eslint/parser from 8.48.0 to 8.48.1
Release notes
Sourced from @typescript-eslint/parser's releases.
v8.48.1
8.48.1 (2025-12-02)
⏪ Reverts
- eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)
🩹 Fixes
- eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
- eslint-plugin: honor ignored base types on generic classes (#11767)
- eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)
❤️ Thank You
- Josh Goldberg
- OleksandraKordonets
- SangheeSon
@Higangssh- tao
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from @typescript-eslint/parser's changelog.
8.48.1 (2025-12-02)
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
8fe3445chore(release): publish 8.48.1- See full diff in compare view
Updates esbuild from 0.27.0 to 0.27.1
Release notes
Sourced from esbuild's releases.
v0.27.1
Fix bundler bug with
varnested insideif(#4348)This release fixes a bug with the bundler that happens when importing an ES module using
require(which causes it to be wrapped) and there's a top-levelvarinside anifstatement without being wrapped in a{ ... }block (and a few other conditions). The bundling transform needed to hoist thesevardeclarations outside of the lazy ES module wrapper for correctness. See the issue for details.Fix minifier bug with
forinsidetryinside label (#4351)This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the
trystatement to address a problem with transforming labeledfor awaitloops to avoid theawait(the transformation involves converting thefor awaitloop into aforloop and wrapping it in atrystatement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply toforloops that esbuild itself generates internally as part of thefor awaittransform. Here is an example of some affected code:// Original code d: { e: { try { while (1) { break d } } catch { break e; } } }// Old output (with --minify)
a:try{e:for(;;)break a}catch{break e}// New output (with --minify)
a:e:try{for(;;)break a}catch{break e}
Inline IIFEs containing a single expression (#4354)
Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single
returnstatement. Now it should also work if the body contains a single expression statement instead:// Original code const foo = () => { const cb = () => { console.log(x()) } return cb() }// Old output (with --minify)
const foo=()=>(()=>{console.log(x())})();// New output (with --minify)
const foo=()=>{console.log(x())};
The minifier now strips empty
finallyclauses (#4353)This improvement means that
finallyclauses containing dead code can potentially cause the associatedtrystatement to be removed from the output entirely in minified builds:
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.27.1
Fix bundler bug with
varnested insideif(#4348)This release fixes a bug with the bundler that happens when importing an ES module using
require(which causes it to be wrapped) and there's a top-levelvarinside anifstatement without being wrapped in a{ ... }block (and a few other conditions). The bundling transform needed to hoist thesevardeclarations outside of the lazy ES module wrapper for correctness. See the issue for details.Fix minifier bug with
forinsidetryinside label (#4351)This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the
trystatement to address a problem with transforming labeledfor awaitloops to avoid theawait(the transformation involves converting thefor awaitloop into aforloop and wrapping it in atrystatement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply toforloops that esbuild itself generates internally as part of thefor awaittransform. Here is an example of some affected code:// Original code d: { e: { try { while (1) { break d } } catch { break e; } } }// Old output (with --minify)
a:try{e:for(;;)break a}catch{break e}// New output (with --minify)
a:e:try{for(;;)break a}catch{break e}
Inline IIFEs containing a single expression (#4354)
Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single
returnstatement. Now it should also work if the body contains a single expression statement instead:// Original code const foo = () => { const cb = () => { console.log(x()) } return cb() }// Old output (with --minify)
const foo=()=>(()=>{console.log(x())})();// New output (with --minify)
const foo=()=>{console.log(x())};
The minifier now strips empty
finallyclauses (#4353)This improvement means that
finallyclauses containing dead code can potentially cause the associatedtrystatement to be removed from the output entirely in minified builds:
... (truncated)
Commits
5e0e56dpublish 0.27.1 to npm5a89732fix #4354: improve IIFE inlining for expressionsb940218minify: move unused expr simplification laterc46d498fix #4353: remove emptytry/finallyclauses7a72735fix #4348: bundler bug withvarinsideif4e4e177fix #4351: label +try+forminifier bugd6427c9fix: deno release url wrong comment (#4326)48e3e19callingSymbol.forwith a primitive never throws4ff88d0updatedecorator-tests.jssnapshot1877e60callingSymbolwith a primitive will never throw- See full diff in compare view
Updates eslint-plugin-jsdoc from 61.4.1 to 61.5.0
Release notes
Sourced from eslint-plugin-jsdoc's releases.
v61.5.0
61.5.0 (2025-12-07)
Features
check-tag-names,require-template,check-template-names: maketypeParama non-preferred alias fortemplate(3cd7cbd)v61.4.2
61.4.2 (2025-12-06)
Bug Fixes
require-rejects: reflect proper tag name in error message (44b2631)
Commits
3cd7cbdfeat(check-tag-names,require-template,check-template-names): make `ty...44b2631fix(require-rejects): reflect proper tag name in error message- See full diff 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
Pushed a commit to rebuild the Action. Please mark the PR as ready for review to trigger PR checks.