Skip to content

Bump the node group with 2 updates#100

Merged
leonardocustodio merged 1 commit intomainfrom
dependabot/npm_and_yarn/node-fd9fbb782f
Mar 10, 2026
Merged

Bump the node group with 2 updates#100
leonardocustodio merged 1 commit intomainfrom
dependabot/npm_and_yarn/node-fd9fbb782f

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2026

Bumps the node group with 2 updates: @nuxthub/core and tsdown.

Updates @nuxthub/core from 0.10.6 to 0.10.7

Release notes

Sourced from @​nuxthub/core's releases.

v0.10.7

compare changes

🚀 Enhancements

  • db: Add support for database replica (#808)
  • cli: Add "name" and "custom" arguments for db generate cli command (#816)
  • cli: Add --force flag to skip confirmation when dropping all tables (#834)
  • db: Add hub.db.applyMigrationsDuringDev: boolean option (#837)
  • db: Use drizzle studio d1 driver (#846)

🩹 Fixes

  • db: Generate schema types during prepare (#795)
  • Change Cloudflare D1 API URI (#794)
  • devtools: Point Drizzle Studio to correct D1 database file (#806)
  • db: Create package.json during prepare (#797)
  • db: Resolve Nuxt aliases in schema bundling (#802)
  • db: Correct D1 migrations_dir path in wrangler.json (#814)
  • playground: Fix get todos database query (#819)
  • Fix incorrect license in README (#829)
  • db: Resolve @​nuxthub/db from rootDir for pnpm workspaces (#828)
  • db: Bundle cache schema entries (#833)
  • db: Respect explicit libsql driver on Cloudflare (#842)
  • db: Pass driver options to postgres-js (#844)

📖 Documentation

  • Fix typo in schema documentation (#807)
  • Add environments, CI/CD guide, and env vars reference (#804)
  • Add nuxt-studio (64f9105)
  • Make formatting in db migrate command usage consistant (#822)
  • Update migration handling for Cloudflare D1 (#848)
  • blob: Clarify nuxt image dev config (#851)
  • Fix typo in url (d4e24b3)

🏡 Chore

❤️ Contributors

... (truncated)

Changelog

Sourced from @​nuxthub/core's changelog.

v0.10.7

compare changes

🚀 Enhancements

  • db: Add support for database replica (#808)
  • cli: Add "name" and "custom" arguments for db generate cli command (#816)
  • cli: Add --force flag to skip confirmation when dropping all tables (#834)
  • db: Add hub.db.applyMigrationsDuringDev: boolean option (#837)
  • db: Use drizzle studio d1 driver (#846)

🩹 Fixes

  • db: Generate schema types during prepare (#795)
  • Change Cloudflare D1 API URI (#794)
  • devtools: Point Drizzle Studio to correct D1 database file (#806)
  • db: Create package.json during prepare (#797)
  • db: Resolve Nuxt aliases in schema bundling (#802)
  • db: Correct D1 migrations_dir path in wrangler.json (#814)
  • playground: Fix get todos database query (#819)
  • Fix incorrect license in README (#829)
  • db: Resolve @​nuxthub/db from rootDir for pnpm workspaces (#828)
  • db: Bundle cache schema entries (#833)
  • db: Respect explicit libsql driver on Cloudflare (#842)
  • db: Pass driver options to postgres-js (#844)

📖 Documentation

  • Fix typo in schema documentation (#807)
  • Add environments, CI/CD guide, and env vars reference (#804)
  • Add nuxt-studio (64f9105)
  • Make formatting in db migrate command usage consistant (#822)
  • Update migration handling for Cloudflare D1 (#848)
  • blob: Clarify nuxt image dev config (#851)
  • Fix typo in url (d4e24b3)

🏡 Chore

❤️ Contributors

... (truncated)

Commits
  • d4e24b3 docs: fix typo in url
  • 2a1bc5b fix(db): pass driver options to postgres-js (#844)
  • c8ebf42 docs(blob): clarify nuxt image dev config (#851)
  • 07547ca docs: update migration handling for Cloudflare D1 (#848)
  • db307b3 feat(db): use drizzle studio d1 driver (#846)
  • dfeed98 docs: make formatting in db migrate command usage consistant (#822)
  • a6eb5aa fix(db): respect explicit libsql driver on Cloudflare (#842)
  • d51b136 feat(db): add hub.db.applyMigrationsDuringDev: boolean option (#837)
  • 9ef85d6 fix(db): bundle cache schema entries (#833)
  • f0427fd feat(cli): add --force flag to skip confirmation when dropping all tables (...
  • Additional commits viewable in compare view

Updates tsdown from 0.19.0 to 0.21.0

Release notes

Sourced from tsdown's releases.

v0.21.0 - Notable Changes

Breaking Changes

Dependency options renamed to deps namespace

The dependency-related options have been moved under a new deps namespace with clearer names:

  • external -> deps.neverBundle
  • noExternal -> deps.alwaysBundle
  • inlineOnly -> deps.onlyAllowBundle
  • skipNodeModulesBundle -> deps.skipNodeModulesBundle

Before:

export default defineConfig({
  external: ['vue'],
  noExternal: ['lodash'],
})

After:

export default defineConfig({
  deps: {
    neverBundle: ['vue'],
    alwaysBundle: ['lodash'],
  },
})

The old options still work but are deprecated and will emit warnings.

failOnWarn default changed from 'ci-only' to false

If you relied on the previous behavior where warnings would fail the build in CI environments, you now need to explicitly set failOnWarn: true or failOnWarn: 'ci-only' in your config.

Node.js < 22.18.0 deprecated

tsdown now emits a deprecation warning when running on Node.js versions below 22.18.0. Plan to upgrade your Node.js version accordingly.

New Features

Experimental Node.js SEA executable bundling (exe)

tsdown can now bundle your TypeScript project into a standalone executable using Node.js Single Executable Applications (SEA). A new @tsdown/exe package provides cross-platform executable building support. See the exe documentation for details.

export default defineConfig({
  exe: true, // or { useCodeCache: true, useSnapshot: true }
</tr></table> 

... (truncated)

Commits
  • 5145496 chore: release v0.21.0
  • c5db6dc refactor(exe): improve nodeVersion type
  • ce7abe9 feat(exe): support latest and latest-lts for nodeVersion
  • 944e92a feat: support bundling .node files by default
  • 1183ad3 fix(css): remove empty js chunks (#799)
  • 0aae946 chore: upgrade rolldown
  • 9440739 chore: release v0.21.0-beta.5
  • d8a1f5c fix: resolve css files in node_modules (#795)
  • 0173c6e feat(exe)!: require Node >=25.7 and default format to esm (#798)
  • 288a5f0 feat(css): default css.transformer to lightningcss (#797)
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the node group with 2 updates: [@nuxthub/core](https://github.com/nuxt-hub/core) and [tsdown](https://github.com/rolldown/tsdown).


Updates `@nuxthub/core` from 0.10.6 to 0.10.7
- [Release notes](https://github.com/nuxt-hub/core/releases)
- [Changelog](https://github.com/nuxt-hub/core/blob/main/CHANGELOG.md)
- [Commits](nuxt-hub/core@v0.10.6...v0.10.7)

Updates `tsdown` from 0.19.0 to 0.21.0
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.19.0...v0.21.0)

---
updated-dependencies:
- dependency-name: "@nuxthub/core"
  dependency-version: 0.10.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node
- dependency-name: tsdown
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: node
...

Signed-off-by: dependabot[bot] <support@github.com>
@leonardocustodio leonardocustodio merged commit fe5da08 into main Mar 10, 2026
6 checks passed
@leonardocustodio leonardocustodio deleted the dependabot/npm_and_yarn/node-fd9fbb782f branch March 10, 2026 05:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant