Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Bumps rolldown from 1.0.0-rc.2 to 1.0.0-rc.3.

Release notes

Sourced from rolldown's releases.

v1.0.0-rc.3

[1.0.0-rc.3] - 2026-02-04

⚡ Remove Unnecessary Default Export Assignment

  • Eliminates redundant variable assignments when exporting default values
  • Reduces output bundle size and improves code clarity
// index.js
var x = 42;
export default x;
// Before
var x = 42;
var entry_default = x;
export { entry_default as default };
// After
var x = 42;
export { x as default };

🐛 Avoid Unnecessary Facade Chunks

  • Keep user-defined entry modules in their own chunks
  • Reduces HTTP round trips and improves startup performance
// main.js (entry module)
import { a } from './lib.js'
console.log(a)
// lib.js
export * from './counter.js'
// counter.js (entry module)
export const a = 100
// Before
dist/
├── main.js            import { a } from './counter-chunk.js'; console.log(a)
├── counter.js         export { a } from './counter-chunk.js' // ❌ facade chunk
└── counter-chunk.js   export const a = 100
// After
dist/
├── main.js     import { a } from './counter.js'; console.log(a)
└── counter.js  export const a = 100

... (truncated)

Changelog

Sourced from rolldown's changelog.

[1.0.0-rc.3] - 2026-02-04

🚀 Features

🐛 Bug Fixes

💼 Other

🚜 Refactor

📚 Documentation

⚡ Performance

... (truncated)

Commits
  • 3035ec8 release: v1.0.0-rc.3 (#8201)
  • 94978c0 refactor: move VERSION to constants directory (#8200)
  • aba2dbb feat: expose RUNTIME_MODULE_ID constant for plugin authors (#8199)
  • 23dc588 chore(deps): update oxc to v0.112.0 (#8171)
  • 1c0a172 feat: warn unsupported combination of preserveValueImports and `importsNotU...
  • 547e67e docs(apis): add links to option descriptions in JSDoc comments (#8167)
  • a226d9d feat: sophisticated watch tracking for load dependencies (#8092)
  • 4a359cf fix: ensure \0rolldown/runtime.js will go through transform hook and add te...
  • 8759fc4 fix: [name] in assetFileNames does not include the directory part (#8098)
  • 64776af feat: add inputMap option to minify / minifySync functions (#8138)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rolldown](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown) from 1.0.0-rc.2 to 1.0.0-rc.3.
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-rc.3/packages/rolldown)

---
updated-dependencies:
- dependency-name: rolldown
  dependency-version: 1.0.0-rc.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants