Skip to content

Commit 981850d

Browse files
committed
Merge branch 'master' of https://github.com/rollup/rollup into sync-caa406ec
2 parents ea7c731 + caa406e commit 981850d

File tree

112 files changed

+449
-369
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+449
-369
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# rollup changelog
22

3+
## 4.34.9
4+
5+
_2025-03-01_
6+
7+
### Bug Fixes
8+
9+
- Support JSX modes in WASM (#5866)
10+
- Allow the CustomPluginOptions to be extended (#5850)
11+
12+
### Pull Requests
13+
14+
- [#5850](https://github.com/rollup/rollup/pull/5850): Revert CustomPluginOptions to be an interface (@sapphi-red, @lukastaegert)
15+
- [#5851](https://github.com/rollup/rollup/pull/5851): Javascript to JavaScript (@dasa, @lukastaegert)
16+
- [#5853](https://github.com/rollup/rollup/pull/5853): chore(deps): update dependency pinia to v3 (@renovate[bot])
17+
- [#5854](https://github.com/rollup/rollup/pull/5854): fix(deps): update swc monorepo (major) (@renovate[bot])
18+
- [#5855](https://github.com/rollup/rollup/pull/5855): fix(deps): lock file maintenance minor/patch updates (@renovate[bot], @lukastaegert)
19+
- [#5860](https://github.com/rollup/rollup/pull/5860): chore(deps): update dependency @shikijs/vitepress-twoslash to v3 (@renovate[bot])
20+
- [#5861](https://github.com/rollup/rollup/pull/5861): chore(deps): update dependency globals to v16 (@renovate[bot])
21+
- [#5863](https://github.com/rollup/rollup/pull/5863): fix(deps): lock file maintenance minor/patch updates (@renovate[bot])
22+
- [#5864](https://github.com/rollup/rollup/pull/5864): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
23+
- [#5866](https://github.com/rollup/rollup/pull/5866): Add jsx parameter to parseAsync in native.wasm.js (@TrickyPi)
24+
325
## 4.34.8
426

527
_2025-02-17_

browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rollup/browser",
3-
"version": "4.34.8",
3+
"version": "4.34.9",
44
"description": "Next-generation ES module bundler browser build",
55
"main": "dist/rollup.browser.js",
66
"module": "dist/es/rollup.browser.js",

native.wasm.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ const {
66
} = require('./wasm-node/bindings_wasm.js');
77

88
exports.parse = parse;
9-
exports.parseAsync = async (code, allowReturnOutsideFunction, _signal) =>
10-
parse(code, allowReturnOutsideFunction);
9+
exports.parseAsync = async (code, allowReturnOutsideFunction, jsx, _signal) =>
10+
parse(code, allowReturnOutsideFunction, jsx);
1111
exports.xxhashBase64Url = xxhashBase64Url;
1212
exports.xxhashBase36 = xxhashBase36;
1313
exports.xxhashBase16 = xxhashBase16;

0 commit comments

Comments
 (0)