Skip to content

Releases: rollup/rollup

v4.14.3

15 Apr 07:19
Compare
Choose a tag to compare

4.14.3

2024-04-15

Bug Fixes

  • Support Alpine Linux and other MUSL builds on ARM (#5471)

Pull Requests

v4.14.2

12 Apr 06:24
Compare
Choose a tag to compare

4.14.2

2024-04-12

Bug Fixes

  • Do not create invalid code when reexporting both a namespace and the default export from that namespace (#5466)
  • Ensure ppc64 platform is properly detected (#5460)

Pull Requests

v4.14.1

07 Apr 07:36
Compare
Choose a tag to compare

4.14.1

2024-04-07

Bug Fixes

  • Show better error when running on musl Linux where the musl build is not supported (#5454)

Pull Requests

v4.14.0

03 Apr 05:24
Compare
Choose a tag to compare

4.14.0

2024-04-03

Features

  • Display error causes in Rollup CLI (#5422)
  • Add basic support for explicit resource management via "using" and "await using" (#5423)

Pull Requests

v4.13.2

28 Mar 14:14
Compare
Choose a tag to compare

4.13.2

2024-03-28

Bug Fixes

  • Ensure accessing module info is cached after the build phase for improved performance (#5438)
  • Support powerpc64le CPUs (#5350)

Pull Requests

v4.13.1

27 Mar 10:28
Compare
Choose a tag to compare

4.13.1

2024-03-27

Bug Fixes

  • Add new linux-s390x-gnu native binary package (#5346)

Pull Requests

  • #5346: Add support for linux s390x gnu (@edlerd)
  • #5430: chore(deps): update dependency @vue/eslint-config-typescript to v13 (@renovate[bot], @lukastaegert)
  • #5431: chore(deps): lock file maintenance minor/patch updates ( @renovate[bot])
  • #5432: chore(deps): lock file maintenance minor/patch updates ( @renovate[bot])
  • #5436: chore(deps): lock file maintenance minor/patch updates ( @renovate[bot])
  • #5437: chore(deps): lock file maintenance minor/patch updates ( @renovate[bot])

v4.13.0

12 Mar 05:29
Compare
Choose a tag to compare

4.13.0

2024-03-12

Features

  • Ensure that the location of parse errors and other logs is encoded in the error message as well (#5424)

Pull Requests

v4.12.1

06 Mar 06:04
Compare
Choose a tag to compare

4.12.1

2024-03-06

Bug Fixes

  • Escape special characters in file references (#5404)

Pull Requests

v4.12.0

16 Feb 13:34
Compare
Choose a tag to compare

4.12.0

2024-02-16

Features

  • Improve raw bundling performance by 10-15% when not using the cache or plugins that return an AST (#5391)

Pull Requests

  • #5391: Improve performance by directly constructing AST from buffer (@lukastaegert)
  • #5393: chore(deps): update dependency eslint-plugin-unicorn to v51 (@renovate[bot])
  • #5394: chore(deps): update typescript-eslint monorepo to v7 (major) (@renovate[bot])
  • #5395: chore(deps): lock file maintenance minor/patch updates (@renovate[bot])

v4.11.0

15 Feb 06:10
Compare
Choose a tag to compare

4.11.0

2024-02-15

Features

  • Add output.reexportProtoFromExternal option to disable special code for handling __proto__ reexports (#5380)

Bug Fixes

  • Ensure namespace reexport code can be parsed by cjs-module-lexer (#5380)
  • Throw when trying to reassing const variables (#5388)

Pull Requests

  • #5380: fix: separately export __proto__ for compatibility with CJS Transpiler Re-exports (@TrickyPi)
  • #5388: Add const reassign rule (@TrickyPi)