Skip to content

fix(deps): update all non-major dependencies #1103

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

Merged
merged 4 commits into from
Apr 21, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 31, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) ^2.28.1 -> ^2.29.2 age adoption passing confidence
@eslint/js (source) ^9.23.0 -> ^9.25.0 age adoption passing confidence
@sveltejs/package (source) ^2.3.10 -> ^2.3.11 age adoption passing confidence
@types/node (source) ^22.13.13 -> ^22.14.1 age adoption passing confidence
@types/node@<=20.12.0 (source) 20.17.27 -> 20.17.30 age adoption passing confidence
dts-buddy ^0.5.5 -> ^0.6.1 age adoption passing confidence
eslint (source) ^9.23.0 -> ^9.25.0 age adoption passing confidence
eslint-config-prettier ^10.1.1 -> ^10.1.2 age adoption passing confidence
eslint-plugin-prettier ^5.2.5 -> ^5.2.6 age adoption passing confidence
eslint-plugin-svelte (source) ^3.3.3 -> ^3.5.1 age adoption passing confidence
lint-staged ^15.5.0 -> ^15.5.1 age adoption passing confidence
playwright-core (source) ~1.51.1 -> ~1.52.0 age adoption passing confidence
pnpm (source) 10.7.0 -> 10.9.0 age adoption passing confidence
publint (source) ^0.3.9 -> ^0.3.12 age adoption passing confidence
sass ^1.86.0 -> ^1.86.3 age adoption passing confidence
svelte (source) ^5.25.3 -> ^5.28.1 age adoption passing confidence
svelte-check ^4.1.5 -> ^4.1.6 age adoption passing confidence
svelte-eslint-parser ^1.1.0 -> ^1.1.3 age adoption passing confidence
typescript (source) ^5.8.2 -> ^5.8.3 age adoption passing confidence
typescript-eslint (source) ^8.28.0 -> ^8.30.1 age adoption passing confidence
vitest (source) ^3.0.9 -> ^3.1.2 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.29.2

Compare Source

Patch Changes

v2.29.1

Compare Source

v2.29.0

Compare Source

Minor Changes
eslint/eslint (@​eslint/js)

v9.25.0

Compare Source

v9.24.0

Compare Source

sveltejs/kit (@​sveltejs/package)

v2.3.11

Compare Source

Patch Changes
  • fix: handle missing package.json gracefully (#​13691)
Rich-Harris/dts-buddy (dts-buddy)

v0.6.1

Compare Source

Patch Changes
  • 25f4f9c: fix: follow directory imports
  • f372987: feat: support TypeScript 5.8

v0.6.0

Compare Source

Minor Changes
  • 87276ef: feat: support export { ... as default } from ...
Patch Changes
eslint/eslint (eslint)

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
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Minor Changes
Patch Changes

v3.4.1

Compare Source

Patch Changes

v3.4.0

Compare Source

Minor Changes
  • #​1165 2b7e164 Thanks @​43081j! - Adds a suggestion to the require-store-callbacks-use-set-param rule to automatically rename or add function parameters.

  • #​1163 d9b8604 Thanks @​43081j! - Adds a suggestion to the derived-has-same-inputs-outputs rule which renames the outputs.

  • #​1164 29b1315 Thanks @​43081j! - Added a suggestion for no-at-debug-tags rule which removes the tags

Patch Changes
lint-staged/lint-staged (lint-staged)

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    
microsoft/playwright (playwright-core)

v1.52.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
publint/publint (publint)

v0.3.12

Compare Source

Patch Changes
  • Fix shebang check to allow spaces after the #! (#​183)

v0.3.11

Compare Source

Patch Changes
  • Update EXPORTS_GLOB_NO_DEPRECATED_SUBPATH_MAPPING message and severity to error (#​179)

  • Add a new warning when the "exports" or "imports" field contain a fallback array as most tooling will only the pick the first value that can be parsed, and other tooling may work differently leading to inconsistent behaviors (#​180)

v0.3.10

Compare Source

Patch Changes
  • Support custom conditions in "exports" that points to raw TS or TSX files. This configuration is common in monorepo setups where packages refer to the raw files among themselves using a custom condition so custom aliasing isn't needed. (b34ea94)

    With this support, the "types" condition is allowed to come after any exports of the raw TS or TSX files. File existence checks are also disabled for raw TS and TSX files reference as after publish these files may intentionally be not published.

sass/dart-sass (sass)

v1.86.3

Compare Source

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with
    a .. segment.

v1.86.2

Compare Source

  • No user-visible changes.

v1.86.1

Compare Source

  • Improve the performance of file: URL case canonicalization on Windows and
    Mac OS.
sveltejs/svelte (svelte)

v5.28.1

Compare Source

Patch Changes
  • fix: ensure <svelte:boundary> properly removes error content in production mode (#​15793)

  • fix: update_version after delete if source is undefined and prop in target (#​15796)

  • fix: emit error on wrong placement of the :global block selector (#​15794)

v5.28.0

Compare Source

Minor Changes
  • feat: partially evaluate more expressions (#​15781)

v5.27.3

Compare Source

Patch Changes
  • fix: use function declaration for snippets in server output to avoid TDZ violation (#​15789)

v5.27.2

Compare Source

Patch Changes
  • chore: use pkg.imports for common modules (#​15787)

v5.27.1

Compare Source

Patch Changes
  • chore: default params for html blocks (#​15778)

  • fix: correct suggested type for custom events without detail (#​15763)

  • fix: Throw on unrendered snippets in dev (#​15766)

  • fix: avoid unnecessary read version increments (#​15777)

v5.27.0

Compare Source

Minor Changes
  • feat: partially evaluate certain expressions (#​15494)
Patch Changes
  • fix: relax :global selector list validation (#​15762)

v5.26.3

Compare Source

Patch Changes
  • fix: correctly validate head snippets on the server (#​15755)

  • fix: ignore mutation validation for props that are not proxies in more cases (#​15759)

  • fix: allow self-closing tags within math namespace (#​15761)

v5.26.2

Compare Source

Patch Changes
  • fix: correctly validate undefined snippet params with default value (#​15750)

v5.26.1

Compare Source

Patch Changes
  • fix: update state_referenced_locally message (#​15733)

v5.26.0

Compare Source

Minor Changes
  • feat: add css.hasGlobal to compile output (#​15450)
Patch Changes
  • fix: add snippet argument validation in dev (#​15521)

v5.25.12

Compare Source

Patch Changes
  • fix: improve internal_set versioning mechanic (#​15724)

  • fix: don't transform reassigned state in labeled statement in $derived (#​15725)

v5.25.11

Compare Source

Patch Changes
  • fix: handle hydration mismatches in await blocks (#​15708)

  • fix: prevent ownership warnings if the fallback of a bindable is used (#​15720)

v5.25.10

Compare Source

Patch Changes
  • fix: set deriveds as CLEAN if they are assigned to (#​15592)

  • fix: better scope :global() with nesting selector & (#​15671)

v5.25.9

Compare Source

Patch Changes
  • fix: allow $.state and $.derived to be treeshaken (#​15702)

  • fix: rework binding ownership validation (#​15678)

v5.25.8

Compare Source

Patch Changes
  • fix: address untracked_writes memory leak (#​15694)

v5.25.7

Compare Source

Patch Changes
  • fix: ensure clearing of old values happens independent of root flushes (#​15664)

v5.25.6

Compare Source

Patch Changes
  • fix: ignore generic type arguments while creating AST (#​15659)

  • fix: better consider component and its snippets during css pruning (#​15630)

v5.25.5

Compare Source

Patch Changes
  • fix: add setters to $derived class properties (#​15628)

  • fix: silence assignment warning on more function bindings (#​15644)

  • fix: make sure CSS is preserved during SSR with bindings (#​15645)

v5.25.4

Compare Source

Patch Changes
  • fix: support TS type assertions (#​15642)

  • fix: ensure undefined class still applies scoping class, if necessary (#​15643)

sveltejs/language-tools (svelte-check)

v4.1.6

Compare Source

  • fix: prevent unused variable error for bindable
  • fix: ensure exports in runes mode are marked as used
  • fix: add color CLI options
sveltejs/svelte-eslint-parser (svelte-eslint-parser)

v1.1.3

Compare Source

Patch Changes

v1.1.2

Compare Source

Patch Changes

v1.1.1

Compare Source

Patch Changes
  • #​692 1c533d8 Thanks @​baseballyama! - fix: resolved issue of $props incorrectly detected as store when using variables named after runes like $props and props
microsoft/TypeScript (typescript)

v5.8.3

Compare Source

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

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.

v8.29.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.

vitest-dev/vitest (vitest)

v3.1.2

Compare Source

   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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 force-pushed the renovate/all-minor-patch branch 16 times, most recently from 9666b5e to fa9f984 Compare April 6, 2025 22:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 685f91c to eee1b76 Compare April 13, 2025 11:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 7310485 to 974c348 Compare April 19, 2025 03:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 974c348 to be63000 Compare April 21, 2025 11:10
Copy link
Contributor Author

renovate bot commented Apr 21, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@dominikg dominikg merged commit 876c1c5 into main Apr 21, 2025
6 checks passed
@dominikg dominikg deleted the renovate/all-minor-patch branch April 21, 2025 12:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant