Skip to content

chore(deps): update all non-major dependencies - #160

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 19, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 18.19.10018.19.130 age confidence
debug 4.4.14.4.3 age confidence
rollup (source) 3.29.53.30.0 age confidence
semver 7.7.27.8.5 age confidence
typescript (source) 5.8.35.9.3 age confidence
webpack 5.99.85.111.1 age confidence

Release Notes

debug-js/debug (debug)

v4.4.3

Compare Source

Functionally identical release to 4.4.1.

Version 4.4.2 is compromised. Please see #​1005.

rollup/rollup (rollup)

v3.30.0

Compare Source

3.30.0

2026-02-22

Features
  • Throw when the generated bundle contains paths that would leave the output directory (#​6276)
Pull Requests
npm/node-semver (semver)

v7.8.5

Compare Source

Bug Fixes

v7.8.4

Compare Source

Bug Fixes

v7.8.3

Compare Source

Bug Fixes
Chores

v7.8.2

Compare Source

Bug Fixes

v7.8.1

Compare Source

Bug Fixes

v7.8.0

Compare Source

Features
Bug Fixes
Documentation
Chores

v7.7.4

Compare Source

Bug Fixes
Documentation
Dependencies
Chores

v7.7.3

Compare Source

Bug Fixes
Chores
microsoft/TypeScript (typescript)

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

webpack/webpack (webpack)

v5.111.1

Compare Source

Patch Changes

v5.111.0

Compare Source

Minor Changes
Patch Changes

v5.110.3

Compare Source

Patch Changes

v5.110.2

Compare Source

Patch Changes

v5.110.1

Compare Source

Patch Changes

v5.110.0

Compare Source

Minor Changes
  • Wrap concatenated modules in lazy __webpack_require__.cw accessors and inline require(), keeping a wrapped body's names and side effects intact. (by @​hai-x in #​21519)

  • Add performance hints reporting what a build costs: duplicate packages and modules, circular dependencies, broad contexts, large modules and chunks, hotspots, eval, missing PURE annotations, polyfills, redundant dynamic imports, OS-dependent rules, cache effectiveness, how chunks load, what splitting refused, why an optimization was skipped, and rules, defines, externals, aliases and barrel reexports nothing uses. An oversized asset names its largest modules, and an entrypoint carrying the runtime recommends optimization.runtimeChunk. Enable every check not set individually with performance.all, report hints in stats only with performance.hints: "stats", and get them in a stable order that leaves the build hashes unchanged. (by @​alexander-akait in #​21841)

  • Add the descriptionRelativePath module rule condition. (by @​alexander-akait in #​21705)

  • Add OS-independent glob matching to module rules. (by @​alexander-akait in #​21771)

  • Report inner-graph, AMD and bare module bailouts in optimizationBailout. (by @​alexander-akait in #​21740)

  • Allow marking externals as side-effect-free with a sideEffects flag. (by @​alexander-akait in #​21712)

  • Give externals the original request of a context module element. (by @​alexander-akait in #​21780)

  • Add the externalsPresets.nodeModules preset with an allowlist option to externalize installed packages, replacing the webpack-node-externals plugin. (by @​alexander-akait in #​21569)

  • Add output.library.umdAmdContainer for an AMD-style loader branch in UMD. (by @​hai-x in #​21770)

  • Resolve @custom-media values that are true / false or name another custom media. (by @​alexander-akait in #​21624)

  • Add the __webpack_css_server_styles__ module variable to read the CSS collected while rendering without a DOM, and keep that CSS in the order the styles were applied. (by @​alexander-akait in #​21576)

  • Patch the HTML <head> in place on hot update instead of forcing a full reload, including when a <script> that never executed is removed. (by @​alexander-akait in #​21624)

  • Scope counter names in CSS modules; fix the counter() counter-style and animation timeline keywords. (by @​alexander-akait in #​21600)

  • Derive import defer / import source from the target and fix the source phase. (by @​alexander-akait in #​21810)

  • Emit analyzable ESM urls for chunks, assets, styles, workers and wasm. (by @​alexander-akait in #​21788)

  • Tree shake CommonJS: module.exports object literals, exports destructured from a require() binding, unused method requires, and unused side-effect-free require() calls and reexports. (by @​alexander-akait in #​21841)

  • Resolve relative entry baseUri values and bake one side of a hash cycle. (by @​alexander-akait in #​21750)

  • Minify CSS further, only where the document is unchanged: shorthands and box longhands, font-weight, <position> and font-stretch keywords, colors (polar, Lab and hsl() converted to hex), numbers, times, zero units, calc() and every math function the spec names folded over constants, selector lists, An+B, keyframe selectors, media-feature ranges, unicode-range, transition layers, display, transforms, gradients, font families, identical repeated declarations, and rules an identical later one makes dead. Abilities are read off the target browsers, vendorPrefixes adds and drops vendor prefixes for them, and rewriteCustomProperties shortens custom property values. Minification never changes whether a declaration parses, and beautifying keeps every rule. (by @​alexander-akait in #​21841)

  • Safely minify CSS (with source maps) and HTML assets when optimization.minimize is enabled, unless a minimizer is already configured for them, making only transformations an engine cannot tell apart. Every rewrite is named as an option, so it can be switched off. (by @​alexander-akait in #​21841)

  • Minify HTML further where the parsed document is unchanged: drop redundant quotes, whitespace nothing renders, escapes text does not need, implied tags, optional end tags nothing prints behind, empty attributes and nested empty elements; fold enumerated values and casing; normalize each attribute against the element it is on; and rewrite style, token lists, srcset, sizes, URL, integer and boolean attributes, viewport content, inline <style> and a JSON <script> body through their own grammars. Adds the optimization.minimize.html options collapseWhitespace, mergeStyles, minifyConditionalComments, minifySrcdoc, preserveComments, removeEmptyAttributes, removeEmptyElements, removeImpliedTags, removeRedundantAttributes, sortAttributes and sortTokenLists, and keeps an end tag the parent, the next element or the adoption agency would otherwise restructure the tree over. (by @​alexander-akait in #​21841)

  • Suggest the closest name or a casing fix anywhere in a failed request. (by @​alexander-akait in #​21727)

  • Add aggregated shutdown hook to MultiCompiler. (by @​bjohansebas in #​21578)

  • Report which compilers changed on the MultiCompiler done hook. (by @​bjohansebas in #​21580)

  • Add [containedpath]/[containedfile] placeholders, used for [path]/[file] of asset and html modules with experiments.futureDefaults. (by @​alexander-akait in #​21592)

  • Support an object for an entry's html that overrides output.html per option. (by @​alexander-akait in #​21574)

  • Configure or exclude each asset type's minifier via optimization.minimize. (by @​alexander-akait in #​21663)

  • Support printing CSS and HTML beautified as well as minified. (by @​alexander-akait in #​21660)

  • Add renderEmbeddedSource, and minify what it offers out of the box. (by @​alexander-akait in #​21830)

  • Report bindings named eval, arguments or reserved words in ES module output. (by @​alexander-akait in #​21567)

  • Emit no development source map for module libraries, or any with futureDefaults. (by @​alexander-akait in #​21839)

  • Speed up builds and cut memory: faster CSS, HTML and JavaScript parsing and minification, a built-in scope analyzer replacing eslint-scope, faster dependency hot paths, module diagnostics, CommonJS export scanning and concatenated module renaming, runtime modules, parsers, generators and dependencies loaded only when used, one file watcher pool shared between MultiCompiler children, and lower parser, graph and startup memory. (by @​alexander-akait in #​21841)

  • Improve tree-shaking for a namespace reexported as default, and fix import d from "./mod"; d.member reading undefined in that case. (by @​alexander-akait in #​21841)

  • Warn on cross-kind CSS module export conflicts and let the class win. (by @​alexander-akait in #​21538)

  • Add output.resourceHints.dedupe to skip prefetch links for already preloaded/prefetched chunks. (by @​alexander-akait in #​21386)

Patch Changes
  • Let a memory-cache etag mismatch fall through to the file cache instead of reporting a miss. (by @​alexander-akait in #​21624)

  • Determine provided exports in dependency order, so a build's module hashes no longer depend on what the persistent cache held. (by @​alexander-akait in #​21630)

  • Emit no dead module and no failing require for an asset-url external. (by @​alexander-akait in #​21713)

  • Fix names, hidden devtools and cache reuse for CSS maps inlined into JS. (by @​alexander-akait in #​21558)

  • Follow the HTML spec more closely when parsing and printing: frameset content, quirks paragraphs and selects, <![CDATA[ outside foreig

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label May 19, 2025
@bolt-new-by-stackblitz

Copy link
Copy Markdown

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from f0332be to 6807969 Compare May 20, 2025 12:58
@renovate renovate Bot changed the title chore(deps): update dependency @types/node to v18.19.101 chore(deps): update all non-major dependencies May 20, 2025
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 0ce7a7d to 99eff70 Compare May 27, 2025 20:34
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0c91e72 to 87674c8 Compare June 4, 2025 06:31
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 87674c8 to 5342022 Compare June 6, 2025 21:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c2bed05 to 031005b Compare June 22, 2025 15:24
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f125b7f to d4f3375 Compare July 1, 2025 23:14
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 76264cf to ce537ab Compare July 15, 2025 16:26
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from ce537ab to 325507d Compare July 19, 2025 02:02
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ca2006c to 7690ec0 Compare July 31, 2025 23:56
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 7690ec0 to 1ae0d93 Compare August 8, 2025 17:44
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 70d1efc to 0ca749b Compare October 1, 2025 02:35
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4a2b442 to 51f0a8d Compare October 9, 2025 18:30
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 51f0a8d to 2838c46 Compare October 21, 2025 20:46
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 2838c46 to 55148a1 Compare November 10, 2025 18:14
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 55148a1 to bf4c01e Compare November 18, 2025 22:47
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from bf4c01e to 4121d17 Compare December 3, 2025 17:12
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f15e3bc to dd67bf3 Compare December 18, 2025 13:54
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from dd67bf3 to 89091c4 Compare December 31, 2025 15:41
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 89091c4 to 0419262 Compare January 8, 2026 16:27
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 44f8866 to 45b8e1d Compare January 23, 2026 16:47
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b0c1a62 to 65e4673 Compare February 5, 2026 19:09
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 8ad6d62 to 6978f11 Compare February 12, 2026 17:42
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 900dc7a to 613989f Compare February 22, 2026 16:38
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0077fc1 to d6b1dcc Compare March 3, 2026 18:43
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from d6b1dcc to 4872c8b Compare March 5, 2026 20:02
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 4872c8b to 643d764 Compare March 13, 2026 18:14
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 643d764 to 8cd4b7d Compare March 27, 2026 13:29
@socket-security

socket-security Bot commented Mar 27, 2026

Copy link
Copy Markdown

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 8cd4b7d to 4468ee0 Compare March 27, 2026 18:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants