Skip to content

build(deps): update all non-major dependencies #221

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 Apr 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/node (source) 22.13.14 -> 22.15.2 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 8.29.0 -> 8.31.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 8.29.0 -> 8.31.0 age adoption passing confidence devDependencies minor
eslint (source) 9.23.0 -> 9.25.1 age adoption passing confidence devDependencies minor
eslint-config-prettier 10.1.1 -> 10.1.2 age adoption passing confidence devDependencies patch
eslint-plugin-prettier 5.2.5 -> 5.2.6 age adoption passing confidence devDependencies patch
msw (source) 2.7.3 -> 2.7.5 age adoption passing confidence devDependencies patch
node (source) 22.14.0 -> 22.15.0 age adoption passing confidence minor
pnpm (source) 10.7.0 -> 10.9.0 age adoption passing confidence packageManager minor
typescript (source) 5.8.2 -> 5.8.3 age adoption passing confidence devDependencies patch
typescript-eslint (source) 8.29.0 -> 8.31.0 age adoption passing confidence devDependencies minor

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.31.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#​10979)
❤️ Thank You
  • Nicolas Le Cam

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

v8.30.1

Compare Source

🩹 Fixes
  • eslint-plugin: fix mistake with eslintrc config generation (#​11072)
❤️ Thank You

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

v8.30.0

Compare Source

🚀 Features
  • eslint-plugin: [no-explicit-any] suggest to replace keyof any with PropertyKey (#​11032)
🩹 Fixes
  • eslint-plugin: [promise-function-async] use a different error message for functions with promise and non-promise types (#​10950)
❤️ Thank You

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

v8.29.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-deprecated] report on deprecated imported variable used as property (#​10998)
❤️ Thank You
  • Ronen Amiel

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.31.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v8.30.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v8.30.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v8.29.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

eslint/eslint (eslint)

v9.25.1

Compare Source

v9.25.0

Compare Source

v9.24.0

Compare Source

prettier/eslint-config-prettier (eslint-config-prettier)

v10.1.2

Compare Source

Patch Changes
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.6

Compare Source

Patch Changes
mswjs/msw (msw)

v2.7.5

Compare Source

v2.7.5 (2025-04-18)

Bug Fixes

v2.7.4

Compare Source

v2.7.4 (2025-04-12)

Bug Fixes
nodejs/node (node)

v22.15.0

Compare Source

pnpm/pnpm (pnpm)

v10.9.0

Compare Source

Minor Changes
  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@&#8203;<range>
    

    For example, running:

    pnpm add jsr:@&#8203;foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@&#8203;foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@&#8203;foo/bar": "npm:@&#8203;jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #​8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

    dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via:

    pnpm config set dangerouslyAllowAllBuilds true
    

    It can also be set when running a command:

    pnpm install --dangerously-allow-all-builds
    
Patch Changes
  • Fix a false negative in verifyDepsBeforeRun when nodeLinker is hoisted and there is a workspace package without dependencies and node_modules directory #​9424.
  • Explicitly drop verifyDepsBeforeRun support for nodeLinker: pnp. Combining verifyDepsBeforeRun and nodeLinker: pnp will now print a warning.

v10.8.1

Compare Source

Patch Changes
  • Removed bright white highlighting, which didn't look good on some light themes #​9389.
  • If there is no pnpm related configuration in package.json, onlyBuiltDependencies will be written to pnpm-workspace.yaml file #​9404.

v10.8.0

Compare Source

Minor Changes
  • Experimental. A new hook is supported for updating configuration settings. The hook can be provided via .pnpmfile.cjs. For example:

    module.exports = {
      hooks: {
        updateConfig: (config) => ({
          ...config,
          nodeLinker: "hoisted",
        }),
      },
    };
  • Now you can use the pnpm add command with the --config flag to install new configurational dependencies #​9377.

Patch Changes
  • Do not hang indefinitely, when there is a glob that starts with !/ in pnpm-workspace.yaml. This fixes a regression introduced by #​9169.
  • pnpm audit --fix should update the overrides in pnpm-workspace.yaml.
  • pnpm link should update overrides in pnpm-workspace.yaml, not in package.json #​9365.

v10.7.1: pnpm 10.7.1

Compare Source

Patch Changes

  • pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #​9355.
  • pnpm config get should read auth related settings via npm CLI #​9345.
  • Replace leading ~/ in a path in .npmrc with the home directory #​9217.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz
microsoft/TypeScript (typescript)

v5.8.3

Compare Source

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

v8.31.0

Compare Source

🩹 Fixes
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#​11070)
  • typescript-eslint: address bugs in config() around global ignores (#​11065)
❤️ Thank You

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

v8.30.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

v8.30.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

v8.29.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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


Configuration

📅 Schedule: Branch creation - "after 10am on the first day of the month" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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 added the deps label Apr 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch-dependencies branch from 83ca7cf to 8ccab12 Compare April 1, 2025 12:45
@renovate renovate bot changed the title build(deps): update dependency vite to v6.2.4 build(deps): update all non-major dependencies Apr 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch-dependencies branch 7 times, most recently from 8b35657 to 65e563b Compare April 7, 2025 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch-dependencies branch 6 times, most recently from 131e4de to 2398405 Compare April 14, 2025 22:59
@renovate renovate bot force-pushed the renovate/all-minor-patch-dependencies branch 6 times, most recently from f451e00 to 12e9490 Compare April 25, 2025 03:08
@renovate renovate bot force-pushed the renovate/all-minor-patch-dependencies branch from 12e9490 to 9a7aa03 Compare April 25, 2025 08:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants