Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2024

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
webpack 5.94.0 -> 5.102.0 age confidence

Release Notes

webpack/webpack (webpack)

v5.102.0

Compare Source

Features
  • Added static analyze for dynamic imports
  • Added support for import file from "./file.ext" with { type: "bytes" } to get the content as Uint8Array (look at example)
  • Added support for import file from "./file.ext" with { type: "text" } to get the content as text (look at example)
  • Added the snapshot.contextModule to configure snapshots options for context modules
  • Added the extractSourceMap option to implement the capabilities of loading source maps by comment, you don't need source-map-loader (look at example)
  • The topLevelAwait experiment is now stable (you can remove experiments.topLevelAwait from your webpack.config.js)
  • The layers experiment is now stable (you can remove experiments.layers from your webpack.config.js)
  • Added function matcher support in rule options
Fixes
  • Fixed conflicts caused by multiple concatenate modules
  • Ignore import failure during HMR update with ES modules output
  • Keep render module order consistent
  • Prevent inlining modules that have this exports
  • Removed unused timeout attribute of script tag
  • Supported UMD chunk format to work in web workers
  • Improved CommonJs bundle to ES module library
  • Use es-lexer for mjs files for build dependencies
  • Fixed support __non_webpack_require__ for ES modules
  • Properly handle external modules for CSS
  • AssetsByChunkName included assets from chunk.auxiliaryFiles
  • Use createRequire only when output is ES module and target is node
  • Typescript types
Performance Improvements
  • Avoid extra calls for snapshot
  • A avoid extra jobs for build dependencies
  • Move import attributes to own dependencies

v5.101.3

Compare Source

v5.101.2

Compare Source

Fixes
  • Fixed syntax error when comment is on the last line
  • Handle var declaration for createRequire
  • Distinguish free variable and tagged variable

v5.101.1

Compare Source

Fixes
  • Filter deleted assets in processAdditionalAssets hook
  • HMR failure in defer module
  • Emit assets even if invalidation occurs again
  • Export types for serialization and deserialization in plugins and export the ModuleFactory class
  • Fixed the failure export of internal function for ES module chunk format
  • Fixed GetChunkFilename failure caused by dependOn entry
  • Fixed the import of missing dependency chunks
  • Fixed when entry chunk depends on the runtime chunk hash
  • Fixed module.exports bundle to ESM library
  • Adjusted the time of adding a group depending on the fragment of execution time
  • Fixed circle dependencies when require RawModule and condition of isDeferred
  • Tree-shakable module library should align preconditions of allowInlineStartup

v5.101.0

Compare Source

Fixes
  • Fixed concatenate optimization for ESM that caused undefined export
  • Respect the output.environment.nodePrefixForCoreModules option everywhere
  • Respect the output.importMetaName option everywhere
  • Fixed await async dependencies when accepting them during HMR
  • Better typescript types
Features
  • Added colors helpers for CLI
  • Enable tree-shaking for ESM external modules with named imports
  • Added the deferImport option to parser options
Performance Improvements
  • Fixed a regression in module concatenation after implementing deferred import support
  • Fixed a potential performance issue in CleanPlugin
  • Avoid extra require in some places

v5.100.2

Compare Source

v5.100.1

Compare Source

v5.100.0

Compare Source

Fixes
  • Fixed the case where an ES modules entry chunk depends on the runtime chunk hash
  • Handle function exports in webpack module wrapper
  • Ensure dependent chunks are imported before startup & fix duplicate export of 'default'
  • Generate lose closing brace when exports are unprovided
  • CleanPlugin doesn't unlink same file twice
  • Fixed unexpected error codes from fs.unlink on Windows
  • Typescript types
Features
  • HMR support for ES modules output
  • ES module output mode now fully supports splitChunks when external variables and runtimeChunk are not set.
  • Added support using keyword
  • Implemented tc39 Defer Module Evaluation (experiment)
  • Support dynamic template literals expressions for new URL(...)
  • Enable ES modules worker chunk loading for Node.js targets
  • Improved support for destructing in DefinePlugin
  • Added VirtualUrlPlugin to support virtual: modules
Performance Improvements
  • Remove useless startup entrypoint runtime for ES modules output
  • Cache new URL(...) evaluate expression

v5.99.9

Compare Source

Fixes
  • HMR might fail if there are new initial chunks
  • Destructuring namespace import with default
  • Destructuring namespace import with computed-property
  • Generate valid code for es export generation for multiple module entries
  • Fixed public path issue for ES modules
  • Asset modules work when lazy compilation used
  • Eliminate unused statements in certain scenarios
  • Fixed regression with location and order of dependencies
  • Fixed typescript types

v5.99.8

Compare Source

Fixes
  • Fixed type error with latest @types/node
  • Fixed typescript types

v5.99.7

Compare Source

Fixes
  • Don't skip export generation for default reexport (#​19463)
  • Fixed module library export generation for reexport (#​19459)
  • Avoid module concatenation in child compilation for module library (#​19457)
  • Ensure HMR recover gracefully when CSS module with error
  • Respect cause of any errors and errors of AggregateError in stats output
  • Added missing @types/json-schema in types

v5.99.6

Compare Source

Fixes
  • Respect public path for ES modules
  • Fixed generation of module for module library when mixing commonjs and esm modules
  • Always apply FlagDependencyExportsPlugin for libraries where it required
  • Faster logic for dead control flow
  • Typescript types

v5.99.5

Compare Source

Fixes
  • Control dead flow for labeled and blockless statements

v5.99.4

Compare Source

Fixes
  • Fixed terminated state for if/else

v5.99.3

Compare Source

Fixes
  • Fixed dead control flow with deep nested if/else

v5.99.2

Compare Source

Fixes
  • Dead control flow for exotic cases

v5.99.1

Compare Source

Fixes
  • Dead control flow for many cases

v5.99.0

Compare Source

Fixes
  • Fixed a lot of types
  • Fixed runtime error when using asset module as entrypoint and runtimeChunk
  • JSON generator now preserves __proto__ property
  • Fixed when entry module isn't executed when targeting webworker with a runtime chunk
  • Do not duplicate modules with import attributes and reexport
  • The module and module ESM libraries have been union and code generation has been improved
  • Use a valid output path for errored asset modules
  • Remove BOM from JavaScript and CSS files when loader was not used
  • Create export for externals for module/modern-module library
  • Export unprovided variables for commonjs-static library
  • Forward semicolons from meta.webpackAST
  • Use xxhash64 for cache.hashAlgorithm when experiments.futureDefaults enabled
  • [CSS] Fixed profiling plugin for CSS
  • [CSS] Avoid extra module.export output for CSS module
Features
  • Add dead control flow check
  • Handle new Worker(import.meta.url) and new Worker(new URL(import.meta.url)) syntax
  • Added ability to generate custom error content for generators
Performance Improvements
  • Fixed excessive calls of getAllReferences
  • Optimize loc for monomorphic inline caching
Chores
  • Switch on strict types for typescript

v5.98.0

Compare Source

Fixes
Performance Improvements
Chores
Features
Continuous Integration
New Contributors

Full Changelog: webpack/webpack@v5.97.1...v5.98.0

v5.97.1

Compare Source

Bug Fixes

  • Performance regression
  • Sub define key should't be renamed when it's a defined variable

v5.97.0

Compare Source

Bug Fixes

  • Don't crash with filesystem cache and unknown scheme
  • Generate a valid code when output.iife is true and output.library.type is umd
  • Fixed conflict variable name with concatenate modules and runtime code
  • Merge duplicate chunks before
  • Collisions in ESM library
  • Use recursive search for versions of shared dependencies
  • [WASM] Don't crash WebAssembly with Reference Types (sync and async)
  • [WASM] Fixed wasm loading for sync and async webassembly
  • [CSS] Don't add [uniqueName] to localIdentName when it is empty
  • [CSS] Parsing strings on Windows
  • [CSS] Fixed CSS local escaping

New Features

  • Added support for injecting debug IDs
  • Export the MergeDuplicateChunks plugin
  • Added universal loading for JS chunks and JS worker chunks (only ES modules)
  • [WASM] Added universal loading for WebAssembly chunks (only for async WebAssembly)
  • [CSS] Allow initial CSS chunks to be placed anywhere - the output.cssHeadDataCompression option was deleted
  • [CSS] Added universal loading for CSS chunks
  • [CSS] Parse ICSS @value at-rules in CSS modules
  • [CSS] Parse ICSS :import rules in CSS modules
  • [CSS] Added the url and import options for CSS
  • [CSS] Allow to import custom properties in CSS modules

Performance

  • Faster Queue implementation, also fixed queue iterator state in dequeue method to ensure correct behavior after item removal

v5.96.1

Compare Source

Bug Fixes

  • [Types] Add @types/eslint-scope to dependencieS
  • [Types] Fixed regression in validate

v5.96.0

Compare Source

Bug Fixes

  • Fixed Module Federation should track all referenced chunks
  • Handle Data URI without base64 word
  • HotUpdateChunk have correct runtime when modified with new runtime
  • Order of chunks ids in generated chunk code
  • No extra Javascript chunks when using asset module as an entrypoint
  • Use optimistically logic for output.environment.dynamicImport to determine chunk format when no browserslist or target
  • Collision with global variables for optimization.avoidEntryIife
  • Avoid through variables in inlined module
  • Allow chunk template strings in output.devtoolNamespace
  • No extra runtime for get javascript/css chunk filename
  • No extra runtime for prefetch and preload in JS runtime when it was unsed in CSS
  • Avoid cache invalidation using ProgressPlugin
  • Increase parallelism when using importModule on the execution stage
  • Correctly parsing string in export and import
  • Typescript types
  • [CSS] css/auto considers a module depending on its filename as css (pure CSS) or css/local, before it was css/global and css/local
  • [CSS] Always interpolate classes even if they are not involved in export
  • [CSS] No extra runtime in Javascript runtime chunks for asset modules used in CSS
  • [CSS] No extra runtime in Javascript runtime chunks for external asset modules used in CSS
  • [CSS] No extra runtime for the node target
  • [CSS] Fixed url()s and @import parsing
  • [CSS] Fixed - emit a warning on broken :local and :global

New Features

  • Export CSS and ESM runtime modules
  • Single Runtime Chunk and Federation eager module hoisting
  • [CSS] Support /* webpackIgnore: true */ for CSS files
  • [CSS] Support src() support
  • [CSS] CSS nesting in CSS modules

v5.95.0

Compare Source

Bug Fixes

  • Fixed hanging when attempting to read a symlink-like file that it can't read
  • Handle default for import context element dependency
  • Merge duplicate chunks call after split chunks
  • Generate correctly code for dynamically importing the same file twice and destructuring
  • Use content hash as [base] and [name] for extracted DataURI's
  • Distinguish module and import in module-import for externals import's
  • [Types] Make EnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility

New Features

  • Add new optimization.avoidEntryIife option (true by default for the production mode)
  • Pass output.hash* options to loader context

Performance

  • Avoid unneeded re-visit in build chunk graph

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 changed the title chore(deps): update dependency webpack to v5.97.1 chore(deps): update dependency webpack to v5.98.0 Feb 13, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 962321e to 4b4ace7 Compare February 13, 2025 19:14
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 4b4ace7 to 4d29a2c Compare April 7, 2025 16:45
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.98.0 chore(deps): update dependency webpack to v5.99.0 Apr 7, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 4d29a2c to 104973b Compare April 8, 2025 01:48
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.0 chore(deps): update dependency webpack to v5.99.1 Apr 8, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 104973b to 9ca78cc Compare April 8, 2025 12:19
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.1 chore(deps): update dependency webpack to v5.99.2 Apr 8, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 9ca78cc to ba4a282 Compare April 8, 2025 16:59
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.2 chore(deps): update dependency webpack to v5.99.3 Apr 8, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from ba4a282 to 745ef37 Compare April 8, 2025 21:47
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.3 chore(deps): update dependency webpack to v5.99.4 Apr 8, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 745ef37 to facaa46 Compare April 9, 2025 03:01
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.4 chore(deps): update dependency webpack to v5.99.5 Apr 9, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from facaa46 to 837c8c8 Compare April 18, 2025 14:15
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.5 chore(deps): update dependency webpack to v5.99.6 Apr 18, 2025
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.6 chore(deps): update dependency webpack to v5.99.7 Apr 25, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 837c8c8 to 7548361 Compare April 25, 2025 13:14
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 7548361 to 2e754a5 Compare May 6, 2025 20:40
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.7 chore(deps): update dependency webpack to v5.99.8 May 6, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 2e754a5 to 48075f4 Compare May 20, 2025 13:22
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.8 chore(deps): update dependency webpack to v5.99.9 May 20, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 48075f4 to 154f6c7 Compare July 9, 2025 11:49
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.99.9 chore(deps): update dependency webpack to v5.100.0 Jul 9, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 154f6c7 to 13eb06c Compare July 11, 2025 12:35
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.100.0 chore(deps): update dependency webpack to v5.100.1 Jul 11, 2025
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.100.1 chore(deps): update dependency webpack to v5.100.2 Jul 15, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 13eb06c to 7b155df Compare July 15, 2025 17:29
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 7b155df to 2c01fd9 Compare August 3, 2025 20:09
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.100.2 chore(deps): update dependency webpack to v5.101.0 Aug 3, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch 2 times, most recently from 33052e2 to d20b6e9 Compare August 12, 2025 15:05
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.101.0 chore(deps): update dependency webpack to v5.101.1 Aug 12, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from d20b6e9 to e463298 Compare August 14, 2025 18:28
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.101.1 chore(deps): update dependency webpack to v5.101.2 Aug 14, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from e463298 to ac95136 Compare August 18, 2025 15:38
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.101.2 chore(deps): update dependency webpack to v5.101.3 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from ac95136 to 5108779 Compare August 19, 2025 14:06
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from 5108779 to b6d1a3e Compare August 31, 2025 11:03
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from b6d1a3e to e934856 Compare September 25, 2025 18:14
@renovate renovate bot force-pushed the renovate/webpack-5.x branch from e934856 to dc1bded Compare September 29, 2025 22:41
@renovate renovate bot changed the title chore(deps): update dependency webpack to v5.101.3 chore(deps): update dependency webpack to v5.102.0 Sep 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants