This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
chore(deps): update dependency rollup to v4 #386
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.79.1
->4.13.2
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
rollup/rollup (rollup)
v4.13.2
Compare Source
2024-03-28
Bug Fixes
Pull Requests
v4.13.1
Compare Source
2024-03-27
Bug Fixes
Pull Requests
v4.13.0
Compare Source
2024-03-12
Features
Pull Requests
v4.12.1
Compare Source
2024-03-06
Bug Fixes
Pull Requests
getRollupEror
togetRollupError
(@MrRefactoring)import.meta.ROLLUP_FILE_URL_referenceId
correctly (@sapphi-red)v4.12.0
Compare Source
2024-02-16
Features
Pull Requests
v4.11.0
Compare Source
2024-02-15
Features
output.reexportProtoFromExternal
option to disable special code for handling__proto__
reexports (#5380)Bug Fixes
const
variables (#5388)Pull Requests
__proto__
for compatibility with CJS Transpiler Re-exports (@TrickyPi)v4.10.0
Compare Source
2024-02-10
Features
output.hashCharacters
option (#5371)Bug Fixes
Pull Requests
v4.9.6
Compare Source
2024-01-21
Bug Fixes
Pull Requests
v4.9.5
Compare Source
2024-01-12
Bug Fixes
Pull Requests
v4.9.4
Compare Source
2024-01-06
Bug Fixes
Pull Requests
v4.9.3
Compare Source
2024-01-05
Bug Fixes
__proto__
as export/import name (#5313)Pull Requests
v4.9.2
Compare Source
2023-12-30
Bug Fixes
Pull Requests
v4.9.1
Compare Source
2023-12-17
Bug Fixes
Pull Requests
v4.9.0
Compare Source
2023-12-13
Features
Pull Requests
v4.8.0
Compare Source
2023-12-11
Features
experimentalMinChunkSize
to take already loaded modules from dynamic imports into account (#5294)Pull Requests
v4.7.0
Compare Source
2023-12-08
Features
Bug Fixes
Pull Requests
v4.6.1
Compare Source
2023-11-30
Bug Fixes
var
several times was considered a conflict (#5276)Pull Requests
v4.6.0
Compare Source
2023-11-26
Features
this.addWatchFile
in all plugin hooks (#5270)Bug Fixes
npm
issue (#5267)this
context inthis.addWatchFile
so it does not need to be bound when passed around (#5270)Pull Requests
v4.5.2
Compare Source
2023-11-24
Bug Fixes
Pull Requests
v4.5.1
Compare Source
2023-11-21
Bug Fixes
Pull Requests
v4.5.0
Compare Source
2023-11-18
Bug Fixes
Pull Requests
v4.4.1
Compare Source
2023-11-14
Bug Fixes
Pull Requests
v4.4.0
Compare Source
2023-11-12
Features
Bug Fixes
Pull Requests
v4.3.1
Compare Source
2023-11-11
Bug Fixes
--forceExit
(#5245)Pull Requests
v4.3.0
Compare Source
2023-11-03
Features
forceExit
CLI flag for situations where the CLI does not exit gracefully (#5195)Bug Fixes
Pull Requests
forceExit
CLI flag (@raphael-theriault-swi)ENOENT
error on temp config removal (@jzempel)v4.2.0
Compare Source
2023-10-31
Features
parseAstAsync
helper function (#5202)Pull Requests
parseAstAsync
and parallelize parsing AST (@sapphi-red)v4.1.6
Compare Source
2023-10-31
Bug Fixes
Pull Requests
v4.1.5
Compare Source
2023-10-28
Bug Fixes
Pull Requests
v4.1.4
Compare Source
2023-10-16
Bug Fixes
Pull Requests
v4.1.3
Compare Source
2023-10-15
Bug Fixes
Pull Requests
v4.1.1
Compare Source
2023-10-15
Bug Fixes
Pull Requests
v4.1.0
Compare Source
2023-10-14
Features
Pull Requests
onLog
(@tjenkinson)v4.0.2
Compare Source
2023-10-06
Bug Fixes
Pull Requests
v4.0.1
Compare Source
2023-10-06
Bug Fixes
Pull Requests
v4.0.0
Compare Source
2023-10-05
BREAKING CHANGES
General Changes
@rollup/wasm-node
package that has the same interface as Rollup but relies on WASM artifacts (#5073)INVALID_IMPORT_ASSERTION
error code has been replaced withINVALID_IMPORT_ATTRIBUTE
(#5073)@__PURE__
and@__NO_SIDE_EFFECTS__
annotations in invalid locations (#5165)#!...
, this comment will be prepended to the output fores
andcjs
formats (#5163)RollupWarning
type has been removed in favor of theRollupLog
type (#5147)Changes to Rollup Options
acornInjectPlugins
option has been removed (#5073)acorn
option has been removed (#5073)output.externalImportAssertions
has been deprecated in favor ofoutput.externalImportAttributes
(#5073)inlineDynamicImports
,manualChunks
andpreserveModules
have been removed on input option level: Please use the corresponding output options of the same names (#5143)output.experimentalDeepDynamicChunkOptimization
: This option is no longer needed as Rollup now always runs the full chunking algorithmoutput.dynamicImportFunction
: Use therenderDynamicImport
plugin hook insteadoutput.namespaceToStringTag
: Useoutput.generatedCode.symbols
insteadoutput.preferConst
: Useoutput.generatedCode.constBindings
insteadPlugin API Changes
this.resolve
, the default of theskipSelf
option is nowtrue
(#5142)this.parse
now only supports theallowReturnOutsideFunction
option for now (#5073)load
hook of a plugin,rollup.watch
no longer watches the actual file if the module id corresponds to a real path; if this is intended, then the plugin is responsible for callingthis.addWatchFile
for any dependency files (#5150)buildStart
and other hooks no longer contain anonwarn
handler; plugins should useonLog
instead (#5147)this.moduleIds
has been removed from the plugin context: Usethis.getModuleIds()
instead (#5143)hasModuleSideEffects
flag has been removed from theModuleInfo
returned bythis.getModuleInfo()
: UsemoduleSideEffects
on theModuleInfo
instead (#5143)Features
@__PURE__
and@__NO_SIDE_EFFECTS__
annotations in invalid locations (#5165)parseAst
(#5169)Bug Fixes
this.addWatchFile()
(#5150)Pull Requests
v3.29.4
Compare Source
2023-09-28
Bug Fixes
Pull Requests
v3.29.3
Compare Source
2023-09-24
Bug Fixes
Pull Requests
v3.29.2
Compare Source
2023-09-15
Bug Fixes
TreeshakingPreset
type (#5131)Pull Requests
TreeshakingPreset
(@moltar)v3.29.1
Compare Source
2023-09-10
Bug Fixes
Pull Requests
v3.29.0
Compare Source
2023-09-06
Features
api
to Plugin type (#5112)Bug Fixes
Pull Requests
v3.28.1
Compare Source
2023-08-22
Bug Fixes
Pull Requests
v3.28.0
Compare Source
2023-08-09
Features
preliminaryFileName
to generated chunks containing the file name placeholder (#5086)Bug Fixes
code
property of rendered modules in the output readonly (#5091)Pull Requests
preliminaryFileName
toOutputChunk
(@lsdsjy)v3.27.2
Compare Source
2023-08-04
Bug Fixes
Pull Requests
v3.27.1
Compare Source
2023-08-03
Bug Fixes
Pull Requests
v3.27.0
Compare Source
2023-07-28
Features
Object.values
andObject.entries
as pure if their argument does not contain getters (#5072)Pull Requests
v3.26.3
Compare Source
2023-07-17
Bug Fixes
manualChunks
to avoid breaking existing configs (#5068)Pull Requests
v3.26.2
Compare Source
2023-07-06
Bug Fixes
Pull Requests
v3.26.1
Compare Source
2023-07-05
Bug Fixes
hasOwnProperty
as exported name in CommonJS (#5010)Pull Requests
v3.26.0
Compare Source
2023-06-30
Features
--filterLogs
CLI flag andROLLUP_FILTER_LOGS
environment variable for log filtering (#5035)Pull Requests
v3.25.3
Compare Source
2023-06-26
Bug Fixes
Pull Requests
v3.25.2
Compare Source
2023-06-24
Bug Fixes
code
is not a string (#5042)Configuration
📅 Schedule: Branch creation - "every weekend" in timezone Asia/Hong_Kong, 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.
This PR has been generated by Mend Renovate. View repository job log here.