chore(deps): update dependency webpack to v5.102.0 #110

Merged
realaravinth merged 1 commit from renovate/webpack-5.x-lockfile into master 2025-10-02 13:28:34 +05:30
Member

This PR contains the following updates:

Package Change Age Confidence
webpack 5.98.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

Fixes
  • Fixed resolve execution order issue from extra await in async modules
  • Avoid empty block for unused statement
  • Collect only specific expressions for destructuring assignment

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

Fixes
  • Keep consistent CSS order
  • Dependency without the source order attribute must keep their original index
  • Keep module traversal consistent across reexport scenarios
Performance Improvements
  • Extend importPhasesPlugin only when enable deferImport (#​19689)

v5.100.1

Compare Source

Fixes
  • Tree-shaking unused ignored modules
  • [Types] Compatibility with old Node.js versions

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: scheme
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

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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [webpack](https://github.com/webpack/webpack) | [`5.98.0` -> `5.102.0`](https://renovatebot.com/diffs/npm/webpack/5.98.0/5.102.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/webpack/5.102.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/webpack/5.98.0/5.102.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>webpack/webpack (webpack)</summary> ### [`v5.102.0`](https://github.com/webpack/webpack/releases/tag/v5.102.0) [Compare Source](https://github.com/webpack/webpack/compare/v5.101.3...v5.102.0) ##### 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](https://github.com/webpack/webpack/tree/main/examples/asset)) - Added support for `import file from "./file.ext" with { type: "text" }` to get the content as text (look at [example](https://github.com/webpack/webpack/tree/main/examples/asset)) - 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](https://github.com/webpack/webpack/tree/main/examples/source-mapping-url)) - 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`](https://github.com/webpack/webpack/releases/tag/v5.101.3) [Compare Source](https://github.com/webpack/webpack/compare/v5.101.2...v5.101.3) ##### Fixes - Fixed resolve execution order issue from extra await in async modules - Avoid empty block for unused statement - Collect only specific expressions for destructuring assignment ### [`v5.101.2`](https://github.com/webpack/webpack/releases/tag/v5.101.2) [Compare Source](https://github.com/webpack/webpack/compare/v5.101.1...v5.101.2) ##### 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`](https://github.com/webpack/webpack/releases/tag/v5.101.1) [Compare Source](https://github.com/webpack/webpack/compare/v5.101.0...v5.101.1) ##### 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`](https://github.com/webpack/webpack/releases/tag/v5.101.0) [Compare Source](https://github.com/webpack/webpack/compare/v5.100.2...v5.101.0) ##### 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`](https://github.com/webpack/webpack/releases/tag/v5.100.2) [Compare Source](https://github.com/webpack/webpack/compare/v5.100.1...v5.100.2) ##### Fixes - Keep consistent CSS order - Dependency without the source order attribute must keep their original index - Keep module traversal consistent across reexport scenarios ##### Performance Improvements - Extend `importPhasesPlugin` only when enable `deferImport` ([#&#8203;19689](https://github.com/webpack/webpack/issues/19689)) ### [`v5.100.1`](https://github.com/webpack/webpack/releases/tag/v5.100.1) [Compare Source](https://github.com/webpack/webpack/compare/v5.100.0...v5.100.1) ##### Fixes - Tree-shaking unused ignored modules - \[Types] Compatibility with old Node.js versions ### [`v5.100.0`](https://github.com/webpack/webpack/releases/tag/v5.100.0) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.9...v5.100.0) ##### 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](https://github.com/tc39/proposal-defer-import-eval) (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](https://github.com/webpack/webpack/tree/main/examples/virtual-modules) to support `virtual:` scheme ##### Performance Improvements - Remove useless startup entrypoint runtime for ES modules output - Cache `new URL(...)` evaluate expression ### [`v5.99.9`](https://github.com/webpack/webpack/releases/tag/v5.99.9) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.8...v5.99.9) ##### 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`](https://github.com/webpack/webpack/releases/tag/v5.99.8) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.7...v5.99.8) ##### Fixes - Fixed type error with latest `@types/node` - Fixed typescript types ### [`v5.99.7`](https://github.com/webpack/webpack/releases/tag/v5.99.7) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.6...v5.99.7) ##### Fixes - Don't skip export generation for `default` reexport ([#&#8203;19463](https://github.com/webpack/webpack/issues/19463)) - Fixed module library export generation for reexport ([#&#8203;19459](https://github.com/webpack/webpack/issues/19459)) - Avoid module concatenation in child compilation for module library ([#&#8203;19457](https://github.com/webpack/webpack/issues/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`](https://github.com/webpack/webpack/releases/tag/v5.99.6) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.5...v5.99.6) ##### 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`](https://github.com/webpack/webpack/releases/tag/v5.99.5) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.4...v5.99.5) ##### Fixes - Control dead flow for labeled and blockless statements ### [`v5.99.4`](https://github.com/webpack/webpack/releases/tag/v5.99.4) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.3...v5.99.4) ##### Fixes - Fixed terminated state for `if`/`else` ### [`v5.99.3`](https://github.com/webpack/webpack/releases/tag/v5.99.3) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.2...v5.99.3) ##### Fixes - Fixed dead control flow with deep nested `if`/`else` ### [`v5.99.2`](https://github.com/webpack/webpack/releases/tag/v5.99.2) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.1...v5.99.2) ##### Fixes - Dead control flow for exotic cases ### [`v5.99.1`](https://github.com/webpack/webpack/releases/tag/v5.99.1) [Compare Source](https://github.com/webpack/webpack/compare/v5.99.0...v5.99.1) ##### Fixes - Dead control flow for many cases ### [`v5.99.0`](https://github.com/webpack/webpack/releases/tag/v5.99.0) [Compare Source](https://github.com/webpack/webpack/compare/v5.98.0...v5.99.0) ##### 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` </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNDAuMSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMi41IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlLWJvdCJdfQ==-->
Author
Member

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
Unknown Syntax Error: Unsupported option name ("--ignore-platform").

$ yarn install [--json] [--immutable] [--immutable-cache] [--refresh-lockfile] [--check-cache] [--check-resolutions] [--inline-builds] [--mode #0]

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: yarn.lock ``` Unknown Syntax Error: Unsupported option name ("--ignore-platform"). $ yarn install [--json] [--immutable] [--immutable-cache] [--refresh-lockfile] [--check-cache] [--check-resolutions] [--inline-builds] [--mode #0] ```
renovate-bot changed title from chore(deps): update dependency webpack to v5.99.5 to chore(deps): update dependency webpack to v5.99.6 2025-04-20 19:16:40 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from d9534ff751
Some checks failed
renovate/artifacts Artifact file update failure
to 6522006bfc
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
2025-04-20 19:16:41 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.99.6 to chore(deps): update dependency webpack to v5.99.7 2025-04-28 05:21:57 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from 6522006bfc
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
to c7f0812624
Some checks failed
renovate/artifacts Artifact file update failure
2025-04-28 05:21:58 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.99.7 to chore(deps): update dependency webpack to v5.99.8 2025-05-12 05:40:40 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from c7f0812624
Some checks failed
renovate/artifacts Artifact file update failure
to cca71d09a9
Some checks failed
renovate/artifacts Artifact file update failure
2025-05-12 05:40:40 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.99.8 to chore(deps): update dependency webpack to v5.99.9 2025-05-26 05:33:26 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from cca71d09a9
Some checks failed
renovate/artifacts Artifact file update failure
to 460209da6d
Some checks failed
renovate/artifacts Artifact file update failure
2025-05-26 05:33:28 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.99.9 to chore(deps): update dependency webpack to v5.100.1 2025-07-14 05:36:58 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from 460209da6d
Some checks failed
renovate/artifacts Artifact file update failure
to 386eb5f555
Some checks failed
renovate/artifacts Artifact file update failure
2025-07-14 05:36:59 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.100.1 to chore(deps): update dependency webpack to v5.100.2 2025-07-21 05:18:34 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from 386eb5f555
Some checks failed
renovate/artifacts Artifact file update failure
to d812e2c500
Some checks failed
renovate/artifacts Artifact file update failure
2025-07-21 05:18:35 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.100.2 to chore(deps): update dependency webpack to v5.101.0 2025-08-04 05:25:30 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from d812e2c500
Some checks failed
renovate/artifacts Artifact file update failure
to b8a6518942
Some checks failed
renovate/artifacts Artifact file update failure
2025-08-04 05:25:30 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.101.0 to chore(deps): update dependency webpack to v5.101.2 2025-08-18 06:09:19 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from b8a6518942
Some checks failed
renovate/artifacts Artifact file update failure
to 630df9fed0
Some checks failed
renovate/artifacts Artifact file update failure
2025-08-18 06:09:21 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.101.2 to chore(deps): update dependency webpack to v5.101.3 2025-08-25 05:22:15 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from 630df9fed0
Some checks failed
renovate/artifacts Artifact file update failure
to 2bb9c53e00
Some checks failed
renovate/artifacts Artifact file update failure
2025-08-25 05:22:17 +05:30
Compare
renovate-bot changed title from chore(deps): update dependency webpack to v5.101.3 to chore(deps): update dependency webpack to v5.102.0 2025-10-01 16:39:14 +05:30
renovate-bot force-pushed renovate/webpack-5.x-lockfile from 2bb9c53e00
Some checks failed
renovate/artifacts Artifact file update failure
to 1a6f40d37a
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/pull_request_metadata/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
2025-10-01 16:39:14 +05:30
Compare
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
mCaptcha/pow_sha256-polyfill!110
No description provided.