Skip to content

chore(deps): update all non-major dependencies #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 28, 2025

This PR contains the following updates:

Package Change Age Confidence
@nuxt/ui (source) ^3.2.0 -> ^3.3.0 age confidence
eslint (source) ^9.31.0 -> ^9.32.0 age confidence
eslint-plugin-vue (source) ^10.3.0 -> ^10.4.0 age confidence
pnpm (source) 10.13.1 -> 10.14.0 age confidence
typescript (source) ^5.8.3 -> ^5.9.2 age confidence
typescript-eslint (source) ^8.37.0 -> ^8.38.0 age confidence
vue (source) ^3.5.17 -> ^3.5.18 age confidence

Release Notes

nuxt/ui (@​nuxt/ui)

v3.3.0

Compare Source

Features
Bug Fixes
  • Button/Link: merge active-class / inactive-class with app config (#​4446) (9debce7)
  • Button: add active styles to behave like hover on mobile (df8f202), closes #​991
  • Carousel/Tree: add type to button elements for accessibility (#​4493) (fc24e03)
  • Carousel: add aria-current attribute to active dot (#​4447) (1ba8a55)
  • Carousel: improve accessibility (55e06e9), closes #​4494
  • Carousel: resolve plugins with page transitions (#​4380) (3b67d54)
  • ColorPicker: update color conversion logic (#​4550) (6b6ec8c)
  • CommandPalette: remove rtl:space-x-reverse from label (#​4576) (4682ded)
  • defineShortcuts: allow extra keys to be combined with shift (#​4456) (772631c)
  • defineShortcuts: always pass event to shotcut handler (#​4516) (ef473c3)
  • FileUpload: handle RTL mode (#​4585) (02161ed)
  • FormField: improve error type with boolean (a4d0ca7), closes #​4496
  • FormField: resolve minor accessibility and rendering issues (#​4515) (c64c4cd)
  • InputMenu/SelectMenu: filter null items in search (488707e)
  • InputMenu/SelectMenu: improve display value without valueKey (4d4234d), closes #​4528
  • InputMenu/SelectMenu: only filter non-null fields (c92f908), closes #​4509
  • InputMenu: reset search term on mounted (cb160e6), closes #​3993
  • module: merge user's options when installing modules (78f92a2)
  • NavigationMenu/Tabs: display badge when not undefined (b22891a)
  • NavigationMenu/Tabs: proxy fallthrough attributes (836f748)
  • RadioGroup: improve type safety for normalizeItem function (#​4535) (bb99345)
  • Table: add scope attribute to headers (#​4417) (347694b)
  • Table: handle reactive columns (#​4412) (4ce6540)
  • theme: colors autocomplete in app config (752e2b6)
  • Toast: only show progress when open (1d052ec), closes #​4464
  • Tooltip: display separator only with text and kbds (#​4570) (63476e5)
  • useLocale: ensure inject defaults to en (df1abf1), closes #​4579
  • useLocale: prevent hydration error when switching locale (15c7991)
  • useOverlay: don't use patch when passing props to open (#​4497) (5ad7dab)
  • useOverlay: improve props handling by merging existing and new (#​4478) (6519a74)
  • useOverlay: support infering close argument from complex emits (#​4414) (d7aefa5)
  • vue: handle override when importing from @nuxt/ui (57a5037)
  • vue: stub clearError (d8160ba)
eslint/eslint (eslint)

v9.32.0

Compare Source

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.4.0

Compare Source

Minor Changes
Patch Changes
  • Resolved TypeScript compatibility issues introduced by eslint-typegen (#​2790)

  • Fixed inconsistent quotes in vue/block-lang error messages (#​2805)

pnpm/pnpm (pnpm)

v10.14.0

Compare Source

Minor Changes
  • Added support for JavaScript runtime resolution

    Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically.

    Usage example:

    {
      "devEngines": {
        "runtime": {
          "name": "node",
          "version": "^24.4.0",
          "onFail": "download" (we only support the "download" value for now)
        }
      }
    }

    How it works:

    1. pnpm install resolves your specified range to the latest matching runtime version.
    2. The exact version (and checksum) is saved in the lockfile.
    3. Scripts use the local runtime, ensuring consistency across environments.

    Why this is better:

    1. This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion)
    2. Supports version ranges (not just a fixed version).
    3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
    4. It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.
    5. For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.

    Related PR: #​9755.

  • Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #​7510.

Patch Changes
  • Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc.
  • The integrities of the downloaded Node.js artifacts are verified #​9750.
  • Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #​9719.
  • pnpm install --prod should removing hoisted dev dependencies #​9782.
  • Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install.
  • Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.
microsoft/TypeScript (typescript)

v5.9.2

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.38.0

Compare Source

🩹 Fixes
  • typescript-eslint: error on nested extends in tseslint.config() (#​11361)
  • typescript-eslint: infer tsconfigRootDir with v8 API (#​11412)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

vuejs/core (vue)

v3.5.18

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

codesandbox bot commented Jul 28, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

cloudflare-workers-and-pages bot commented Jul 28, 2025

Deploying nuxt-ui-vue-starter with  Cloudflare Pages  Cloudflare Pages

Latest commit: 6f1e639
Status: ✅  Deploy successful!
Preview URL: https://ecc8d890.nuxt-ui-vue-starter.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.nuxt-ui-vue-starter.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 81d59ce to 00926a8 Compare July 31, 2025 14:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 00926a8 to 6f1e639 Compare July 31, 2025 21:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
0 participants