Skip to content

chore(deps): update dependency eslint-plugin-svelte to v3#13

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/eslint-plugin-svelte-3.x
Open

chore(deps): update dependency eslint-plugin-svelte to v3#13
renovate[bot] wants to merge 1 commit intomainfrom
renovate/eslint-plugin-svelte-3.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 1, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
eslint-plugin-svelte (source) ^2.36.0^3.0.0 age confidence

Release Notes

sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.17.0

Compare Source

Minor Changes
Patch Changes

v3.16.0

Compare Source

Minor Changes

v3.15.2

Compare Source

Patch Changes

v3.15.1

Compare Source

Patch Changes
  • #​1477 8c5f51e Thanks @​ota-meshi! - fix(no-top-level-browser-globals): false positive when browser globals appear inside TypeScript generic type parameters (e.g. $state<HTMLElement>(...)).

  • #​1467 d81b556 Thanks @​marekdedic! - fix(no-navigation-without-resolve): fixed nullish link shorthands not being allowed

v3.15.0

Compare Source

Minor Changes

v3.14.0

Compare Source

Minor Changes

v3.13.1

Compare Source

Patch Changes

v3.13.0

Compare Source

Minor Changes
Patch Changes

v3.12.5

Compare Source

Patch Changes

v3.12.4

Compare Source

Patch Changes
  • #​1322 1e06290 Thanks @​marekdedic! - fix(no-navigation-without-resolve): properly detecting absolute and fragment URLs in variables

  • #​1355 d8df1e8 Thanks @​InkedCat! - fix: properly support Windows in no-unused-props rule
    fix: properly support Windows in valid-style-parse rule
    fix: properly support Windows in no-unnecessary-condition rule

  • #​1344 03a93f4 Thanks @​ota-meshi! - fix: preventing infinite loops in multiple rules

v3.12.3

Compare Source

Patch Changes

v3.12.2

Compare Source

Patch Changes

v3.12.1

Compare Source

Patch Changes
  • #​1313 27573f4 Thanks @​marekdedic! - fix: Not reporting mailto: and other unusual schema addresses in no-nmavigation-without-resolve (and its deprecated versions)

v3.12.0

Compare Source

Minor Changes

v3.11.0

Compare Source

Minor Changes
Patch Changes

v3.10.1

Compare Source

Patch Changes

v3.10.0

Compare Source

Minor Changes

v3.9.3

Compare Source

Patch Changes

v3.9.2

Compare Source

Patch Changes

v3.9.1

Compare Source

Patch Changes
  • #​1239 a3d4224 Thanks @​baseballyama! - fix(prefer-const): Use additionalProperties instead of ignoreReadonly to match the ESLint core rule option name.

v3.9.0

Compare Source

Minor Changes
  • #​1235 6e86e30 Thanks @​43081j! - Improve performance of ignore comment extraction and add support for comma-separated ignore codes

v3.8.2

Compare Source

Patch Changes

v3.8.1

Compare Source

Patch Changes

v3.8.0

Compare Source

Minor Changes

v3.7.0

Compare Source

Minor Changes

v3.6.0

Compare Source

Minor Changes
Patch Changes

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

v3.3.3

Compare Source

Patch Changes

v3.3.2

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Minor Changes
  • #​1132 30c1e5f Thanks @​baseballyama! - feat: add ignorePropertyPatterns property and rename ignorePatterns to ignoreTypePatterns in no-unused-props rule. The ignorePatterns option existed only for a few hours and is removed by this PR. Technically, this is a breaking change, but we’ll handle it as a minor release since very few users are likely affected.

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes

v3.1.0

Compare Source

Minor Changes
Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Patch Changes

v3.0.0

Compare Source

Major Changes
  • #​937 729394e Thanks @​ota-meshi! - feat!: drop support for old eslint

  • #​1033 3bfcc31 Thanks @​baseballyama! - Enabled in recommended config:

    • svelte/infinite-reactive-loop
    • svelte/no-dom-manipulating
    • svelte/no-dupe-on-directives
    • svelte/no-dupe-use-directives
    • svelte/no-export-load-in-svelte-module-in-kit-pages
    • svelte/no-immutable-reactive-statements
    • svelte/no-inspect
    • svelte/no-raw-special-elements
    • svelte/no-reactive-functions
    • svelte/no-reactive-literals
    • svelte/no-reactive-reassign
    • svelte/no-store-async
    • svelte/no-svelte-internal
    • svelte/no-useless-children-snippet
    • svelte/no-useless-mustaches
    • svelte/require-each-key
    • svelte/require-event-dispatcher-types
    • svelte/require-store-reactive-access
    • svelte/require-stores-init
    • svelte/valid-each-key
    • svelte/valid-prop-names-in-kit-pages

    Removed from recommended config:

    • svelte/valid-compile

    This update introduces breaking changes due to newly enabled rules.

  • #​1086 1c679b5 Thanks @​baseballyama! - breaking: remove require-stores-init from recommended rules

  • #​1043 778427e Thanks @​ota-meshi! - feat: add *.svelte.{js,ts} config to base config

  • #​900 4759b47 Thanks @​marekdedic! - breaking: deprecated the no-goto-without-base rule

  • #​885 ce2ffad Thanks @​ota-meshi! - feat!: drop support for old node versions (<18, 19, 21)

  • #​1011 7596287 Thanks @​baseballyama! - breaking: deprecate the svelte/no-dynamic-slot-name rule

  • #​930 eae1b4f Thanks @​ota-meshi! - feat!: upgrade svelte-eslint-parser to v1

  • #​982 04fc429 Thanks @​baseballyama! - feat!: Updated the html-self-closing rule to follow Svelte5

  • #​932 b136ab4 Thanks @​ota-meshi! - feat!: change the plugin to an ESM-only package

Minor Changes
Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Jun 1, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: apps/web/pnpm-lock.yaml
 ERROR  Failed to switch pnpm to v8.15.9. Looks like pnpm CLI is missing at "/home/ubuntu/.local/share/pnpm/.tools/pnpm/8.15.9/bin" or is incorrect
spawnSync /home/ubuntu/.local/share/pnpm/.tools/pnpm/8.15.9/bin/pnpm ENOENT

@cloudflare-workers-and-pages
Copy link
Copy Markdown

Deploying czqm-web with  Cloudflare Pages  Cloudflare Pages

Latest commit: 6ddf8ac
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch from 6ddf8ac to f589670 Compare June 2, 2025 02:58
@netlify
Copy link
Copy Markdown

netlify bot commented Jun 2, 2025

Deploy Preview for czqm-overseer failed. Why did it fail? →

Name Link
🔨 Latest commit f589670
🔍 Latest deploy log https://app.netlify.com/projects/czqm-overseer/deploys/683d135ba957710008d69f6e

@netlify
Copy link
Copy Markdown

netlify bot commented Jun 2, 2025

Deploy Preview for czqm-web failed. Why did it fail? →

Name Link
🔨 Latest commit f589670
🔍 Latest deploy log https://app.netlify.com/projects/czqm-web/deploys/683d135bb48f9a0008c70342

@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch from f589670 to 0a19ef7 Compare July 27, 2025 20:08
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 7 times, most recently from 86b26e3 to 1c422d1 Compare October 3, 2025 18:42
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 16 times, most recently from 006b0ab to db5ecc4 Compare October 9, 2025 03:52
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 15 times, most recently from fdf1f3a to 786c6b8 Compare October 29, 2025 22:56
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch from 786c6b8 to 869a8b0 Compare November 1, 2025 04:31
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 3 times, most recently from 6abab04 to feb1ae1 Compare February 15, 2026 11:28
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 2 times, most recently from 06265b2 to fbee9b3 Compare March 1, 2026 06:49
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 3 times, most recently from 47fbe7c to 25ae3c8 Compare March 3, 2026 20:49
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 3 times, most recently from ee06d85 to e4c1c99 Compare March 17, 2026 18:24
@renovate renovate bot force-pushed the renovate/eslint-plugin-svelte-3.x branch 2 times, most recently from bee23d2 to aaeb613 Compare March 19, 2026 15:30
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.

1 participant