Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@iconify-json/lucide ^1.2.66 -> ^1.2.69 age confidence
@nuxt/devtools (source) ^2.6.3 -> ^2.6.5 age confidence
@nuxt/ui (source) ^3.3.3 -> ^3.3.6 age confidence
@shikijs/core (source) ^3.12.2 -> ^3.13.0 age confidence
@shikijs/langs (source) ^3.12.2 -> ^3.13.0 age confidence
@shikijs/themes (source) ^3.12.2 -> ^3.13.0 age confidence
@shikijs/transformers (source) ^3.12.2 -> ^3.13.0 age confidence
@types/node (source) ^24.3.1 -> ^24.7.0 age confidence
@vue/compiler-core (source) ^3.5.21 -> ^3.5.22 age confidence
debug ^4.4.1 -> ^4.4.3 age confidence
eslint (source) ^9.35.0 -> ^9.37.0 age confidence
pnpm (source) 10.15.1 -> 10.18.1 age confidence
release-it ^19.0.4 -> ^19.0.5 age confidence
remark-mdc 3.6.0-29309210.1cda4d8 -> 3.6.0-29333381.8558577 age confidence
shiki (source) ^3.12.2 -> ^3.13.0 age confidence
typescript (source) 5.9.2 -> 5.9.3 age confidence
vue-tsc (source) ^3.0.6 -> ^3.1.1 age confidence

Release Notes

nuxt/devtools (@​nuxt/devtools)

v2.6.5

Compare Source

Bug Fixes
  • ensure path resolve is safe (1fabb49)

v2.6.4

Compare Source

Bug Fixes
  • using textContent instead of innerHtml for auth pagechore: update lock (7cadbbe)
nuxt/ui (@​nuxt/ui)

v3.3.6

Compare Source

🐛 Bug Fixes

Full Changelog: nuxt/ui@v3.3.5...v3.3.6

v3.3.5

Compare Source

🐛 Bug Fixes

New Contributors

Full Changelog: nuxt/ui@v3.3.4...v3.3.5

v3.3.4

Compare Source

🐛 Bug Fixes

Full Changelog: nuxt/ui@v3.3.3...v3.3.4

shikijs/shiki (@​shikijs/core)

v3.13.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.12.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (@​vue/compiler-core)

v3.5.22

Compare Source

Bug Fixes
Features
  • custom-element: allow specifying additional options for shadowRoot in custom elements (#​12965) (47e628d), closes #​12964
Reverts
  • Revert "fix(hmr): prevent VUE_HMR_RUNTIME from being overwritten by vue runtime in 3rd-party libraries" (#​13925) (6b68f72), closes #​13925
debug-js/debug (debug)

v4.4.3

Compare Source

Functionally identical release to 4.4.1.

Version 4.4.2 is compromised. Please see #​1005.

eslint/eslint (eslint)

v9.37.0

Compare Source

v9.36.0

Compare Source

pnpm/pnpm (pnpm)

v10.18.1

Compare Source

Patch Changes
  • Don't print a warning, when --lockfile-only is used #​8320.
  • pnpm setup creates a command shim to the pnpm executable. This is needed to be able to run pnpm self-update on Windows #​5700.
  • When using pnpm catalogs and running a normal pnpm install, pnpm produced false positive warnings for "skip adding to the default catalog because it already exists". This warning now only prints when using pnpm add --save-catalog as originally intended.

v10.18.0

Compare Source

Minor Changes
  • Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.

    Added configuration options for warning thresholds: fetchWarnTimeoutMs and fetchMinSpeedKiBps.
    Warning messages are displayed when requests exceed time thresholds or fall below speed minimums

    Related PR: #​10025.

Patch Changes
  • Retry filesystem operations on EAGAIN errors #​9959.
  • Outdated command respects minimumReleaseAge configuration #​10030.
  • Correctly apply the cleanupUnusedCatalogs configuration when removing dependent packages.
  • Don't fail with a meaningless error when scriptShell is set to false #​8748.
  • pnpm dlx should not fail when minimumReleaseAge is set #​10037.

v10.17.1

Compare Source

Patch Changes
  • When a version specifier cannot be resolved because the versions don't satisfy the minimumReleaseAge setting, print this information out in the error message #​9974.
  • Fix state.json creation path when executing pnpm patch in a workspace project #​9733.
  • When minimumReleaseAge is set and the latest tag is not mature enough, prefer a non-deprecated version as the new latest #​9987.

v10.17.0

Compare Source

Minor Changes
  • The minimumReleaseAgeExclude setting now supports patterns. For instance:

    minimumReleaseAge: 1440
    minimumReleaseAgeExclude:
      - "@​eslint/*"

    Related PR: #​9984.

Patch Changes
  • Don't ignore the minimumReleaseAge check, when the package is requested by exact version and the packument is loaded from cache #​9978.
  • When minimumReleaseAge is set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #​9979.

v10.16.1

Compare Source

Patch Changes
  • The full metadata cache should be stored not at the same location as the abbreviated metadata. This fixes a bug where pnpm was loading the abbreviated metadata from cache and couldn't find the "time" field as a result #​9963.
  • Forcibly disable ANSI color codes when generating patch diff #​9914.

v10.16.0

Compare Source

Minor Changes
  • There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.

    The new setting is called minimumReleaseAge. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting minimumReleaseAge: 1440 ensures that only packages released at least one day ago can be installed.

    If you set minimumReleaseAge but need to disable this restriction for certain dependencies, you can list them under the minimumReleaseAgeExclude setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:

    minimumReleaseAgeExclude:
      - webpack

    Related issue: #​9921.

  • Added support for finders #​9946.

    In the past, pnpm list and pnpm why could only search for dependencies by name (and optionally version). For example:

    pnpm why minimist
    

    prints the chain of dependencies to any installed instance of minimist:

    verdaccio 5.20.1
    ├─┬ handlebars 4.7.7
    │ └── minimist 1.2.8
    └─┬ mv 2.1.1
      └─┬ mkdirp 0.5.6
        └── minimist 1.2.8
    

    What if we want to search by other properties of a dependency, not just its name? For instance, find all packages that have react@17 in their peer dependencies?

    This is now possible with "finder functions". Finder functions can be declared in .pnpmfile.cjs and invoked with the --find-by=<function name> flag when running pnpm list or pnpm why.

    Let's say we want to find any dependencies that have React 17 in peer dependencies. We can add this finder to our .pnpmfile.cjs:

    module.exports = {
      finders: {
        react17: (ctx) => {
          return ctx.readManifest().peerDependencies?.react === "^17.0.0";
        },
      },
    };

    Now we can use this finder function by running:

    pnpm why --find-by=react17
    

    pnpm will find all dependencies that have this React in peer dependencies and print their exact locations in the dependency graph.

    @&#8203;apollo/client 4.0.4
    ├── @&#8203;graphql-typed-document-node/core 3.2.0
    └── graphql-tag 2.12.6
    

    It is also possible to print out some additional information in the output by returning a string from the finder. For example, with the following finder:

    module.exports = {
      finders: {
        react17: (ctx) => {
          const manifest = ctx.readManifest();
          if (manifest.peerDependencies?.react === "^17.0.0") {
            return `license: ${manifest.license}`;
          }
          return false;
        },
      },
    };

    Every matched package will also print out the license from its package.json:

    @&#8203;apollo/client 4.0.4
    ├── @&#8203;graphql-typed-document-node/core 3.2.0
    │   license: MIT
    └── graphql-tag 2.12.6
        license: MIT
    
Patch Changes
  • Fix deprecation warning printed when executing pnpm with Node.js 24 #​9529.
  • Throw an error if nodeVersion is not set to an exact semver version #​9934.
  • pnpm publish should be able to publish a .tar.gz file #​9927.
  • Canceling a running process with Ctrl-C should make pnpm run return a non-zero exit code #​9626.
release-it/release-it (release-it)

v19.0.5

Compare Source

nuxtlabs/remark-mdc (remark-mdc)

v3.6.0-29333381.8558577

Compare Source

v3.6.0-29310522.024adeb

Compare Source

v3.6.0-29309241.be75677

Compare Source

v3.6.0-29309215.bda8a53

Compare Source

microsoft/TypeScript (typescript)

v5.9.3

Compare Source

vuejs/language-tools (vue-tsc)

v3.1.1

Compare Source

Features
  • feat(language-server): support --tsdk command line arg (#​5691)
Bug Fixes
  • fix(language-core): tolerate non-literal export default (#​5675) - Thanks to @​KazariEX!
  • fix(language-core): use component instance props as fallthrough attributes (#​5686) - Thanks to @​KazariEX!
  • fix(typescript-plugin): determine if variable is Ref by RefSymbol property (#​5687) - Thanks to @​KazariEX!
  • fix(language-core): exclude effect of comments on root node (#​5689) - Thanks to @​KazariEX!
  • fix(typescript-plugin): place __vue__ in project instead of program (#​5690)
  • fix(component-type-helpers): remove deprecated $scopedSlots support for Vue 2
  • fix(language-core): replace markdown links after sfc blocks processing (#​5695) - Thanks to @​KazariEX!
  • fix(language-core): do not report unused error on __VLS_export (#​5696) - Thanks to @​KazariEX!
Other Changes
  • refactor(language-core): reimplement writeGlobalTypes without side effects

v3.1.0

Compare Source

Performance
Other Changes

v3.0.9

Compare Source

Features
  • feat(language-server): support --tsdk command line arg (#​5691)

v3.0.8

Compare Source

Features
  • feat(vscode): introduce vue.server.path setting (#​5647)
Bug Fixes
  • fix(language-core): initialize properties of VueVirtualCode in constructor (#​5635) - Thanks to @​KazariEX!
  • fix(vscode): flatten reactivity visualization decorators (#​5642) - Thanks to @​KazariEX!
  • fix(vscode): normalize reactivity visualization ranges
  • fix(vscode): patch typescriptServerPlugin languages without FS hack
  • fix(language-service): do not provide semantic tokens and document highlights for non-file scheme files (#​5653) - Thanks to @​KazariEX!
Performance
  • perf(typescript-plugin): redo single-file language service for reactivity visualization (#​5652)
Other Changes
  • refactor(typescript-plugin): externalize reactivity analysis logic (#​5645) - Thanks to @​KazariEX!

v3.0.7

Compare Source

Bug Fixes
  • fix(vscode): show welcome page only when opening a Vue file
  • fix(language-core): generate slot parameters in the same way as interpolation (#​5618) - Thanks to @​KazariEX!
  • fix(language-core): do not generate variables for builtin directives - Thanks to @​KazariEX!
Other Changes
  • docs(vscode): add descriptions for premium feature configurations (#​5612) - Thanks to @​KazariEX!
  • refactor(typescript-plugin): explicitly request parameters (#​5623)
  • chore(lint): enable @typescript-eslint/no-unnecessary-condition (#​5630)
  • refactor(language-server): reimplement Reactivity Visualization in typescript plugin (#​5632)
  • refactor(language-server): parsing interpolations in extension client (#​5633)
  • refactor(vscode): reimplement Focus Mode base on folding ranges (#​5634)
  • chore(vscode): disable Focus Mode by default (#​5578)
  • refactor(vscode): set delay of reactivity visualization updates to 250ms - Thanks to @​KazariEX!

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
Contributor

nuxthub-admin bot commented Apr 1, 2025

✅ Deployed mdc

Deployed mdc 54ec0f8 to preview

🔗 renovate-all-minor-patch.mdc-btm.pages.dev
📌 9fffff52.mdc-btm.pages.dev
📱
View QR Code QR code linking to deployment URL.

📋 View deployment logs

Copy link

pkg-pr-new bot commented Apr 1, 2025

npm i https://pkg.pr.new/@nuxtjs/mdc@369

commit: c2cb9e0

@renovate renovate bot changed the title chore(deps): update devdependency @types/node to ^22.13.15 chore(deps): update all non-major dependencies Apr 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4af6027 to 569eb44 Compare April 1, 2025 15:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 569eb44 to 53cabd8 Compare April 1, 2025 17:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 53cabd8 to bf70f80 Compare April 2, 2025 13:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bf70f80 to f7d993e Compare April 2, 2025 17:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f7d993e to fd08d35 Compare April 2, 2025 20:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd08d35 to 7e645a9 Compare April 3, 2025 17:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e645a9 to 8b4761c Compare April 4, 2025 21:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8b4761c to d3fb61e Compare April 5, 2025 01:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d3fb61e to 6a9e7d6 Compare April 7, 2025 08:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6a9e7d6 to d2c01d7 Compare April 7, 2025 14:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2c01d7 to d6c0eea Compare April 7, 2025 18:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d6c0eea to 2c88fc9 Compare April 8, 2025 09:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2c88fc9 to 9de4b65 Compare April 10, 2025 10:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d38326 to 961f325 Compare September 16, 2025 12:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 289a41f to f02601e Compare September 23, 2025 17:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 96f1bc8 to 519c353 Compare October 1, 2025 03:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from de61495 to e280c6b Compare October 8, 2025 09:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e280c6b to c2cb9e0 Compare October 9, 2025 11:47
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Oct 9, 2025
@renovate renovate bot closed this Oct 9, 2025
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