Skip to content

Commit b419a5a

Browse files
committed
Merge branch 'master' of https://github.com/rollup/rollup into sync-76a3b8ed
2 parents 8350243 + 76a3b8e commit b419a5a

File tree

8 files changed

+28
-11
lines changed

8 files changed

+28
-11
lines changed

.github/workflows/build-and-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ jobs:
120120
cross: zig
121121
- host: ubuntu-latest
122122
target: armv7-linux-androideabi
123-
cross: napi
123+
cross: zig
124124
- host: ubuntu-latest
125125
target: aarch64-linux-android
126-
cross: napi
126+
cross: zig
127127
- host: ubuntu-latest
128128
target: riscv64gc-unknown-linux-gnu
129129
setup: |

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# rollup changelog
22

3+
## 4.50.2
4+
5+
_2025-09-15_
6+
7+
### Bug Fixes
8+
9+
- Resolve an issue where unused destructured array pattern declarations would conflict with included variables (#6100)
10+
11+
### Pull Requests
12+
13+
- [#6100](https://github.com/rollup/rollup/pull/6100): Tree-shake un-included elements in array pattern (@TrickyPi)
14+
- [#6102](https://github.com/rollup/rollup/pull/6102): chore(deps): update actions/setup-node action to v5 (@renovate[bot])
15+
- [#6103](https://github.com/rollup/rollup/pull/6103): chore(deps): update dependency eslint-plugin-unicorn to v61 (@renovate[bot])
16+
- [#6104](https://github.com/rollup/rollup/pull/6104): fix(deps): update swc monorepo (major) (@renovate[bot])
17+
- [#6105](https://github.com/rollup/rollup/pull/6105): fix(deps): lock file maintenance minor/patch updates (@renovate[bot])
18+
- [#6107](https://github.com/rollup/rollup/pull/6107): Improve CI stability (@lukastaegert)
19+
320
## 4.50.1
421

522
_2025-09-07_

browser/package.json

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

native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const bindingsByPlatformAndArch = {
2020
linux: {
2121
arm: { base: 'linux-arm-gnueabihf', musl: 'linux-arm-musleabihf' },
2222
arm64: { base: 'linux-arm64-gnu', musl: 'linux-arm64-musl' },
23-
loong64: { base: 'linux-loongarch64-gnu', musl: null },
23+
loong64: { base: 'linux-loong64-gnu', musl: null },
2424
ppc64: { base: 'linux-ppc64-gnu', musl: null },
2525
riscv64: { base: 'linux-riscv64-gnu', musl: 'linux-riscv64-musl' },
2626
s390x: { base: 'linux-s390x-gnu', musl: null },
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# `@rollup/rollup-linux-loongarch64-gnu`
1+
# `@rollup/rollup-linux-loong64-gnu`
22

33
This is the **loongarch64-unknown-linux-gnu** binary for `rollup`
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@rollup/rollup-linux-loongarch64-gnu",
2+
"name": "@rollup/rollup-linux-loong64-gnu",
33
"version": "0.0.0",
44
"os": [
55
"linux"
@@ -8,7 +8,7 @@
88
"loong64"
99
],
1010
"files": [
11-
"rollup.linux-loongarch64-gnu.node"
11+
"rollup.linux-loong64-gnu.node"
1212
],
1313
"description": "Native bindings for Rollup",
1414
"author": "Lukas Taegert-Atkinson",
@@ -18,5 +18,5 @@
1818
"libc": [
1919
"glibc"
2020
],
21-
"main": "./rollup.linux-loongarch64-gnu.node"
21+
"main": "./rollup.linux-loong64-gnu.node"
2222
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup",
3-
"version": "4.50.1",
3+
"version": "4.50.2",
44
"description": "Next-generation ES module bundler",
55
"main": "dist/rollup.js",
66
"module": "dist/es/rollup.js",

0 commit comments

Comments
 (0)