Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 3 updates - #103

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/docs/minor-and-patch-9fc839baf5
Open

chore(deps): bump the minor-and-patch group across 1 directory with 3 updates#103
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/docs/minor-and-patch-9fc839baf5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 3 updates in the /docs directory: @nuxtjs/i18n, docus and nuxt.

Updates @nuxtjs/i18n from 10.4.0 to 10.6.0

Release notes

Sourced from @​nuxtjs/i18n's releases.

v10.6.0

This release is mostly about performance, and about making the domain features behave consistently.

Faster builds and faster SSR

Locale messages are no longer bundled into your server build as JavaScript, no longer shipped as client chunks when they are served from the messages endpoint, and no longer copied on every server-rendered request.

Building a Nuxt app with 10 locales of around 2,000 messages each and 10 pages:

10.5.0 10.6.0
build time 9.2s 5.7s 38% faster
peak build memory 3.6 GB 2.5 GB 30% less
build output added by the module 12.9 MB 3.2 MB 75% smaller
SSR throughput 785 req/s 1722 req/s 2.2× higher

Median of three runs on an M4 Pro with Nuxt 4.5; throughput over 10 concurrent connections. The same app without the module builds in 3.4s and outputs 3.2 MB.

How much of this you notice depends on how many messages your app loads: a few locales with a few hundred messages each will barely differ, larger message sets gain the most. It covers messages the module can read while building — .json, .yaml and .json5 files. Locale files written as .ts or .js produce their messages at runtime, so both their build and their SSR cost stay as they were. Apps that previously ran out of memory building large message sets should now complete.

This should work without any changes on your side. The new message handling can be turned off with experimental.optimizeMessageBundling: false if you run into trouble — and if you do, please let us know so we can sort it out.

Domains

differentDomains and multiDomainLocales now agree on which locale each domain serves, which URL a locale is advertised on, and where a visitor goes when the locale they asked for lives on another domain. hreflang and canonical links name one domain per locale, so every domain in your setup describes the same set of pages instead of each claiming the languages for itself.

10.5.0 could also stop serving a locale at its own domain root, redirecting / to the prefixed path and returning 404 for unprefixed paths. A domain that serves exactly one locale is treated as that locale's default again, so domainDefault is not needed for it.

Changelog

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Changelog

Sourced from @​nuxtjs/i18n's changelog.

v10.6.0 (2026-07-30T10:49:10Z)

This changelog is generated by GitHub Releases

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v10.5.0 (2026-07-21T14:05:18Z)

... (truncated)

Commits
  • 4c36bc9 release: v10.6.0
  • d17b9be refactor(routing): drop the unreachable on-host prefix strip (#4111)
  • ca32d4d docs: describe what the domain override cannot change and which links cross o...
  • 285f2d6 test: poll message counts instead of reading them once after a locale fetch (...
  • 187b364 fix(domain): serve every locale on a host matching no configured domain (#4108)
  • efb9d50 fix(domain): resolve a domain serving a single locale as its default (#4107)
  • 21e1ccd fix(seo): resolve alternate and canonical links from one domain per locale (#...
  • d6930a6 fix(types): prevent duplicate tsconfig paths for aliased deps (#4031)
  • 03eba9f fix(domain): redirect detection to the domain serving the detected locale (#4...
  • a4eee0f fix: keep params encoded when resolving a localized route by path (#4104)
  • Additional commits viewable in compare view

Updates docus from 5.12.3 to 5.13.0

Release notes

Sourced from docus's releases.

v5.13.0

🚀 Features

  • agentic: add vary header to markdown negotiation (#1431) (545b05f)
  • assistant: allow agnostic provider (#1427) (58ad18f)
  • i18n: add Traditional Chinese (zh-TW) locale (#1426) (c6de137)
  • modules: agentic 404 to answer agents (#1429) (dab0da0)
  • seo: add configurable identity schema to JSON-LD (#1433) (c55b488)

🐛 Bug Fixes

  • assistant: local url (#1425) (677b6af)
  • assistant: pass value prop to Comark 0.6 (#1430) (2d1162b)
  • docs: correct mdc code fences in components page (#1411) (c90753b)
  • docs: wrong link path in index.md for installation page (#1409) (87ae614)

💚 New Contributors

📚 New documentation

Full Changelog: nuxt-content/docus@v5.12.3...v5.13.0

Changelog

Sourced from docus's changelog.

5.13.0 (2026-08-28)

Features

  • agentic: add vary header to markdown negotiation (#1431) (545b05f)
  • assistant: allow agnostic provider (#1427) (58ad18f)
  • i18n: add Traditional Chinese (zh-TW) locale (#1426) (c6de137)
  • modules: agentic 404 to answer agents (#1429) (dab0da0)
  • seo: add configurable identity schema to JSON-LD (#1433) (c55b488)

Bug Fixes

  • assistant: local url (#1425) (677b6af)
  • assistant: pass value prop to Comark 0.6 (#1430) (2d1162b)
  • docs: correct mdc code fences in components page (#1411) (c90753b)
  • docs: wrong link path in index.md for installation page (#1409) (87ae614)
Commits
  • fca5668 chore(version): release v5.13.0
  • 58ad18f feat(assistant): allow agnostic provider (#1427)
  • 6646684 docs(agents): improvements
  • c55b488 feat(seo): add configurable identity schema to JSON-LD (#1433)
  • 1fabc0c docs(llms): improvements (#1432)
  • 545b05f feat(agentic): add vary header to markdown negotiation (#1431)
  • dab0da0 feat(modules): agentic 404 to answer agents (#1429)
  • 2d1162b fix(assistant): pass value prop to Comark 0.6 (#1430)
  • c6de137 feat(i18n): add Traditional Chinese (zh-TW) locale (#1426)
  • b36f029 docs(landing): add spotlight effect to ai assistant card (#1419)
  • Additional commits viewable in compare view

Updates nuxt from 4.4.8 to 4.5.2

Release notes

Sourced from nuxt's releases.

v4.5.2

4.5.2 is the next patch release.

👉 Changelog

compare changes

🔥 Performance

  • nuxt,kit: Skip rewriting unchanged generated files (#35902)
  • kit,nuxt: Use lazy imports to improve parsing speed (#35901)
  • vite: Skip html entry probes in bare-import resolver (#35907)
  • nuxt: Reuse app and component scans for unchanged structures (#35912)

🩹 Fixes

  • vite: Resolve client manifest path from resolved config (#35883)
  • nuxt: Use client-side navigation for links inside islands (#35806)
  • nuxt: Generate types for route params defined with definePageMeta (#35857)
  • nuxt: Serialize island payloads for components with underscores in keys (#35807)
  • nitro: Dedupe island renders when prerendering (#35835)
  • nuxt: Drop prefetch hints for never-hydrated chunks (#35812)
  • vite: Use same asset filenames for worker builds (#35866)
  • nitro: Reject non-object island props (#35867)
  • nuxt: Support options api in v-for islands transform (#35877)
  • nuxt: Improve page meta extraction + performance (#35869)
  • nuxt: Set build outputs when restoring vue cache (#35895)
  • kit: Honour nested apply and applyToEnvironment in vite wrapper (#35899)
  • nuxt: Re-check for preview mode after prerendered page hydration (#35886)
  • kit,nuxt,vite: Handle missed chokidar watch events (#35887)
  • nuxt: Settle asyncData status when bailing (#35908)
  • kit: Clone resolved config with klona rather than klona/full (#35914)
  • kit: Honour nested plugins' enforce in vite wrapper (#35916)
  • nuxt: Collect build cache once build outputs are final (#35929)
  • vite: Resolve vite env api sourcemaps in vite-node (#35758)
  • nuxt: Don't warn about missing <NuxtPage> on nav + with slot (#35948)
  • kit: Prepend vite environment wrapper plugin when prepend is set (#35942)
  • nuxt: Depend on rolldown as a peer to reuse vite's copy (3fda97f60)
  • nitro: Define import.meta.test for server code (#35987)
  • nuxt: Match route rules against decoded paths (9123ed850)

💅 Refactors

  • nuxt: Use vue-component-type-helpers instead of locally maintained helpers (#35840)
  • nuxt: Use isReferenceIdentifier in page-meta plugin (#35882)

📖 Documentation

  • Sync mcp server page with live tools and providers (#35856)
  • Add server components guide and mostly-static site recipe (#35778)
  • Minor changes (#33479)
  • Add accessible routing guide (#34796)
  • Update testing guide to test-utils v4.1.0 (#35873)
  • Update .env provider reference from dotenv to c12 (#35911)
  • Add note to avoid using defineVitestProject in e2e tests (#35926)
  • Update roadmap (f6e6027fe)

📦 Build

  • ui-templates: Copy generated templates from resolved output dir (#35921)

... (truncated)

Commits
  • e2d3a39 v4.5.2
  • 9123ed8 fix(nuxt): match route rules against decoded paths
  • 2c38086 chore: bump nuxt rolldown peer dep to match unctx
  • 3fda97f fix(nuxt): depend on rolldown as a peer to reuse vite's copy
  • b960d36 refactor(nuxt): use isReferenceIdentifier in page-meta plugin (#35882)
  • 1f52b61 fix(nuxt): don't warn about missing \<NuxtPage> on nav + with slot (#35948)
  • c7604bd fix(nuxt): collect build cache once build outputs are final (#35929)
  • ba4fc0a perf(nuxt): reuse app and component scans for unchanged structures (#35912)
  • d7f5f07 fix(nuxt): settle asyncData status when bailing (#35908)
  • 2ca27f1 perf(kit,nuxt): use lazy imports to improve parsing speed (#35901)
  • 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

Summary by cubic

Updates @nuxtjs/i18n to 10.6.0, docus to 5.13.0, and nuxt to 4.5.2 in the docs app. The i18n upgrade enables optimized message bundling by default, so locale messages are no longer bundled into the server build and are served from the messages endpoint instead.

Migration

  • If the docs build or SSR breaks, disable the new bundling with experimental.optimizeMessageBundling: false.

Written for commit 7c6f091. Summary will update on new commits.

… updates

Bumps the minor-and-patch group with 3 updates in the /docs directory: [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n), [docus](https://github.com/nuxt-content/docus) and [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt).


Updates `@nuxtjs/i18n` from 10.4.0 to 10.6.0
- [Release notes](https://github.com/nuxt-modules/i18n/releases)
- [Changelog](https://github.com/nuxt-modules/i18n/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/i18n@v10.4.0...v10.6.0)

Updates `docus` from 5.12.3 to 5.13.0
- [Release notes](https://github.com/nuxt-content/docus/releases)
- [Changelog](https://github.com/nuxt-content/docus/blob/main/CHANGELOG.md)
- [Commits](nuxt-content/docus@v5.12.3...v5.13.0)

Updates `nuxt` from 4.4.8 to 4.5.2
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v4.5.2/packages/nuxt)

---
updated-dependencies:
- dependency-name: "@nuxtjs/i18n"
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: docus
  dependency-version: 5.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: nuxt
  dependency-version: 4.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-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 Sep 3, 2026
@greptile-apps

greptile-apps Bot commented Sep 3, 2026

Copy link
Copy Markdown

PR author is in the excluded authors list.

@vercel

vercel Bot commented Sep 3, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
asana Ready Ready Preview Sep 3, 2026 5:47am UTC

Request Review

@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updateddocus@​5.12.3 ⏵ 5.13.088 +610010091 -780
Updated@​nuxtjs/​i18n@​10.4.0 ⏵ 10.6.09810093 +197 +5100
Updatednuxt@​4.4.8 ⏵ 4.5.297100 +50100 +194 -1100

View full report

@socket-security

Copy link
Copy Markdown

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
Obfuscated code: npm @emnapi/runtime is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: docs/package.jsonnpm/docus@5.13.0npm/@emnapi/runtime@1.11.1

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@emnapi/runtime@1.11.1. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

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