Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 19, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@antfu/eslint-config ^7.0.1^7.2.0 age confidence devDependencies minor
@bomb.sh/tab ^0.0.11^0.0.12 age confidence dependencies patch
@bomb.sh/tab ^0.0.11^0.0.12 age confidence devDependencies patch
@clack/prompts (source) 1.0.0-alpha.91.0.0 age confidence dependencies patch
@clack/prompts (source) 1.0.0-alpha.91.0.0 age confidence devDependencies patch
@nuxt/eslint-config (source) ^1.12.1^1.13.0 age confidence devDependencies minor
CodSpeedHQ/action v4.7.0v4.10.1 age confidence action minor
actions/checkout v6.0.1v6.0.2 age confidence action patch
citty ^0.1.6^0.2.0 age confidence dependencies minor
citty ^0.1.6^0.2.0 age confidence devDependencies minor
deno (source) 2.6.52.6.6 age confidence uses-with patch
eslint-plugin-jsdoc 62.1.062.4.1 age confidence resolutions minor
h3-next (source) ^2.0.1-rc.8^2.0.1-rc.11 age confidence devDependencies patch
knip (source) ^5.82.0^5.82.1 age confidence devDependencies patch
nitro (source) ^3.0.1-alpha.1^3.0.1-alpha.2 age confidence devDependencies patch
nypm ^0.6.2^0.6.4 age confidence dependencies patch
nypm ^0.6.2^0.6.4 age confidence devDependencies patch
perfect-debounce ^2.0.0^2.1.0 age confidence dependencies minor
perfect-debounce ^2.0.0^2.1.0 age confidence devDependencies minor
pnpm (source) 10.28.010.28.2 age confidence packageManager patch
rollup (source) ^4.55.2^4.57.0 age confidence devDependencies minor
srvx (source) ^0.10.0^0.10.1 age confidence dependencies patch
srvx (source) ^0.10.0^0.10.1 age confidence devDependencies patch
tsdown (source) ^0.19.0^0.20.1 age confidence devDependencies minor
undici (source) ^7.18.2^7.19.2 age confidence devDependencies minor

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v7.2.0

Compare Source

   🚀 Features
    View changes on GitHub

v7.1.0

Compare Source

   🚀 Features
    View changes on GitHub
bombshell-dev/tab (@​bomb.sh/tab)

v0.0.12

Compare Source

Patch Changes
  • 23a6ef9: Update fish shell completion script to match latest Cobra output. (#​99)
bombshell-dev/clack (@​clack/prompts)

v1.0.0

Compare Source

Major Changes
Minor Changes
  • 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.

  • 7bc3301: Prompts now have a userInput stored separately from their value.

  • 8409f2c: feat: add styleFrame option for spinner

  • 2837845: Adds suggestion and path prompts

  • 99c3530: Adds format option to the note prompt to allow formatting of individual lines

  • 0aaee4c: Added new taskLog prompt for log output which is cleared on success

  • 729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the updateSettings function to support multilingual CLIs.

    This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.

    // Per-instance customization
    const spinner = prompts.spinner({
      cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish
      errorMessage: "Se produjo un error", // "An error occurred" in Spanish
    });
    
    // Global customization via updateSettings
    prompts.updateSettings({
      messages: {
        cancel: "Operación cancelada", // "Operation cancelled" in Spanish
        error: "Se produjo un error", // "An error occurred" in Spanish
      },
    });
    
    // Settings can now be accessed directly
    console.log(prompts.settings.messages.cancel); // "Operación cancelada"
    
    // Direct options take priority over global settings
    const spinner = prompts.spinner({
      cancelMessage: "Cancelled", // This will be used instead of the global setting
    });
  • 44df9af: Adds a new groupSpacing option to grouped multi-select prompts. If set to an integer greater than 0, it will add that number of new lines between each group.

  • 55645c2: Support wrapping autocomplete and select prompts.

  • 9e5bc6c: Add support for signals in prompts, allowing them to be aborted.

  • f2c2b89: Adds AutocompletePrompt to core with comprehensive tests and implement both autocomplete and autocomplete-multiselect components in prompts package.

  • 38019c7: Updates the API for stopping spinners and progress bars to be clearer

    Previously, both the spinner and progress bar components used a single stop method that accepted a code to indicate success, cancellation, or error. This update separates these into distinct methods: stop(), cancel(), and error():

    const spinner = prompts.spinner();
    spinner.start();
    
    // Cancelling a spinner
    - spinner.stop(undefined, 1);
    + spinner.cancel();
    
    // Stopping with an error
    - spinner.stop(undefined, 2);
    + spinner.error();

    As before, you can pass a message to each method to customize the output displayed:

    spinner.cancel("Operation cancelled by user");
    progressBar.error("An error occurred during processing");
  • c45b9fb: Adds support for detecting spinner cancellation via CTRL+C. This allows for graceful handling of user interruptions during long-running operations.

  • f10071e: Using the group method, task logs can now have groups which themselves can have scrolling windows of logs.

  • df4eea1: Remove suggestion prompt and change path prompt to be an autocomplete prompt.

  • 76fd17f: Added new box prompt for rendering boxed text, similar a note.

  • 9a09318: Adds new progress prompt to display a progess-bar

  • 1604f97: Add clearOnError option to password prompt to automatically clear input when validation fails

  • 9bd8072: Add a required option to autocomplete multiselect.

  • 19558b9: Added support for custom frames in spinner prompt

Patch Changes
  • 46dc0a4: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • aea4573: Clamp scrolling windows to 5 rows.
  • bfe0dd3: Prevents placeholder from being used as input value in text prompts
  • 55eb280: Fix placeholder rendering when using autocomplete.
  • 4d1d83b: Fixes rendering of multi-line messages and options in select prompt.
  • 6176ced: Add withGuide support to note prompt
  • 7b009df: Fix spinner clearing too many lines upwards when non-wrapping.
  • 43aed55: Change styling of disabled multi-select options to have strikethrough.
  • 17342d2: Exposes a new SpinnerResult type to describe the return type of spinner
  • 282b39e: Wrap spinner output to allow for multi-line/wrapped messages.
  • 2feaebb: Fix duplicated logs when scrolling through options with multiline messages by calculating rowPadding dynamically based on actual rendered lines instead of using a hardcoded value.
  • 69681ea: Strip destructive ANSI codes from task log messages.
  • b0fa7d8: Add support for wrapped messages in multi line prompts
  • 9999adf: fix note component overflow bug
  • 6868c1c: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • 7df841d: Removed all trailing space in prompt output and fixed various padding rendering bugs.
  • 2839c66: fix(note): hard wrap text to column limit
  • 7a556ad: Updates all prompts to accept a custom output and input stream
  • 17d3650: Use a default import for picocolors to avoid run time errors in some environments.
  • 7cc8a55: Messages passed to the stop method of a spinner no longer have dots stripped.
  • b103ad3: Allow disabled options in multi-select and select prompts.
  • 71b5029: Add missing nullish checks around values.
  • 1a45f93: Switched from wrap-ansi to fast-wrap-ansi
  • f952592: Fixes missing guide when rendering empty log lines.
  • 372b526: Add clear method to spinner for stopping and clearing.
  • d25f6d0: fix(note, box): handle CJK correctly
  • 94fee2a: Changes placeholder to be a visual hint rather than a tabbable value.
  • 7530af0: Fixes wrapping of cancelled and success messages of select prompt
  • 4c89dd7: chore: use more accurate type to replace any in group select
  • 0b852e1: Handle stop calls on spinners which have not yet been started.
  • 42adff8: fix: add missing guide line in autocomplete-multiselect
  • 8e2e30a: fix: fix autocomplete bar color when validate
  • 2048eb1: Fix spinner's dots behavior with custom frames
  • acc4c3a: Add a new withGuide option to all prompts to disable the default clack border
  • 9b92161: Show symbol when withGuide is true for log messages
  • 68dbf9b: select-key: Fixed wrapping and added new caseSensitive option
  • 09e596c: refactor(progress): remove unnecessary return statement in start function
  • 2310b43: Allow custom writables as output stream.
  • ae84dd0: Update key binding text to show tab/space when navigating, and tab otherwise.
  • Updated dependency on @clack/core to 1.0.0

v1.0.0-alpha.10

Compare Source

Minor Changes
  • 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.
Patch Changes
  • 55eb280: Fix placeholder rendering when using autocomplete.
  • 68dbf9b: select-key: Fixed wrapping and added new caseSensitive option
  • Updated dependencies [68dbf9b]
nuxt/eslint (@​nuxt/eslint-config)

v1.13.0

Compare Source

   🚀 Features
  • Upgrade eslint-flat-config-utils eslint-plugin-import-lite and eslint-plugin-jsdoc  -  by @​antfu (10bf9)
    View changes on GitHub
CodSpeedHQ/action (CodSpeedHQ/action)

v4.10.1

Compare Source

Release Notes

🚀 Features
🐛 Bug Fixes
🏗️ Refactor
⚙️ Internals

Install codspeed-runner 4.10.1

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/codspeed/releases/download/v4.10.1/codspeed-runner-installer.sh | sh

Download codspeed-runner 4.10.1

File Platform Checksum
codspeed-runner-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
codspeed-runner-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Full Runner Changelog: https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md

Full Changelog: CodSpeedHQ/action@v4.10.0...v4.10.1

v4.10.0

Compare Source

Release Notes

🚀 Features
🐛 Bug Fixes
🏗️ Refactor
⚙️ Internals

Full Runner Changelog: https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md

v4.8.2

Compare Source

Release Notes

🐛 Bug Fixes
⚙️ Internals

Install codspeed-runner 4.8.2

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/runner/releases/download/v4.8.2/codspeed-runner-installer.sh | sh

Download codspeed-runner 4.8.2

File Platform Checksum
codspeed-runner-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
codspeed-runner-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Full Runner Changelog: https://github.com/CodSpeedHQ/runner/blob/main/CHANGELOG.md

Full Changelog: CodSpeedHQ/action@v4.8.1...v4.8.2

v4.8.1

Compare Source

Release Notes

🚀 Features
🐛 Bug Fixes
⚙️ Internals

Install codspeed-runner 4.8.1

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/runner/releases/download/v4.8.1/codspeed-runner-installer.sh | sh

Download codspeed-runner 4.8.1

File Platform Checksum
codspeed-runner-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
codspeed-runner-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Full Runner Changelog: https://github.com/CodSpeedHQ/runner/blob/main/CHANGELOG.md

Full Changelog: CodSpeedHQ/action@v4.8.0...v4.8.1

v4.8.0

Compare Source

Release Notes

It is now possible to do consecutive CodSpeed run in the same GitHub job. This will allow using multiple instruments without having to spawn another job 🎉

jobs:
  codspeed:
    ...
    steps:
      ...
      - name: Build benchmarks
        run: cargo codspeed build -m analysis

      - name: Run benchmarks
        uses: CodSpeedHQ/action@v4
        with:
          run: cargo codspeed run
          mode: "simulation"

      - name: Run memory benchmarks
        uses: CodSpeedHQ/action@v4
        with:
          run: cargo codspeed run
          mode: "memory"
🚀 Features
🐛 Bug Fixes
🏗️ Refactor
⚙️ Internals

Install codspeed-runner 4.8.0

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/runner/releases/download/v4.8.0/codspeed-runner-installer.sh | sh

Download codspeed-runner 4.8.0

File Platform Checksum
codspeed-runner-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
codspeed-runner-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Full Runner Changelog: https://github.com/CodSpeedHQ/runner/blob/main/CHANGELOG.md

Full Changelog: CodSpeedHQ/action@v4.7.0...v4.8.0

actions/checkout (actions/checkout)

v6.0.2

Compare Source

unjs/citty (citty)

v0.2.0

Compare Source

compare changes

🚀 Enhancements
  • Support hidden meta to hide command (#​111)
  • Support enum arg type (#​83)
  • Support number arg type (#​73)
  • Support negativeDescription for args (#​40)
  • ⚠️ Parsed optionals and enum type safety (#​174)
🩹 Fixes
  • ⚠️ Conditionally print negative boolean argument usage (#​177)
  • types: Value type of NumberArgDef should be number (#​183)
  • Show cli error message (#​186)
  • Allow number arg to be optional (#​194)
💅 Refactors
  • Show error once (#​167)
  • More strict types (f597897)
  • ⚠️ Use node:util.parseArgs for arg parsing (#​218)
  • Use simple console formatting (#​219)
📦 Build
🏡 Chore
✅ Tests
⚠️ Breaking Changes
  • ⚠️ Parsed optionals and enum type safety (#​174)
  • ⚠️ Conditionally print negative boolean argument usage (#​177)
  • ⚠️ Use node:util.parseArgs for arg parsing (#​218)
  • ⚠️ Esm-only dist (42b57b0)
❤️ Contributors
denoland/deno (deno)

v2.6.6

Compare Source

  • feat(cli/tsc): show progress bar for TSGO downloads (#​31893)
  • feat(inspector): accept bare host and bare port for --inspect flag (#​31881)
  • feat(inspector/unstable): add /ws/events endpoint in inspector server, notify
    watcher restart event in it (#​31901)
  • feat(task): globstar, failglob, nullglob, and pipefail support
    (#​31913)
  • feat: instrument cron with OTEL (#​31916)
  • fix(check): improve @types/ package resolution for the global resolver
    (#​31868)
  • fix(doc): non-determinism in deno doc --lint (#​31911)
  • fix(dx): always spawn subprocess for dx (#​31897)
  • fix(ext/crypto): add support for SHA3 (#​31668)
  • fix(ext/node): assert compatibility (#​31821)
  • fix(ext/node): fix deadline resolution for queued timers (#​31860)
  • fix(ext/node): implement PerformanceObserver (#​31875)
  • fix(ext/node): implement getValidStdio for child_process (#​31850)
  • fix(ext/node): improve child_process CLI argument parsing (#​31825)
  • fix(ext/node): inspector.open() and inspector.close() (#​31898)
  • fix(ext/node): prevent derefencing symlinks on fs.rm (#​31886)
  • fix(ext/node): properly implement process.features (#​31864)
  • fix(ext/node): validate fd in tty.isatty and enable pseudo-tty tests (#​31892)
  • fix(ext/sqlite): double free of Session after database closed (#​31830)
  • fix(ext/web): export PerformanceObserver and PerformanceObserverEntryList
    (#​31887)
  • fix(publish): do not include tsconfig imports in publish graph (#​31907)
  • fix(publish): include npm:@​types/ package resolution in published packages
    (#​31855)
  • fix: don't ever set 1005 outbound close code (#​31845)
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v62.4.1

Compare Source

Bug Fixes

v62.4.0

Compare Source

Features

v62.3.1

Compare Source

Bug Fixes

v62.3.0

Compare Source

v62.2.0

Compare Source

h3js/h3 (h3-next)

v2.0.1-rc.11

Compare Source

compare changes

📦 Build
❤️ Contributors

v2.0.1-rc.10

Compare Source

compare changes

📦 Build
  • Move fetchdts to dependencies due to bundle issues (0d753cf)
❤️ Contributors

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.

@renovate renovate bot requested a review from danielroe as a code owner January 19, 2026 11:51
@pkg-pr-new
Copy link

pkg-pr-new bot commented Jan 19, 2026

  • nuxt-cli-playground

    npm i https://pkg.pr.new/create-nuxt@1193
    
    npm i https://pkg.pr.new/nuxi@1193
    
    npm i https://pkg.pr.new/@nuxt/cli@1193
    

commit: daae1d0

@codspeed-hq
Copy link

codspeed-hq bot commented Jan 19, 2026

Merging this PR will not alter performance

✅ 2 untouched benchmarks


Comparing renovate/all-minor-patch (4c6bd9a) with main (a7284ae)

Open in CodSpeed

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 377d0e6 to 49d5fec Compare January 19, 2026 16:58
@renovate renovate bot changed the title chore(deps): update pnpm to v10.28.1 chore(deps): update all non-major dependencies Jan 19, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 49d5fec to db22e63 Compare January 20, 2026 02:01
@github-actions
Copy link
Contributor

github-actions bot commented Jan 20, 2026

📦 Bundle Size Comparison

📉 nuxi

Metric Base Head Diff
Rendered 3706.35 KB 3676.14 KB -30.21 KB (-0.82%)

📉 nuxt-cli

Metric Base Head Diff
Rendered 137.36 KB 137.18 KB -0.18 KB (-0.13%)

📉 create-nuxt

Metric Base Head Diff
Rendered 1654.76 KB 1623.38 KB -31.38 KB (-1.90%)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 426d686 to 62cfd75 Compare January 26, 2026 15:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3fefc06 to 86c4b86 Compare January 27, 2026 23:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 86c4b86 to f9fcebe Compare January 28, 2026 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants