Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 29, 2024

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@nuxt/devtools (source) ^1.0.6 -> ^1.7.0 age confidence
@supabase/supabase-js ^2.57.2 -> ^2.57.4 age confidence
@types/node (source) ^24.3.1 -> ^24.5.2 age confidence
docus ^4.1.2 -> ^4.1.4 age confidence
pnpm (source) 10.15.1 -> 10.17.0 age confidence
release-it ^19.0.4 -> ^19.0.5 age confidence
typescript (source) 5.6.3 -> 5.9.2 age confidence
vue-tsc (source) ^3.0.6 -> ^3.0.7 age confidence

Release Notes

supabase/supabase-js (@​supabase/supabase-js)

v2.57.4

Compare Source

Bug Fixes

v2.57.3

Compare Source

Bug Fixes
nuxt-content/docus (docus)

v4.1.4

Compare Source

Bug Fixes
  • reactive navigation in production (b073f01)

v4.1.3

Compare Source

Bug Fixes
pnpm/pnpm (pnpm)

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

microsoft/TypeScript (typescript)

v5.9.2

Compare Source

v5.8.3

Compare Source

v5.8.2

Compare Source

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

vuejs/language-tools (vue-tsc)

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

netlify bot commented Aug 29, 2024

Deploy Preview for n3-supabase canceled.

Name Link
🔨 Latest commit c1c9ea0
🔍 Latest deploy log https://app.netlify.com/projects/n3-supabase/deploys/68cbe65ebfe52200082df2a3

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 911ef8d to 15cf0ef Compare September 4, 2024 22:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 4b2691a to 2158176 Compare September 11, 2024 21:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8474ec5 to 454ad5f Compare September 14, 2024 01:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 27fd0cb to 0241ebd Compare September 9, 2025 15:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0241ebd to e861aa4 Compare September 13, 2025 15:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e861aa4 to 6502748 Compare September 14, 2025 01:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6502748 to 2299f6b Compare September 14, 2025 14:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2299f6b to a2e1730 Compare September 15, 2025 23:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a2e1730 to f366ccd Compare September 16, 2025 23:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f366ccd to 7b3ef82 Compare September 17, 2025 15:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7b3ef82 to 5938a2b Compare September 18, 2025 03:29
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