Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update dependency webpack to v5#151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
renovate wants to merge1 commit intomaster
base:master
Choose a base branch
Loading
fromrenovate/webpack-5.x

Conversation

@renovate
Copy link
Contributor

@renovaterenovatebot commentedOct 10, 2020
edited
Loading

This PR contains the following updates:

PackageChangeAgeConfidence
webpack4.47.0 ->5.102.1ageconfidence

Release Notes

webpack/webpack (webpack)

v5.102.1

Compare Source

Fixes
  • Supportedextends withenv forbrowserslist
  • SupportedJSONP fragment format for web workers.
  • Fixed dynamic import support in workers usingbrowserslist.
  • Fixed default defer import mangling.
  • Fixed default import ofcommonjs externals forSystemJS format.
  • Fixed context modules to the same file with different import attributes.
  • Fixed typescript types.
  • Improvedimport.meta warning messages to be more clear when used directly.
  • [CSS] Fixed CC_UPPER_U parsing (E -> U) in tokenizer.

v5.102.0

Compare Source

Features
  • Added static analyze for dynamic imports
  • Added support forimport file from "./file.ext" with { type: "bytes" } to get the content asUint8Array (look atexample)
  • Added support forimport file from "./file.ext" with { type: "text" } to get the content as text (look atexample)
  • Added thesnapshot.contextModule to configure snapshots options for context modules
  • Added theextractSourceMap option to implement the capabilities of loading source maps by comment, you don't needsource-map-loader (look atexample)
  • ThetopLevelAwait experiment is now stable (you can removeexperiments.topLevelAwait from yourwebpack.config.js)
  • Thelayers experiment is now stable (you can removeexperiments.layers from yourwebpack.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 havethis exports
  • Removed unusedtimeout attribute of script tag
  • Supported UMD chunk format to work in web workers
  • Improved CommonJs bundle to ES module library
  • Usees-lexer formjs files for build dependencies
  • Fixed support__non_webpack_require__ for ES modules
  • Properly handle external modules for CSS
  • AssetsByChunkName included assets fromchunk.auxiliaryFiles
  • UsecreateRequire 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 forcreateRequire
  • Distinguish free variable and tagged variable

v5.101.1

Compare Source

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

v5.101.0

Compare Source

Fixes
  • Fixed concatenate optimization for ESM that caused undefined export
  • Respect theoutput.environment.nodePrefixForCoreModules option everywhere
  • Respect theoutput.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 thedeferImport 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 extrarequire 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
  • ExtendimportPhasesPlugin only when enabledeferImport (#​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 supportssplitChunks when external variables and runtimeChunk are not set.
  • Added supportusing keyword
  • Implemented tc39Defer Module Evaluation (experiment)
  • Support dynamic template literals expressions fornew URL(...)
  • Enable ES modules worker chunk loading for Node.js targets
  • Improved support for destructing in DefinePlugin
  • AddedVirtualUrlPlugin to supportvirtual: scheme
Performance Improvements
  • Remove useless startup entrypoint runtime for ES modules output
  • Cachenew 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 fordefault 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
  • Respectcause of any errors anderrors 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 formodule library when mixing commonjs and esm modules
  • Always applyFlagDependencyExportsPlugin 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 forif/else

v5.99.3

Compare Source

Fixes
  • Fixed dead control flow with deep nestedif/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
  • Themodule andmodule 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 forcommonjs-static library
  • Forward semicolons frommeta.webpackAST
  • Usexxhash64 forcache.hashAlgorithm whenexperiments.futureDefaults enabled
  • [CSS] Fixed profiling plugin for CSS
  • [CSS] Avoid extra module.export output for CSS module
Features
  • Add dead control flow check
  • Handlenew Worker(import.meta.url) andnew 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 onstrict types fortypescript

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 whenoutput.iife istrue and output.library.type isumd
  • 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] tolocalIdentName when it is empty
  • [CSS] Parsing strings on Windows
  • [CSS] Fixed CSS local escaping

New Features

  • Added support for injecting debug IDs
  • Export theMergeDuplicateChunks 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 -theoutput.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 theurl andimport 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 invalidate

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 foroutput.environment.dynamicImport to determine chunk format when no browserslist or target
  • Collision with global variables foroptimization.avoidEntryIife
  • Avoid through variables in inlined module
  • Allow chunk template strings inoutput.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 usingimportModule on the execution stage
  • Correctly parsing string inexport andimport
  • Typescript types
  • [CSS]css/auto considers a module depending on its filename ascss (pure CSS) orcss/local, before it wascss/global andcss/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 thenode target
  • [CSS] Fixedurl()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] Supportsrc() 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
  • Handledefault 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
  • Distinguishmodule andimport inmodule-import for externalsimport's
  • [Types] MakeEnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility

New Features

  • Add newoptimization.avoidEntryIife option (true by default for theproduction mode)
  • Pass output.hash* options to loader context

Performance

  • Avoid unneeded re-visit in build chunk graph

v5.94.0

Compare Source

Bug Fixes

  • Added runtime condition for harmony reexport checked
  • Handle properlydata/http/https protocols in source maps
  • Makebigint optimistic when browserslist not found
  • Move@​types/eslint-scope to dev deps
  • Related in asset stats is now always an array when no related found
  • Handle ASI for export declarations
  • Mangle destruction incorrect with export named default properly
  • Fixed unexpected asi generation with sequence expression
  • Fixed a lot of types

New Features

  • Added new external type "module-import"
  • SupportwebpackIgnore fornew URL() construction
  • [CSS]@import pathinfo support

Security

  • Fixed DOM clobbering in auto public path

v5.93.0

Compare Source

Bug Fixes

  • Generate correct relative path to runtime chunks
  • MakesDefinePlugin quieter under default log level
  • Fixed mangle destructuring default in namespace import
  • Fixed consumption of eager shared modules for module federation
  • Strip slash for pretty regexp
  • Calculate correct contenthash for CSS generator options

New Features

  • Added thebinary generator option for asset modules to explicitly keep source maps produced by loaders
  • Added themodern-module library value for tree shakable output
  • Added theoverrideStrict option to override strict or non-strict mode for javascript modules

v5.92.1

Compare Source

Bug Fixes

  • Doesn't crash with an error when the css experiment is enabled and contenthash is used

v5.92.0

Compare Source

Bug Fixes

  • Correct tidle range's comutation for module federation
  • Consider runtime for pure expression dependency update hash
  • Return value in thesubtractRuntime function for runtime logic
  • Fixed failed to resolve promise when eager import a dynamic cjs
  • Avoid generation extra code for external modules when remapping is not required
  • Thecss/global type now handles the exports name
  • Avoid hashing for@keyframe and@property at-rules incss/global type
  • Fixed mangle with destructuring for JSON modules
  • Thestats.hasWarnings() method now respects theignoreWarnings option
  • FixedArrayQueue iterator
  • Correct behavior of__webpack_exports_info__.a.b.canMangle
  • Changed to the correct plugin name for theCommonJsChunkFormatPlugin plugin
  • Set thechunkLoading option to theimport when environment is unknown and output is module
  • Fixed when runtimeChunk has no exports whenmodule chunkFormat used
  • [CSS] Fixed parsing minimized CSS import
  • [CSS] URLs in CSS files now have correct public path
  • [CSS] Thecss module type should not allow parser to switch mode
  • [Types] Improved context module types

New Features

  • Added platform target properties to compiler
  • Improved multi compiler cache location and validating it
  • Supportimport attributes spec (with keyword)
  • Supportnode: prefix for Node.js core modules in runtime code
  • Support prefetch/preload for module chunk format
  • Support "..." in theimportsFields option for resolver
  • Root module is less prone to be wrapped in IIFE
  • ExportInitFragment class for plugins
  • ExportcompileBooleanMatcher util for plugins
  • ExportInputFileSystem andOutputFileSystem types
  • [CSS] Support theesModule generator option for CSS modules
  • [CSS] Support CSS when chunk format is module

v5.91.0

Compare Source

Bug Fixes

  • Deserializer for ignored modules doesn't crash
  • Allow theunsafeCache option to be a proxy object
  • Normalize thesnapshot.unmanagedPaths option
  • Fixedfs types
  • Fixed resolve's plugins types
  • Fixed wrongly calculate postOrderIndex
  • Fixed watching types
  • Output import attrbiutes/import assertions for external JS imports
  • Throw an error when DllPlugin needs to generate multiple manifest files, but the path is the same
  • [CSS] Outputlayer/supports/media for external CSS imports

New Features

  • Allow to customize the stage of BannerPlugin
  • [CSS] Support CSS exports convention
  • [CSS] support CSS local ident name
  • [CSS] Support__webpack_nonce__ for CSS chunks
  • [CSS] SupportfetchPriority for CSS chunks
  • [CSS] Allow to use LZW to compress css head meta (enabled in theproduction mode by default)
  • [CSS] Support prefetch/preload for CSS chunks

v5.90.3

Compare Source

Bug Fixes

  • don't mangle when destructuring a reexport
  • types forStats.toJson() andStats.toString()
  • many internal types
  • [CSS] clean up export css local vars

Perf

  • simplify and optimize chunk graph creation

v5.90.2

Compare Source

Bug Fixes

  • useMath.imul infnv1a32 to avoid loss of precision, directly hash UTF16 values
  • thesetStatus() of the HMR module should not return an array, which may cause infinite recursion
  • __webpack_exports_info__.xxx.canMangle shouldn't always same as default
  • mangle export with destructuring
  • use new runtime to reconsider skipped connectionsactiveState
  • make dynamic import optional intry/catch
  • improve auto publicPath detection

Dependencies & Maintenance

  • improve CI setup and include Node.js@​21

v5.90.1

Compare Source

Bug Fixes

  • setunmanagedPaths in defaults
  • correctpreOrderIndex andpostOrderIndex
  • add fallback for MIME mismatch error in async wasm loading
  • browsers versions of ECMA features

Performance

  • optimizecompareStringsNumeric
  • optimizenumberHash using 32-bit FNV1a for small ranges, 64-bit for larger
  • reuse VM context across webpack magic comments

v5.90.0

Compare Source

Bug Fixes

  • Fixed inner graph for classes
  • OptimizedRemoveParentModulesPlugin via bigint arithmetic
  • Fixed worklet detection in production mode
  • Fixed an error for cyclic importModule
  • Fixed types forServer andDirent
  • Added thefetchPriority to hmr runtime'sensureChunk function
  • Don't warn about dynamic import for build dependencies
  • External module generation respects theoutput.environment.arrowFunction option
  • Fixed consumimng shared runtime module logic
  • Fixed a runtime logic of multiple chunks
  • Fixed destructing assignment of dynamic import json file
  • Passing errors array for a module hash
  • Added/*#__PURE__*/ to generatedJSON.parse()
  • Generated a library manifest after clean plugin
  • Fixed nonamd externals andamd library
  • Fixed a bug inSideEffectsFlagPlugin with namespace re-exports
  • Fixed an error message for conditionor
  • ThestrictModuleErrorHandling is now working
  • Clean up child compilation chunk graph to avoid memory leak
  • [CSS] - Fixed CSS import prefer relative resolution
  • [CSS] - Fixed CSS runtime chunk loading error message

New Features

  • Allow to setfalse for dev server inwebpack.config.js
  • Added a warning for async external when not supported
  • Added a warning for async module when not supported
  • Added thenode-module option for thenode.__filename/__dirname and enable it by default for ESM target
  • Added thesnapshot.unmanagedPaths option
  • Exposed theMultiCompilerOptions type
  • [CSS] - Added CSS parser options to enable/disable named exports
  • [CSS] - Moved CSS theexportsOnly option to CSS generator options

Dependencies & Maintenance

  • use node.js LTS version for lint
  • bump actions/cache from 3 to 4
  • bump prettier from 3.2.1 to 3.2.3
  • bump assemblyscript
  • bump actions/checkout from 3 to 4

Full Changelog:webpack/webpack@v5.89.0...v5.90.0

v5.89.0

Compare Source

New Features

Dependencies & Maintenance

Full Changelog:webpack/webpack@v5.88.2...v5.89.0

v5.88.2

Compare Source

Bug Fixes

Full Changelog:webpack/webpack@v5.88.1...v5.88.2

v5.88.1

Compare Source

Developer Experience

Full Changelog:webpack/webpack@v5.88.0...v5.88.1

v5.88.0

Compare Source

New Features

Bug Fixes

Developer Experience

Dependencies & Maintenance

New Contributors

Full Changelog:webpack/webpack@v5.87.0...v5.88.0

v5.87.0

Compare Source

New Features

Bug Fixes

Developer Experience

Dependencies & Maintenance

New Contributors

@​aboktor made their first contribution in#​16991#​16989
@​silverwind made their first contribution in#​17339 via#​17329

Full Changelog:webpack/webpack@v5.86.0...v5.87.0

v5.86.0

Compare Source

New Features

Bug Fixes

Developer Experience

Dependencies & Maintenance

New Contributors

Full Changelog:webpack/webpack@v5.85.1...v5.86.0

v5.85.1

Compare Source

Bug Fixes

  • Fix bug in handling barrel imports (#​17305) by@​bworline in#​17307 -NOTE: An internal APIBasicEvaluatedExpression.getMemberRangeStarts has been changed toBasicEvaluatedExpression.getMemberRanges, please see type definition changes and the pull request for more information.

Dependencies & Maintenance

Full Changelog:webpack/webpack@v5.85.0...v5.85.1

v5.85.0

Compare Source

New Features

Bug Fixes

Developer Experience

Dependencies & Maintenance

Full Changelog:webpack/webpack@v5.84.1...v5.85.0

v5.84.1

Compare Source

Bug Fixes

Dependencies & Maintenance

Full Changelog:webpack/webpack@v5.84.0...v5.84.1

v5.84.0

Compare Source

New Features

Bug Fixes

Developer Experience

Dependencies & Maintenance

New Contributors

Full Changelog:webpack/webpack@v5.83.1...v5.84.0

v5.83.1

Compare Source

Bug Fixes

Full Changelog:webpack/webpack@v5.83.0...v5.83.1

v5.83.0

Compare Source

New Features

Bug Fixes

Developer Experience

Dependencies & Maintenance


Configuration

📅Schedule: Branch creation - "every weekend" in timezone America/New_York, 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 byMend Renovate. View therepository job log.

@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently from054d84e to3fd9b47CompareOctober 24, 2020 04:05
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from3fd9b47 to1075407CompareOctober 31, 2020 04:07
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from1075407 to7707f15CompareNovember 7, 2020 05:04
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently from8b1b36a to0730331CompareNovember 21, 2020 08:08
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 3 times, most recently fromb664feb toe68fcc8CompareDecember 5, 2020 05:06
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 3 times, most recently fromeb46fbd to9c7bb29CompareJanuary 2, 2021 07:08
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 4 times, most recently fromf7c75fc toca28558CompareJanuary 10, 2021 19:05
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently froma93679d to81d25b5CompareJanuary 16, 2021 08:04
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from81d25b5 tobc61a85CompareJanuary 23, 2021 05:32
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 3 times, most recently from5d16781 to8b41d80CompareFebruary 6, 2021 05:07
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently fromc3bce74 to588b629CompareFebruary 7, 2021 19:30
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently frome652dcf to7224a6fCompareMarch 6, 2021 05:37
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from7224a6f to4a5b925CompareMarch 13, 2021 09:13
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from5eaa0c6 to978f1aaCompareFebruary 3, 2024 07:12
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently fromc6ae395 to693575cCompareFebruary 24, 2024 07:51
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from693575c to116ef16CompareMarch 23, 2024 05:16
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from116ef16 to1aff5b4CompareJune 15, 2024 04:13
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from1aff5b4 to345af22CompareJune 22, 2024 05:08
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from345af22 to7af0072CompareJuly 13, 2024 05:09
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from7af0072 tobf565d9CompareAugust 24, 2024 05:23
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from5ee1d07 todc1fd67CompareNovember 2, 2024 08:04
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch fromdc1fd67 to05a3200CompareDecember 7, 2024 07:36
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently from1018c71 to9d45b4bCompareApril 19, 2025 05:05
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from9d45b4b tod96e9c2CompareApril 26, 2025 05:10
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch fromd96e9c2 to80d8ac9CompareMay 10, 2025 04:57
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from80d8ac9 to06a860dCompareMay 24, 2025 05:00
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently from5cc16cf tobbec501CompareJuly 19, 2025 07:42
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently from2c3eba3 to27adc9aCompareAugust 2, 2025 08:48
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch 2 times, most recently fromde81da3 todf7e247CompareAugust 16, 2025 05:01
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch fromdf7e247 to3907fb7CompareAugust 23, 2025 06:04
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from3907fb7 to7268963CompareAugust 31, 2025 11:10
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from248ca37 toc1dba13CompareOctober 4, 2025 04:45
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch fromc1dba13 to5dbd6d9CompareOctober 11, 2025 06:01
@renovaterenovatebotforce-pushed therenovate/webpack-5.x branch from5dbd6d9 to3f72d89CompareOctober 25, 2025 05:42
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp