Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 6, 2025

This PR contains the following updates:

Package Change Age Confidence
@angular-eslint/eslint-plugin (source) 19.0.0 -> 21.0.0 age confidence
angular-eslint (source) ^19.0.0 -> ^21.0.0 age confidence

Release Notes

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

v21.0.0

Compare Source

🚀 Features
  • ⚠️ eslint-plugin: formally deprecate [no-conflicting-lifecycle] and remove from "all" config (5d845924)
🩹 Fixes
  • ⚠️ eslint-plugin: make component-selector and directive-selector configurations strict and clear (938362cb)
⚠️ Breaking Changes
  • ⚠️ eslint-plugin: formally deprecate [no-conflicting-lifecycle] and remove from "all" config (5d845924)
  • eslint-plugin: make component-selector and directive-selector configurations strict and clear (938362cb)
    The selector validation logic has been updated to be more strict and
    predictable:
    Default Prefix Change:
    • Both component-selector and directive-selector now default to prefix: 'app' to match
      Angular CLI defaults
    • This means selectors without the 'app' prefix will now fail validation unless a
      different prefix is explicitly configured
      Style and Prefix Validation Changes:
    • Single-word selectors (e.g., 'appselector') are now appropriately considered valid for
      both camelCase and kebab-case styles
    • Style validation is now completely independent from prefix validation
    • When a prefix is defined and found in a selector, the rule now correctly validates
      whether the prefix is properly separated according to the style:
      • For kebab-case: prefix must be followed by a hyphen (e.g., 'app-selector' ✓,
        'appselector' ✗)
      • For camelCase: prefix must be followed by an uppercase letter (e.g., 'appSelector' ✓,
        'appselector' ✗)
        Changes to error reporting:
    • Selectors that have valid style but improper prefix usage now report 'prefixFailure'
      instead of 'styleAndPrefixFailure'
    • Example: 'sgggg-bar' with prefix 'sg' and style 'kebab-case' now reports
      'prefixFailure' (valid kebab-case, but prefix not properly separated)
      Migration Guide:
    • If you have components/directives without prefixes that were previously passing, either:
      1. Add the 'app' prefix to your selectors
      2. Configure a different prefix that matches your existing selectors
      3. Explicitly set prefix: [] or prefix: '' in your ESLint config to disable prefix checking
        These changes make the rules more predictable and align better with developer expectations
        while maintaining compatibility with Angular's compiler requirements for web components.
❤️ Thank You

20.7.0 (2025-11-22)

🩹 Fixes
  • eslint-plugin: [use-component-selector] detect variables (#​2797)
  • eslint-plugin: false negatives in pipe-prefix, component-selector and directive-selector when linting selectors that only contain a prefix (#​2769)
  • eslint-plugin: [prefer-inject] improve test coverage and documentation (#​2770)
❤️ Thank You

20.6.0 (2025-11-09)

🚀 Features
  • eslint-plugin: support multiple configs for component-selector and directive-selector (#​2762)
❤️ Thank You

20.5.2 (2025-11-08)

🩹 Fixes
  • eslint-plugin: update style guide links (#​2689)
  • eslint-plugin-template: [use-lifecycle-interface] fix fixer when class contains generics (#​2749)
❤️ Thank You

20.5.1 (2025-11-03)

🩹 Fixes
  • eslint-plugin: [no-uncalled-signals] fix false positives (#​2705)
❤️ Thank You

20.5.0 (2025-10-27)

🚀 Features
  • eslint-plugin: add rule prefer-host-metadata-property (#​2615)
❤️ Thank You

20.4.0 (2025-10-12)

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

20.3.0 (2025-09-14)

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

20.2.0 (2025-08-22)

🩹 Fixes
  • eslint-plugin: [no-uncalled-signals] do not report signal sets within logical expressions (#​2581)
  • eslint-plugin: [relative-url-prefix] handle template literals (#​2576)
❤️ Thank You

20.1.1 (2025-06-19)

🩹 Fixes
  • eslint-plugin: [no-output-on-prefix] update style guide link (#​2514)
❤️ Thank You
  • Victor Santelé

20.1.0 (2025-06-16)

🚀 Features
  • eslint-plugin: add rules to ban experimental and developer preview (#​2037)
❤️ Thank You

v20.7.0

Compare Source

🩹 Fixes
  • eslint-plugin: [use-component-selector] detect variables (#​2797)
  • eslint-plugin: false negatives in pipe-prefix, component-selector and directive-selector when linting selectors that only contain a prefix (#​2769)
  • eslint-plugin: [prefer-inject] improve test coverage and documentation (#​2770)
❤️ Thank You

v20.6.0

Compare Source

🚀 Features
  • eslint-plugin: support multiple configs for component-selector and directive-selector (#​2762)
❤️ Thank You

v20.5.2

Compare Source

🩹 Fixes
  • eslint-plugin: update style guide links (#​2689)
  • eslint-plugin-template: [use-lifecycle-interface] fix fixer when class contains generics (#​2749)
❤️ Thank You

v20.5.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-uncalled-signals] fix false positives (#​2705)
❤️ Thank You

v20.5.0

Compare Source

🚀 Features
  • eslint-plugin: add rule prefer-host-metadata-property (#​2615)
❤️ Thank You

v20.4.0

Compare Source

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

v20.3.0

Compare Source

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

v20.2.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-uncalled-signals] do not report signal sets within logical expressions (#​2581)
  • eslint-plugin: [relative-url-prefix] handle template literals (#​2576)
❤️ Thank You

v20.1.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-output-on-prefix] update style guide link (#​2514)
❤️ Thank You
  • Victor Santelé

v20.1.0

Compare Source

🚀 Features
  • eslint-plugin: add rules to ban experimental and developer preview (#​2037)
❤️ Thank You

v20.0.0

Compare Source

🚀 Features
  • ⚠️ eslint-lint: add prefer-inject to recommended (c8367d3b)
  • ⚠️ eslint-plugin: remove (component|directive)-class-suffix from recommended (c1022ee6)
  • ⚠️ eslint-plugin: switch prefer-standalone fix to suggestion, reference guide (4583034f)
🩹 Fixes
  • ⚠️ eslint-plugin: [sort-keys-in-type-decorator] default orders now include all known keys (9183385d)
⚠️ Breaking Changes
  • ⚠️ eslint-plugin: [sort-keys-in-type-decorator] default orders now include all known keys (9183385d)
  • ⚠️ eslint-lint: add prefer-inject to recommended (c8367d3b)
  • ⚠️ eslint-plugin: remove (component|directive)-class-suffix from recommended (c1022ee6)
  • ⚠️ eslint-plugin: switch prefer-standalone fix to suggestion, reference guide (4583034f)
❤️ Thank You

19.8.0 (2025-06-06)

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

19.7.1 (2025-06-03)

🩹 Fixes
  • eslint-plugin: [no-uncalled-signals] handle direct signal calls in member expressions (#​2491)
❤️ Thank You

19.7.0 (2025-06-02)

🚀 Features
  • eslint-plugin: [require-localize-metadata] add requireCustomId option (#​2430)
  • eslint-plugin: add no-uncalled-signals rule (#​2383)
🩹 Fixes
  • eslint-plugin-template: any valid DOM element with role button is interactive (#​2488)
❤️ Thank You

19.6.0 (2025-05-27)

🚀 Features
  • eslint-plugin: [prefer-inject] add new rule (#​2461)
🩹 Fixes
  • eslint-plugin: [use-lifecycle-interface] do not report if the method uses override (#​2463)
  • eslint-plugin: [sort-keys-in-type-decorator] preserve unconfigured properties during autofix (#​2456)
❤️ Thank You

19.5.0 (2025-05-25)

🚀 Features
  • eslint-plugin: introduce sort keys in type-decorator rule (#​2187)
❤️ Thank You
  • Benjamin Schäublin

19.4.0 (2025-05-08)

🚀 Features
  • eslint-plugin: add rule prefer-output-emitter-ref (#​2324)
❤️ Thank You

19.3.0 (2025-03-22)

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

19.2.1 (2025-03-08)

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

19.2.0 (2025-03-02)

🚀 Features
  • eslint-plugin: add rule require-lifecycle-on-prototype (#​2259)
🩹 Fixes
  • eslint-plugin-template: find inline templates on components in blocks (#​2238)
❤️ Thank You

19.1.0 (2025-02-09)

🚀 Features
  • eslint-plugin: prefer-signals now checks .asReadonly() calls (#​2218)
  • eslint-plugin: prefer-signals read-only suggestion is now a fix (#​2175)
🩹 Fixes
  • eslint-plugin: [no-input-prefix] false positive on input initializer value (#​2184)
  • eslint-plugin: [prefer-signals] support linkedSignal (#​2213)
❤️ Thank You

19.0.2 (2024-12-10)

🩹 Fixes
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#​2172)
❤️ Thank You

19.0.1 (2024-12-06)

🩹 Fixes
  • eslint-plugin: adding prefer-signals rule to exported config (#​2150)
❤️ Thank You

v19.8.1

Compare Source

19.8.1 (2025-06-19)
🩹 Fixes
  • eslint-plugin-template: [no-interpolation-in-attributes] use keySpan as attr. range and sourceSpan as replacement range (#​2531)
❤️ Thank You
  • Niklas Wolf

v19.8.0

Compare Source

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

v19.7.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-uncalled-signals] handle direct signal calls in member expressions (#​2491)
❤️ Thank You

v19.7.0

Compare Source

🚀 Features
  • eslint-plugin: [require-localize-metadata] add requireCustomId option (#​2430)
  • eslint-plugin: add no-uncalled-signals rule (#​2383)
🩹 Fixes
  • eslint-plugin-template: any valid DOM element with role button is interactive (#​2488)
❤️ Thank You

v19.6.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-inject] add new rule (#​2461)
🩹 Fixes
  • eslint-plugin: [use-lifecycle-interface] do not report if the method uses override (#​2463)
  • eslint-plugin: [sort-keys-in-type-decorator] preserve unconfigured properties during autofix (#​2456)
❤️ Thank You

v19.5.0

Compare Source

🚀 Features
  • eslint-plugin: introduce sort keys in type-decorator rule (#​2187)
❤️ Thank You
  • Benjamin Schäublin

v19.4.0

Compare Source

🚀 Features
  • eslint-plugin: add rule prefer-output-emitter-ref (#​2324)
❤️ Thank You

v19.3.0

Compare Source

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

v19.2.1

Compare Source

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

v19.2.0

Compare Source

🚀 Features
  • eslint-plugin: add rule require-lifecycle-on-prototype (#​2259)
🩹 Fixes
  • eslint-plugin-template: find inline templates on components in blocks (#​2238)
❤️ Thank You

v19.1.0

Compare Source

🚀 Features
  • eslint-plugin: prefer-signals now checks .asReadonly() calls (#​2218)
  • eslint-plugin: prefer-signals read-only suggestion is now a fix (#​2175)
🩹 Fixes
  • eslint-plugin: [no-input-prefix] false positive on input initializer value (#​2184)
  • eslint-plugin: [prefer-signals] support linkedSignal (#​2213)
❤️ Thank You

v19.0.2

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#​2172)
❤️ Thank You

v19.0.1

Compare Source

🩹 Fixes
  • eslint-plugin: adding prefer-signals rule to exported config (#​2150)
❤️ Thank You
angular-eslint/angular-eslint (angular-eslint)

v21.0.0

Compare Source

🚀 Features
  • ⚠️ eslint-plugin: formally deprecate [no-conflicting-lifecycle] and remove from "all" config (5d845924)
  • ⚠️ eslint-plugin-template: add prefer-control-flow to recommended config (77cd24d3)
⚠️ Breaking Changes
  • ⚠️ eslint-plugin: formally deprecate [no-conflicting-lifecycle] and remove from "all" config (5d845924)
  • ⚠️ eslint-plugin-template: add prefer-control-flow to recommended config (77cd24d3)
❤️ Thank You

20.7.0 (2025-11-22)

🩹 Fixes
  • support eslint defineConfig types better (#​2793)
❤️ Thank You

20.6.0 (2025-11-09)

🩹 Fixes
  • angular-eslint: support eslint defineConfig types in addition to typescript-eslint config (#​2760)
❤️ Thank You

20.5.2 (2025-11-08)

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

20.5.1 (2025-11-03)

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

20.5.0 (2025-10-27)

🚀 Features
  • eslint-plugin: add rule prefer-host-metadata-property (#​2615)
  • eslint-plugin-template: add prefer-built-in-pipes rule (#​2605)
❤️ Thank You

20.4.0 (2025-10-12)

🚀 Features
  • eslint-plugin-template: add rule prefer-at-else (#​2613)
❤️ Thank You

20.3.0 (2025-09-14)

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

20.2.0 (2025-08-22)

🚀 Features
  • eslint-plugin-template: add rule no-empty-control-flow (#​2592)
❤️ Thank You

20.1.1 (2025-06-19)

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

20.1.0 (2025-06-16)

🚀 Features
  • eslint-plugin: add rules to ban experimental and developer preview (#​2037)
❤️ Thank You

v20.7.0

Compare Source

🩹 Fixes
  • support eslint defineConfig types better (#​2793)
❤️ Thank You

v20.6.0

Compare Source

🩹 Fixes
  • angular-eslint: support eslint defineConfig types in addition to typescript-eslint config (#​2760)
❤️ Thank You

v20.5.2

Compare Source

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

v20.5.1

Compare Source

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

v20.5.0

Compare Source

🚀 Features
  • eslint-plugin: add rule prefer-host-metadata-property (#​2615)
  • eslint-plugin-template: add prefer-built-in-pipes rule (#​2605)
❤️ Thank You

v20.4.0

Compare Source

🚀 Features
  • eslint-plugin-template: add rule prefer-at-else (#​2613)
❤️ Thank You

v20.3.0

Compare Source

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

v20.2.0

Compare Source

🚀 Features
  • eslint-plugin-template: add rule no-empty-control-flow (#​2592)
❤️ Thank You

v20.1.1

Compare Source

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

v20.1.0

Compare Source

🚀 Features
  • eslint-plugin: add rules to ban experimental and developer preview (#​2037)
❤️ Thank You

v20.0.0

Compare Source

🚀 Features
  • ⚠️ switch to angular v20 (e2b46ef4)
  • ⚠️ eslint-lint: add prefer-inject to recommended (c8367d3b)
  • ⚠️ eslint-plugin: remove (component|directive)-class-suffix from recommended (c1022ee6)
⚠️ Breaking Changes
  • ⚠️ switch to angular v20 (e2b46ef4)
  • ⚠️ eslint-lint: add prefer-inject to recommended (c8367d3b)
  • ⚠️ eslint-plugin: remove (component|directive)-class-suffix from recommended (c1022ee6)
❤️ Thank You

19.8.0 (2025-06-06)

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

19.7.1 (2025-06-03)

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

19.7.0 (2025-06-02)

🚀 Features
  • eslint-plugin: add no-uncalled-signals rule (#​2383)
❤️ Thank You
  • Stephen Jackson

19.6.0 (2025-05-27)

🚀 Features
  • eslint-plugin: [prefer-inject] add new rule (#​2461)
❤️ Thank You

19.5.0 (2025-05-25)

🚀 Features
  • eslint-plugin-template: add rule prefer-at-empty (#​2352)
  • eslint-plugin: introduce sort keys in type-decorator rule (#​2187)
  • eslint-plugin-template: [no-nested-tags] add rule (#​2398)
❤️ Thank You

19.4.0 (2025-05-08)

🚀 Features
  • eslint-plugin-template: Add prefer-template-literal rule (#​2308)
  • eslint-plugin: add rule prefer-output-emitter-ref (#​2324)
❤️ Thank You

19.3.0 (2025-03-22)

🚀 Features
  • eslint-plugin-template: add rule prefer-contextual-for-variables (#​2311)
❤️ Thank You

19.2.1 (2025-03-08)

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

19.2.0 (2025-03-02)

🚀 Features
  • eslint-plugin: add rule require-lifecycle-on-prototype (#​2259)
🩹 Fixes
  • eslint-plugin-template: find inline templates on components in blocks (#​2238)
❤️ Thank You

19.1.0 (2025-02-09)

🚀 Features
  • eslint-plugin-template: add rule prefer-static-string-properties (#​2228)
❤️ Thank You

19.0.2 (2024-12-10)

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

19.0.1 (2024-12-06)

🩹 Fixes
  • eslint-plugin: adding prefer-signals rule to exported config (#​2150)
❤️ Thank You

v19.8.1

Compare Source

19.8.1 (2025-06-19)

🩹 Fixes
  • eslint-plugin-template: [no-interpolation-in-attributes] use keySpan as attr. range and sourceSpan as replacement range (#​2531)
❤️ Thank You
  • Niklas Wolf

v19.8.0

Compare Source

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

v19.7.1

Compare Source

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

v19.7.0

Compare Source

🚀 Features
  • eslint-plugin: add no-uncalled-signals rule (#​2383)
❤️ Thank You
  • Stephen Jackson

v19.6.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-inject] add new rule (#​2461)
❤️ Thank You

v19.5.0

Compare Source

🚀 Features
  • eslint-plugin-template: add rule prefer-at-empty (#​2352)
  • eslint-plugin: introduce sort keys in type-decorator rule (#​2187)
  • eslint-plugin-template: [no-nested-tags] add rule (#​2398)
❤️ Thank You

v19.4.0

Compare Source

🚀 Features
  • eslint-plugin-template: Add prefer-template-literal rule (#​2308)
  • eslint-plugin: add rule prefer-output-emitter-ref (#​2324)
❤️ Thank You

v19.3.0

Compare Source

🚀 Features
  • eslint-plugin-template: add rule prefer-contextual-for-variables (#​2311)
❤️ Thank You

v19.2.1

Compare Source

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

v19.2.0

Compare Source

🚀 Features
  • eslint-plugin: add rule require-lifecycle-on-prototype (#​2259)
🩹 Fixes
  • eslint-plugin-template: find inline templates on components in blocks (#​2238)
❤️ Thank You

v19.1.0

Compare Source

🚀 Features
  • eslint-plugin-template: add rule prefer-static-string-properties (#​2228)
❤️ Thank You

v19.0.2

Compare Source

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

v19.0.1

Compare Source

🩹 Fixes
  • eslint-plugin: adding prefer-signals rule to exported config (#​2150)
❤️ Thank You

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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 renovate bot added the dependencies Pull requests that update a dependency file label Jun 6, 2025
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch from 32f4109 to 7644ca0 Compare June 9, 2025 06:31
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 3 times, most recently from 9da07cb to e8651b3 Compare June 19, 2025 12:58
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 3 times, most recently from bfa6ea3 to afbc7e3 Compare July 2, 2025 08:09
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch from afbc7e3 to 1979054 Compare July 4, 2025 10:03
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 2 times, most recently from 6b40124 to 8e52952 Compare July 21, 2025 11:06
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 2 times, most recently from 068d545 to 3e4b4ef Compare August 3, 2025 11:29
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 2 times, most recently from bf22435 to 4b054ed Compare August 13, 2025 15:37
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 3 times, most recently from 58d7573 to 20670d1 Compare August 26, 2025 11:45
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 4 times, most recently from 508a2f0 to e3f5726 Compare September 2, 2025 08:19
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 4 times, most recently from 9396949 to c1f0b21 Compare September 5, 2025 18:28
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 2 times, most recently from 491f84b to 5b3b111 Compare September 18, 2025 17:05
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 2 times, most recently from 13ffeee to 632dd81 Compare September 25, 2025 13:49
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch from 632dd81 to f428fba Compare September 30, 2025 08:08
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 5 times, most recently from 5bc30e5 to 45ae1e8 Compare October 15, 2025 07:13
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 3 times, most recently from 8cf8d2e to 7127031 Compare October 22, 2025 08:36
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 3 times, most recently from ce2aea3 to 8e6613b Compare October 30, 2025 08:43
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 5 times, most recently from daf0df0 to 1423f1d Compare November 9, 2025 22:27
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch 3 times, most recently from b053137 to 3bfd5ce Compare November 20, 2025 07:44
@renovate renovate bot force-pushed the renovate/major-angular-eslint-monorepo branch from 3bfd5ce to df30d55 Compare November 22, 2025 14:13
@renovate renovate bot changed the title chore(deps): update angular-eslint monorepo to v20 (major) chore(deps): update angular-eslint monorepo to v21 (major) Nov 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant