Skip to content
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

chore(deps-dev): bump the lint group across 1 directory with 7 updates #627

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2024

Bumps the lint group with 7 updates in the /ember directory:

Package From To
eslint-plugin-ember 12.2.1 12.3.3
eslint-plugin-n 17.11.1 17.14.0
prettier 3.3.3 3.4.2
prettier-plugin-ember-template-tag 2.0.2 2.0.4
stylelint 16.10.0 16.11.0
stylelint-config-standard-scss 13.1.0 14.0.0
stylelint-scss 6.8.1 6.10.0

Updates eslint-plugin-ember from 12.2.1 to 12.3.3

Release notes

Sourced from eslint-plugin-ember's releases.

v12.3.3-eslint-plugin-ember

Release (2024-11-22)

eslint-plugin-ember 12.3.3 (patch)

🐛 Bug Fix

  • eslint-plugin-ember

Committers: 1

v12.3.2-eslint-plugin-ember

Release (2024-11-21)

eslint-plugin-ember 12.3.2 (patch)

🐛 Bug Fix

Committers: 1

v12.3.1-eslint-plugin-ember

Release (2024-10-25)

eslint-plugin-ember 12.3.1 (patch)

🐛 Bug Fix

  • eslint-plugin-ember
    • #2200 Fix no-component-lifecycle-hook in double extended classic component (@​wagenet)

Committers: 1

v12.3.0-eslint-plugin-ember

Release (2024-10-23)

eslint-plugin-ember 12.3.0 (minor)

🚀 Enhancement

🐛 Bug Fix

🏠 Internal

... (truncated)

Changelog

Sourced from eslint-plugin-ember's changelog.

Changelog

Release (2024-11-22)

eslint-plugin-ember 12.3.3 (patch)

🐛 Bug Fix

  • eslint-plugin-ember

Committers: 1

Release (2024-11-21)

eslint-plugin-ember 12.3.2 (patch)

🐛 Bug Fix

Committers: 1

Release (2024-10-25)

eslint-plugin-ember 12.3.1 (patch)

🐛 Bug Fix

  • eslint-plugin-ember
    • #2200 Fix no-component-lifecycle-hook in double extended classic component (@​wagenet)

Committers: 1

Release (2024-10-23)

eslint-plugin-ember 12.3.0 (minor)

🚀 Enhancement

🐛 Bug Fix

🏠 Internal

... (truncated)

Commits

Updates eslint-plugin-n from 17.11.1 to 17.14.0

Release notes

Sourced from eslint-plugin-n's releases.

v17.14.0

17.14.0 (2024-11-21)

🌟 Features

v17.13.2

17.13.2 (2024-11-15)

🩹 Fixes

  • no-missing-require: handle multiple resolvePaths (#383) (df6ad2a)

v17.13.1

17.13.1 (2024-11-07)

🩹 Fixes

  • exported / referenced plugin same instance (#380) (3c45b67)

v17.13.0

17.13.0 (2024-11-05)

🌟 Features

  • no-unsupported: support Node 20.18.0 (#374) (d39d99a)

🩹 Fixes

  • no-unsupported: fix node:test module (#378) (0b228dd)

🧹 Chores

v17.12.0

17.12.0 (2024-10-30)

🌟 Features

  • no-unsupported: Support node 23.0.0 and 22.10.0 (#358) (0fd0350)

... (truncated)

Changelog

Sourced from eslint-plugin-n's changelog.

17.14.0 (2024-11-21)

🌟 Features

17.13.2 (2024-11-15)

🩹 Fixes

  • no-missing-require: handle multiple resolvePaths (#383) (df6ad2a)

17.13.1 (2024-11-07)

🩹 Fixes

  • exported / referenced plugin same instance (#380) (3c45b67)

17.13.0 (2024-11-05)

🌟 Features

  • no-unsupported: support Node 20.18.0 (#374) (d39d99a)

🩹 Fixes

  • no-unsupported: fix node:test module (#378) (0b228dd)

🧹 Chores

17.12.0 (2024-10-30)

🌟 Features

  • no-unsupported: Support node 23.0.0 and 22.10.0 (#358) (0fd0350)
  • no-unsupported: Support node 23.1.0 (#370) (06d60ae)

🩹 Fixes

... (truncated)

Commits

Updates prettier from 3.3.3 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates prettier-plugin-ember-template-tag from 2.0.2 to 2.0.4

Release notes

Sourced from prettier-plugin-ember-template-tag's releases.

v2.0.4-prettier-plugin-ember-template-tag

Release (2024-11-06)

prettier-plugin-ember-template-tag 2.0.4 (patch)

🐛 Bug Fix

  • prettier-plugin-ember-template-tag

Committers: 1

v2.0.3-prettier-plugin-ember-template-tag

Release (2024-11-06)

prettier-plugin-ember-template-tag 2.0.3 (patch)

🏠 Internal

Committers: 2

Changelog

Sourced from prettier-plugin-ember-template-tag's changelog.

Changelog

Release (2024-11-06)

prettier-plugin-ember-template-tag 2.0.4 (patch)

🐛 Bug Fix

  • prettier-plugin-ember-template-tag

Committers: 1

Release (2024-11-06)

prettier-plugin-ember-template-tag 2.0.3 (patch)

🏠 Internal

Committers: 2

Commits

Updates stylelint from 16.10.0 to 16.11.0

Release notes

Sourced from stylelint's releases.

16.11.0

Changelog

Sourced from stylelint's changelog.

16.11.0

Commits
  • 4385d8f 16.11.0
  • d24438b Prepare 16.11.0 (#8049)
  • cce8a86 Fix font-family-no-missing-generic-family-keyword false positives for `font...
  • 49f32a5 Bump typescript from 5.6.3 to 5.7.2 in the typescript group (#8141)
  • 25cf2b3 Bump rollup from 4.27.2 to 4.27.4 (#8142)
  • 4a82b50 Fix media-feature-name-value-no-unknown false positives for `display-mode: ...
  • e1460bd Bump @​changesets/cli from 2.27.9 to 2.27.10 in the changesets group (#8140)
  • aefbb7a Bump rollup from 4.25.0 to 4.27.2 (#8130)
  • 3de7212 Enable tokenless upload for Codecov (#8131)
  • bda98ab Bump eslint from 9.14.0 to 9.15.0 in the eslint group (#8128)
  • Additional commits viewable in compare view

Updates stylelint-config-standard-scss from 13.1.0 to 14.0.0

Release notes

Sourced from stylelint-config-standard-scss's releases.

14.0.0

  • Changed: updated to [email protected].
  • Removed: stylelint less than 16.11.0 from peer dependencies.
Changelog

Sourced from stylelint-config-standard-scss's changelog.

14.0.0

  • Changed: updated to [email protected].
  • Removed: stylelint less than 16.11.0 from peer dependencies.
Commits

Updates stylelint-scss from 6.8.1 to 6.10.0

Release notes

Sourced from stylelint-scss's releases.

6.10.0

  • Added: declaration-property-value-no-unknown support nested properties with shorthand values (#1071).
  • Fixed: declaration-property-value-no-unknown fix multiline values parsing (#1085).

Full Changelog: stylelint-scss/stylelint-scss@v6.9.0...v6.10.0

6.9.0

  • Added: missing native functions (#1070).
  • Fixed: unify rule messages (#1072).

Full Changelog: stylelint-scss/stylelint-scss@v6.8.1...v6.9.0

Changelog

Sourced from stylelint-scss's changelog.

6.10.0

  • Added: declaration-property-value-no-unknown support nested properties with shorthand values (#1071).
  • Fixed: declaration-property-value-no-unknown fix multiline values parsing (#1085).

Full Changelog: stylelint-scss/stylelint-scss@v6.9.0...v6.10.0

6.9.0

  • Added: missing native functions (#1070).
  • Fixed: unify rule messages (#1072).

Full Changelog: stylelint-scss/stylelint-scss@v6.8.1...v6.9.0

Commits
  • 9c46a27 6.10.0
  • 073c591 Prepare version 6.10.0
  • f5cc0d2 build(deps): bump postcss-selector-parser from 6.1.2 to 7.0.0 (#1074)
  • 1a94b52 build(deps-dev): bump husky from 9.1.6 to 9.1.7 (#1087)
  • 94a1ee5 Bump postcss from 8.4.47 to 8.4.49 (#1086)
  • 08900be Fix multiline values parsing in declaration-property-value-no-unknown (#1085)
  • 1f06543 Support nested properties with shorthand values in declaration-proper… (#1071)
  • bac88c5 6.9.0
  • 6054d76 Prepare version 6.9.0
  • 822698c Update contributors list
  • Additional commits viewable in compare view

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 close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the lint group with 7 updates in the /ember directory:

| Package | From | To |
| --- | --- | --- |
| [eslint-plugin-ember](https://github.com/ember-cli/eslint-plugin-ember) | `12.2.1` | `12.3.3` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.11.1` | `17.14.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [prettier-plugin-ember-template-tag](https://github.com/ember-tooling/prettier-plugin-ember-template-tag) | `2.0.2` | `2.0.4` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.10.0` | `16.11.0` |
| [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss) | `13.1.0` | `14.0.0` |
| [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `6.8.1` | `6.10.0` |



Updates `eslint-plugin-ember` from 12.2.1 to 12.3.3
- [Release notes](https://github.com/ember-cli/eslint-plugin-ember/releases)
- [Changelog](https://github.com/ember-cli/eslint-plugin-ember/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ember-cli/eslint-plugin-ember/commits)

Updates `eslint-plugin-n` from 17.11.1 to 17.14.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v17.11.1...v17.14.0)

Updates `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `prettier-plugin-ember-template-tag` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/ember-tooling/prettier-plugin-ember-template-tag/releases)
- [Changelog](https://github.com/ember-tooling/prettier-plugin-ember-template-tag/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ember-tooling/prettier-plugin-ember-template-tag/commits)

Updates `stylelint` from 16.10.0 to 16.11.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.10.0...16.11.0)

Updates `stylelint-config-standard-scss` from 13.1.0 to 14.0.0
- [Release notes](https://github.com/stylelint-scss/stylelint-config-standard-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-config-standard-scss@v13.1.0...v14.0.0)

Updates `stylelint-scss` from 6.8.1 to 6.10.0
- [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-scss@v6.8.1...v6.10.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-ember
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: prettier-plugin-ember-template-tag
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: lint
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: stylelint-config-standard-scss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: stylelint-scss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from c0rydoras as a code owner December 4, 2024 11:33
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 4, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 10, 2024

Superseded by #634.

@dependabot dependabot bot closed this Dec 10, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/ember/lint-c006ec252f branch December 10, 2024 11:34
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants