Skip to content
This repository was archived by the owner on Feb 10, 2022. It is now read-only.

Bump codelyzer from 4.3.0 to 5.0.0#65

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/codelyzer-5.0.0
Closed

Bump codelyzer from 4.3.0 to 5.0.0#65
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/codelyzer-5.0.0

Conversation

@dependabot-preview
Copy link

Bumps codelyzer from 4.3.0 to 5.0.0.

Release notes

Sourced from codelyzer's releases.

5.0.0

🙇🏼‍♂️ Thanks to @​rafaelss95, @​mohammedzamakhan, @​wKoza, @​mgechev

BREAKING CHANGES

Angular CLI will automatically migrate your projects to reflect the latest config.

  • contextual-life-cycle is renamed to contextual-lifecycle
  • no-conflicting-life-cycle-hooks is renamed to no-conflicting-lifecycle
  • no-life-cycle-call is renamed to no-lifecycle-call
  • use-life-cycle-interface is renamed to use-lifecycle-interface
  • decorator-not-allowed is renamed to contextual-decorator
  • enforce-component-selector is renamed to use-component-selector
  • no-output-named-after-standard-event is renamed to no-output-native
  • use-host-property-decorator is renamed to no-host-metadata-property
  • use-input-property-decorator is renamed to no-inputs-metadata-property
  • use-output-property-decorator is renamed to no-outputs-metadata-property
  • no-queries-parameter is renamed to no-queries-metadata-property
  • pipe-impure is renamed to no-pipe-impure
  • use-view-encapsulation is renamed to use-component-view-encapsulation
  • i18n is renamed to template-i18n
  • banana-in-box is renamed to template-banana-in-box
  • no-template-call-expression is renamed to template-no-call-expression
  • templates-no-negated-async is renamed to template-no-negated-async
  • trackBy-function is renamed to template-use-track-by-function
  • no-attribute-parameter-decorator is renamed to no-attribute-decorator
  • max-inline-declarations is renamed to component-max-inline-declarations

Bug Fixes

  • rule: template-no-call-expression should allow $any usages (#735) (a75c204)
  • rule: no-input-rename reporting some failures incorrectly (#723) (f692dcb)
  • rule: prefer-inline-decorator should not set a max number of options (#787) (31b2b6a)
  • rule: add template-accessibility-elements-content to index.ts (#803) (1e8cbbf), closes #801
  • update peerDependencies (d5bfbd5)

Features

  • rule: add component-change-detection (#737) (a23ccde), closes #135
  • rule: add relative-url-prefix (#725) (f12f27b)
  • rule: add template-accessibility-alt-text (#741) (0815ec5)
  • rule: add template-accessibility-elements-content (#742) (6ff8c56)
  • rule: add template-accessibility-label-for (#739) (76c24fa)
  • rule: add template-accessibility-tabindex-no-positive (#744) (43902f7)
  • rule: add template-accessibility-table-scope (#743) (2832615)
  • rule: add template-accessibility-valid-aria (#746) (762f67f)
  • rule: add template-click-events-have-key-events (#761) (b0b330f)
  • rule: add template-mouse-events-have-key-events (#759) (3a7b15d)
  • rule: add template-no-autofocus (#749) (799382f)
  • rule: add template-no-distracting-elements (#760) (6b21a9e)
... (truncated)
Changelog

Sourced from codelyzer's changelog.

5.0.0 (2019-03-27)

BREAKING CHANGES

Angular CLI will automatically migrate your projects to reflect the latest config.

  • contextual-life-cycle is renamed to contextual-lifecycle
  • no-conflicting-life-cycle-hooks is renamed to no-conflicting-lifecycle
  • no-life-cycle-call is renamed to no-lifecycle-call
  • use-life-cycle-interface is renamed to use-lifecycle-interface
  • decorator-not-allowed is renamed to contextual-decorator
  • enforce-component-selector is renamed to use-component-selector
  • no-output-named-after-standard-event is renamed to no-output-native
  • use-host-property-decorator is renamed to no-host-metadata-property
  • use-input-property-decorator is renamed to no-inputs-metadata-property
  • use-output-property-decorator is renamed to no-outputs-metadata-property
  • no-queries-parameter is renamed to no-queries-metadata-property
  • pipe-impure is renamed to no-pipe-impure
  • use-view-encapsulation is renamed to use-component-view-encapsulation
  • i18n is renamed to template-i18n
  • banana-in-box is renamed to template-banana-in-box
  • no-template-call-expression is renamed to template-no-call-expression
  • templates-no-negated-async is renamed to template-no-negated-async
  • trackBy-function is renamed to template-use-track-by-function
  • no-attribute-parameter-decorator is renamed to no-attribute-decorator
  • max-inline-declarations is renamed to component-max-inline-declarations

Bug Fixes

  • rule: template-use-track-by-function not reporting failures involving multiple *ngFor directives (#721) (9269be6), closes #718
  • rule: template-no-call-expression should allow $any usages (#735) (a75c204)
  • rule: no-input-rename reporting some failures incorrectly (#723) (f692dcb)
  • rule: prefer-inline-decorator should not set a max number of options (#787) (31b2b6a)
  • rule: add template-accessibility-elements-content to index.ts (#803) (1e8cbbf), closes #801
  • rule: NgModule not being handled for contextual-lifecycle and contextual-decorators (#790) (cedfa2e)
  • rule: prefer-inline-decorator not reporting failures for some cases (#794) (a76ebbc)
  • update peerDependencies (d5bfbd5)
  • improve ngWalker by preventing an error when a class has no name (#788) (17c0fe2)

Features

  • rule: add component-change-detection (#737) (a23ccde), closes #135
  • rule: add relative-url-prefix (#725) (f12f27b)
  • rule: add template-accessibility-alt-text (#741) (0815ec5)
  • rule: add template-accessibility-elements-content (#742) (6ff8c56)
  • rule: add template-accessibility-label-for (#739) (76c24fa)
  • rule: add template-accessibility-tabindex-no-positive (#744) (43902f7)
  • rule: add template-accessibility-table-scope (#743) (2832615)
  • rule: add template-accessibility-valid-aria (#746) (762f67f)
  • rule: add template-click-events-have-key-events (#761) (b0b330f)
... (truncated)
Commits
  • abd3f3e chore(release): 5.0.0
  • a76ebbc refactor(rule): rework prefer-inline-decorator to accept options (#794)
  • 1e8cbbf fix(rule): add template-accessibility-elements-content to index.ts (#803)
  • dadf8ec feat: add support for svg templates (#800)
  • bd2a7a8 docs: update changelog
  • e64f4c6 Merge branch 'master' of github.com:mgechev/codelyzer
  • 732ef5d build: npm bump
  • 962bc8b chore: npm bump
  • e16a5b5 docs: update the gif url
  • c07ac5e refactor: walkers/visitors being exported (#793)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview
Copy link
Author

Superseded by #73.

@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/codelyzer-5.0.0 branch May 1, 2019 05:09
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant