Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 12, 2026

Bumps rolldown from v1.0.0-beta.57 to v1.0.0-beta.59.

Release notes

Sourced from rolldown's releases.

v1.0.0-beta.59

[1.0.0-beta.59] - 2026-01-07

⚡ Inline Dynamic Imports for Statically Imported Modules

  • When a module is already statically imported, dynamic imports to that same module are now inlined instead of creating a separate chunk
  • REPL: before and after

Before:

import { foo } from './foo.js'
console.log(foo)
import('./foo.js').then(mod => console.log(mod.foo))

Previously, import('./foo.js') would create a separate async chunk.

After:

var foo_exports = /* @__PURE__ */ __exportAll({ foo: () => foo });
const foo = "foo";
console.log(foo);
Promise.resolve().then(() => foo_exports).then((mod) => console.log(mod.foo));

The dynamic import is inlined since foo.js is already statically imported.

🚀 Features

🐛 Bug Fixes

🚜 Refactor

  • plugin_timings: filter out plugins with duration < 1s from timing warnings (#7785) by @​shulaoda
  • module_loader: remove unnecessary collect before extend (#7769) by @​shulaoda

... (truncated)

Changelog

Sourced from rolldown's changelog.

[1.0.0-beta.59] - 2026-01-07

🚀 Features

🐛 Bug Fixes

🚜 Refactor

📚 Documentation

🧪 Testing

⚙️ Miscellaneous Tasks

... (truncated)

Commits
  • 25ffe2a release: v1.0.0-beta.59 (#7786)
  • c216b90 refactor(plugin_timings): filter out plugins with duration < 1s from timing w...
  • 6d4272c fix: inline dynamic entry to user defined entry with esm wrap kind (#7783)
  • 71d8ce0 feat(plugin_timings): add 3s threshold and doc link to warning message (#7741)
  • bf9cc26 feat: improve treeshaking logic to handle empty parameter list in dynamic imp...
  • e5a047d fix: use canonical namespace reference for property access (#7777)
  • fe2142b docs: add rolldown-string reference to native MagicString compatibility secti...
  • 8a07413 fix: dynamic entry merged into common chunk with cjs and esm wrap kind (#7771)
  • eb312ba chore: tweak some output.dynamicImportInCjs related rollup test results (#7...
  • 2e27dba chore: mark esbuild/dce/dce_of_symbol_ctor_call as passed (#7775)
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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) from v1.0.0-beta.57 to v1.0.0-beta.59.
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](rolldown/rolldown@v1.0.0-beta.57...25ffe2a)

---
updated-dependencies:
- dependency-name: rolldown
  dependency-version: 25ffe2a1497037644330ad99bfc9b2c5d98e0ff5
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jan 12, 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 rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant