Skip to content

chore(deps): bump the npm group in /docs with 7 updates - #208

Merged
ManukMinasyan merged 1 commit into
3.xfrom
dependabot/npm_and_yarn/docs/npm-06938b221b
Aug 30, 2026
Merged

chore(deps): bump the npm group in /docs with 7 updates#208
ManukMinasyan merged 1 commit into
3.xfrom
dependabot/npm_and_yarn/docs/npm-06938b221b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm group in /docs with 7 updates:

Package From To
@nuxt/image 1.11.0 2.1.0
@nuxt/scripts 0.12.2 1.3.8
@nuxt/ui 4.10.0 4.11.0
@unhead/vue 2.1.15 3.4.0
better-sqlite3 12.6.2 13.0.3
typescript 5.9.3 7.0.2
zod 4.3.6 4.4.3

Updates @nuxt/image from 1.11.0 to 2.1.0

Release notes

Sourced from @​nuxt/image's releases.

v2.1.0

v2.1.0 is the next minor release.

👀 Highlights

Nuxt Image 2.1 ships eight new image providers, a major upgrade to our image processing engine, and a bunch of fixes across existing providers.

🖼️ IPX v4

Under the hood, we've upgraded to IPX v4 which brings significant improvements:

  • Smaller bundles: IPX is now ESM-only with reduced dependency size
  • Stronger SVG security: SVG sanitization now always runs, regardless of optimization settings. This fixes a potential XSS vector where svgo: false would return untouched SVGs. The sanitizer now removes SMIL attribute injection, foreign content (<foreignObject>, <iframe>, etc.), and unsafe URIs across all elements
  • New image modifiers: opacity, brightness, saturation, hue, lightness, autoorient, dilate, erode, clahe, and linear
  • Better error messages: Invalid modifier arguments now return 400 errors with clear messages instead of cryptic 500s
  • Custom URL parsing: IPX now supports custom URL formats via the parseURL option

🌐 New Providers

This release adds support for eight new image optimization services:

🔧 Provider Improvements

  • Directus: Added support for sharp transforms and a key modifier for named presets (#2207)
  • Sanity: Support for absolute URLs with automatic project/dataset extraction (#2274), and a configurable baseURL for custom CDN setups (#2273)
  • AWS Amplify & Vercel: minimumCacheTTL is now configurable (#2278)

📦 Type Exports

NuxtImgProps and NuxtPictureProps are now exported from the runtime, making it easier to type your own components that wrap <NuxtImg> or <NuxtPicture> (#2115).

import type { NuxtImgProps, NuxtPictureProps } from '#image'

👉 Changelog

compare changes

🚀 Enhancements

... (truncated)

Commits
  • 05758b6 v2.1.0
  • 97d3758 chore: run module prepare in prepack
  • e529f37 ci: add workflow to comment on issues resolved in the latest release
  • 64b96c1 feat(deps): migrate to ipx v4 (#2094)
  • 100bed3 chore(deps): update nuxt framework to ^4.5.1 (#2282)
  • a670c04 chore(deps): update all non-major dependencies (#2267)
  • d875d84 chore(deps): update dependency @​noble/hashes to v2 (#2290)
  • a1500e6 ci: improve workflows (#2288)
  • 6f59ab1 docs(sanity): document baseURL option
  • 137ee63 fix(flyimg): encode all # characters in color values
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​nuxt/image since your current version.


Updates @nuxt/scripts from 0.12.2 to 1.3.8

Release notes

Sourced from @​nuxt/scripts's releases.

v1.3.8

   🐞 Bug Fixes

    View changes on GitHub

v1.3.7

   🐞 Bug Fixes

    View changes on GitHub

v1.3.6

   🐞 Bug Fixes

    View changes on GitHub

v1.3.5

   🐞 Bug Fixes

    View changes on GitHub

v1.3.4

   🐞 Bug Fixes

    View changes on GitHub

v1.3.3

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • 7947ae9 chore: release v1.3.8
  • be0ce7b fix(registry): don't declare the global Window via extends (1.x backport)...
  • 9acc5bf chore: release v1.3.7
  • 33fcdd0 fix(proxy): disable proxying for static deployments (1.x backport) (#877)
  • 8254150 chore: release v1.3.6
  • 77f1e40 fix(gtm): don't declare dataLayer on the global Window (1.x backport) (#865)
  • d4d3099 fix(proxy): report upstream failures as gateway errors (1.x backport) (#863)
  • 394e05c chore: release v1.3.5
  • e0888f5 fix(cloudflare): keep Undici out of Worker bundles (#860)
  • d07d933 chore: release v1.3.4
  • Additional commits viewable in compare view

Updates @nuxt/ui from 4.10.0 to 4.11.0

Release notes

Sourced from @​nuxt/ui's releases.

v4.11.0

✨ Highlights

↔️ Splitter component

A new Splitter component lets you build layouts with resizable panels separated by draggable handles, with min/max sizes, collapsible panels, nesting and vertical orientation:

<script setup lang="ts">
import type { SplitterItem } from '@nuxt/ui'
const items: SplitterItem[] = [
{ slot: 'sidebar', minSize: 15, maxSize: 40, defaultSize: 25 },
{ slot: 'main', defaultSize: 75 }
]
</script>
&lt;template>
<USplitter id="layout" :items="items" class="h-96">
&lt;template #sidebar>
Sidebar
</template>
\&lt;template #main&gt;
  Main
&lt;/template&gt;

</USplitter>
</template>

[!TIP] Set the id prop when rendering on the server so ids match on hydration, and auto-save-id to persist the layout to localStorage.

📊 ProgressGroup component

A new ProgressGroup component displays multiple values as segments of a single progress bar, with a legend listing each item. Items take any theme color or a CSS color, and the status prop shows the total:

<script setup lang="ts">
import type { ProgressGroupItem } from '@nuxt/ui'
const items: ProgressGroupItem[] = [
{ label: 'System', value: 24, color: 'neutral', icon: 'i-lucide-cog' },
{ label: 'Apps', value: 8, color: 'error', icon: 'i-lucide-app-window' },
{ label: 'Multimedia', value: 42, color: 'success', icon: 'i-lucide-film' }
]
</tr></table>

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.11.0 (2026-08-21)

Features

Bug Fixes

  • AuthForm: type submit payload with the schema output (#6816) (795c353)
  • Calendar: correct size scale (#6832) (29f9890)
  • CommandPalette: always escape search highlight to prevent XSS (#6741) (2a172ef)
  • components: resolve theme props consistently in form controls (#6834) (7c74269)
  • ContentToc: prevent list from collapsing (#6778) (706cfd0)
  • Editor: ignore updates without document changes (#6807) (7e615e1)
  • Icon: render bundled icons during SSR in Vue (#6841) (545f9e3)
  • locale: correct native names and tajik language code (#6823) (e333e8d)
  • locale: correct slide placeholder casing in lb (#6822) (10ec237)
  • Marquee: use logical properties and drop broken vertical RTL animation (#6833) (9b08a84)
  • Modal: emit transition events from overlay when scrollable (#6786) (5afbd5c)
  • Slider: bind form aria attributes on thumbs instead of root (#6768) (f3c2ac2)
  • Slider: forward aria attributes to the thumb (#6848) (d6c3802)
  • theme: blank top-level base in applyUnstyled (#6825) (3e89ea7)
  • theme: keep variants when replacing slot classes in app config (#6824) (0fabbe5)
  • Theme: merge class from props with the component class (#6842) (731ff26)
  • theme: replace deprecated bare tailwind aliases (#6865) (d4f2ca0)
  • theme: respect reduced motion on remaining movement transitions (ce5b1df)
  • theme: unify motion easing and respect prefers-reduced-motion (#6742) (735b264)
  • Tree: use logical padding for indentation (#6815) (958a3ba)

Performance Improvements

  • Button/Select/SelectMenu/InputMenu: narrow reactive dependencies (#6736) (6bd1dfc)
  • components: memoize tv slot invocations with simple args (#6737) (4200e80)
Commits
  • f62aa14 chore(release): v4.11.0
  • d6c3802 fix(Slider): forward aria attributes to the thumb (#6848)
  • 07f3fe8 feat(CheckboxGroup/RadioGroup): support icon in items (#6726)
  • a7f26a3 docs(showcase): add brusnika-lms.com (#6863)
  • d4f2ca0 fix(theme): replace deprecated bare tailwind aliases (#6865)
  • e2a253e docs(header): prevent focus on toggle button animations
  • be58f3f docs(table): pin TanStack Table links to v8 (#6864)
  • 545f9e3 fix(Icon): render bundled icons during SSR in Vue (#6841)
  • 14ac243 feat(ProgressGroup): new component (#6860)
  • a630c94 docs(showcase): add triadtrainer.vercel.app
  • Additional commits viewable in compare view

Updates @unhead/vue from 2.1.15 to 3.4.0

Release notes

Sourced from @​unhead/vue's releases.

v3.4.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.3.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.3.1

   🐞 Bug Fixes

... (truncated)

Commits
  • 1132b9f chore: release v3.4.0
  • 18a55c1 feat(validate): flag streamed head tags that bots never see (#947)
  • d253b54 feat(stream): render Streamed Body Tags before body close (#960)
  • 791f03d fix(stream): stop wrapStream dropping late head entries (#954)
  • e5f5c38 fix(stream): module mode lost every streamed head tag (#950)
  • ea4d6e2 chore: release v3.3.2
  • cc1e03b chore: release v3.3.1
  • 36dcf31 fix(scripts): support source-less SDK loaders (#858)
  • acae87f chore: release v3.3.0
  • a834ef6 fix(vue): reject ignored server prop resolvers (#876)
  • Additional commits viewable in compare view

Updates better-sqlite3 from 12.6.2 to 13.0.3

Release notes

Sourced from better-sqlite3's releases.

v13.0.3

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v13.0.2...v13.0.3

v13.0.2

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v13.0.1...v13.0.2

v13.0.1

Full Changelog: WiseLibs/better-sqlite3@v13.0.0...v13.0.1

Fixed a regression in parameter binding where it would be overly strict and reject plain objects from other realms (e.g., in jest tests).

v13.0.0

Version 13.0.0 marks a major milestone, as it's the first version of better-sqlite3 to run on the N-API. This means prebuilt binaries should theoretically work across different versions of Node.js and Electron, and perhaps even other runtimes like Bun. As a result, we've removed the deprecated prebuild-install dependency, and now prebuilt binaries are published directly with the better-sqlite3 code itself. If your platform/architecture doesn't have a prebuilt binary, it should compile during install as before.

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v12.12.0...v13.0.0

v12.12.0

What's Changed

[!WARNING]

BREAKING: Starting with Electron v43, binary assets will require glibc 2.41 or higher on Linux hosts.

... (truncated)

Commits

Updates typescript from 5.9.3 to 7.0.2

Release notes

Sourced from typescript's releases.

TypeScript 7.0.2

https://devblogs.microsoft.com/typescript/announcing-typescript-7-0/

This tag was originally released at: https://github.com/microsoft/typescript-go/releases/tag/typescript%2Fv7.0.2

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0.1 RC

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 1e4744d Merge branch 'main' into ts7-release
  • a5a219cmicrosoft/typescript-go#4558
  • ecfe30d Update status localization
  • 5de25b5 Hide executable name in TypeScript status
  • d7ce74a Show bundled TypeScript version for packaged servers
  • 29be66a Correct TS 7 release version to 7.0.2
  • ed2bd1b Merge branch 'main' into ts7-release
  • 8873075 Bump the github-actions group across 1 directory with 3 updates (microsoft/ty...
  • 9427131 Set up stable / nightly extension split, other prep (microsoft/typescript-go#...
  • d4eaca5microsoft/typescript-go#4549
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


Updates zod from 4.3.6 to 4.4.3

Release notes

Sourced from zod's releases.

v4.4.3

Commits:

  • 4c2fa95ce3f3390fbc522324e406b4e9e89b88f9 docs: use Zernio primary wordmark for gold sponsor logo
  • 2aeec83eb135e3a83756e973ef44845fc5a455d2 docs: prune lapsed gold sponsors and rebalance logo sizing
  • 7391be88ac1ee5cd02057f5ccc012a1f5df4efd0 docs: prune lapsed silver/bronze sponsors and add active ones
  • 2c703322a21b4e2b12f33f49ea8430c451a68b4f docs: normalize bronze sponsor logos to github avatar pattern
  • 9195250cab0e7950efe39c3926d6c203b4b0a170 docs: remove Mintlify from bronze sponsors (churned)
  • b8dffe9e62f17e6571e6249d05cc5102b54d94e4 docs: remove Numeric and Speakeasy (2+ missed monthly cycles)
  • 1cab69383fcdeae2a366d5e2a2fc4d8fc765d168 fix(v4): restore catch handling for absent object keys (#5937) (#5939)
  • c2be4f819064eed62c7c350a2d399b5faecd15f8 fix(v4): generalize optin/fallback to transform; restore preprocess on absent keys (#5941)
  • f3c9ec03ba7a28ae72d25cc295f38674bee0f559 4.4.3
  • 1fb56a5c18c27102dbc92260a4007c7732a0ccca docs: document release procedure in AGENTS.md

v4.4.2

Commits:

  • 0c62df0ea19fd05abdf90473e9eef7eea530fab2 Clean up docs navigation and stale labels (#5901)
  • 20cc794895cc8604fe0c87d83a5d1c3f89fad0ac chore: add security policy and refresh tooling deps
  • 6fbe07b0177efdd1bf1c0b05160e70d7a0702337 fix(docs): heading anchor links now include the hash so it doesnt scoll all the way up, follows navbar logic (#5791)
  • 4bbed1b1c73eca4ce9e59b1189ed236aa6c8b5bd Tighten discriminated union option typing
  • bbac3e567e7fccfaaf7cdc97f1ce30c295e2c908 Update PR guidance for agents
  • cf0dc942a32805c292fff59ade20a7ace980735a Merge remote-tracking branch 'origin/main' into fix-discriminated-union-key-constraint
  • 292c894a5fd2aa42e527900b83d8d7a3009a709c docs: add Zernio gold sponsor
  • 1fc9f311c28dcf80d0bb5a36b177086cbc3d8eca docs: document codec inversion
  • 1373c85da9aeff704a9762d27bc58699618aefb7 docs: remove AI disclosure guidance
  • e20d02b473c08e3a4e557bc610b1b5fac079b649 chore: ignore triage notes
  • e58ea4d91b1dfe8194b73508203213cbc7e9c936 docs: test Zod Mini tab code heights
  • 905761a5d127e8d5dd2ebb3bc88c75cb0b8149ff docs: document preprocess input type narrowing
  • bf64bac850d4dee2b7dde7e64909d5d796d32043 chore: tighten test guidance in AGENTS.md
  • 8ec4e73f4c4693b6361ad591be40fb41eb8a9f95 chore: update play.ts scratch
  • 02c2baf7d0d615872fa4528a8020603b71211702 Make z.preprocess defer optionality to inner schema (#5929)
  • 88015df8e25c44fb5385eb3ef28935119cd5edea fix(docs): drop deprecated baseUrl from tsconfig
  • c59d4474e3b4cad1b323462186cf607178ce8267 4.4.2

v4.4.1

Commits:

  • 481f7be4238c83ed58183f921b2646f340a91c6a ci: gate release publishing on full test workflow
  • 95ccab423aec720b2523c3a64cdc7e3204537cc7 test(v3): restore optional undefined expectations
  • cede2c63739a5823d6aa5093d291e9a111da943d fix(v4): reject tuple holes before required defaults (#5900)
  • edd0bf0f5ada4a8dc581c259407d7bbad0a71ea7 release: 4.4.1
  • 180d83d1dbe6a59260710cc8637a3dea2281ee56 docs: remove Jazz featured sponsor

v4.4.0

4.4.0

This is a minor release with a wide set of correctness and soundness fixes. Some fixes intentionally make Zod stricter, so code that depended on previously accepted invalid or ambiguous inputs may need small updates.

Potentially breaking bug fixes

... (truncated)

Commits
  • 1fb56a5 docs: document release procedure in AGENTS.md
  • f3c9ec0 4.4.3
  • c2be4f8 fix(v4): generalize optin/fallback to transform; restore preprocess on absent...
  • 1cab693 fix(v4): restore catch handling for absent object keys (#5937) (#5939)
  • b8dffe9 docs: remove Numeric and Speakeasy (2+ missed monthly cycles)
  • 9195250 docs: remove Mintlify from bronze sponsors (churned)
  • 2c70332 docs: normalize bronze sponsor logos to github avatar pattern
  • 7391be8 docs: prune lapsed silver/bronze sponsors and add active ones
  • 2aeec83 docs: prune lapsed gold sponsors and rebalance logo sizing
  • 4c2fa95 docs: use Zernio primary wordmark for gold sponsor logo
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for zod since your current version.


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 npm group in /docs with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@nuxt/image](https://github.com/nuxt/image) | `1.11.0` | `2.1.0` |
| [@nuxt/scripts](https://github.com/nuxt/scripts/tree/HEAD/packages/script) | `0.12.2` | `1.3.8` |
| [@nuxt/ui](https://github.com/nuxt/ui) | `4.10.0` | `4.11.0` |
| [@unhead/vue](https://github.com/unjs/unhead/tree/HEAD/packages/vue) | `2.1.15` | `3.4.0` |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `12.6.2` | `13.0.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.3` |


Updates `@nuxt/image` from 1.11.0 to 2.1.0
- [Release notes](https://github.com/nuxt/image/releases)
- [Changelog](https://github.com/nuxt/image/blob/main/CHANGELOG.md)
- [Commits](nuxt/image@v1.11.0...v2.1.0)

Updates `@nuxt/scripts` from 0.12.2 to 1.3.8
- [Release notes](https://github.com/nuxt/scripts/releases)
- [Changelog](https://github.com/nuxt/scripts/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/scripts/commits/v1.3.8/packages/script)

Updates `@nuxt/ui` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.10.0...v4.11.0)

Updates `@unhead/vue` from 2.1.15 to 3.4.0
- [Release notes](https://github.com/unjs/unhead/releases)
- [Commits](https://github.com/unjs/unhead/commits/v3.4.0/packages/vue)

Updates `better-sqlite3` from 12.6.2 to 13.0.3
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.6.2...v13.0.3)

Updates `typescript` from 5.9.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)

Updates `zod` from 4.3.6 to 4.4.3
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.6...v4.4.3)

---
updated-dependencies:
- dependency-name: "@nuxt/image"
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@nuxt/scripts"
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@nuxt/ui"
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@unhead/vue"
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: better-sqlite3
  dependency-version: 13.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: zod
  dependency-version: 4.4.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 29, 2026
@ManukMinasyan
ManukMinasyan merged commit 682936a into 3.x Aug 30, 2026
4 checks passed
@ManukMinasyan
ManukMinasyan deleted the dependabot/npm_and_yarn/docs/npm-06938b221b branch August 30, 2026 18:16
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant