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

Bump the development-dependencies group with 6 updates #95

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2024

Bumps the development-dependencies group with 6 updates:

Package From To
eslint-config-stylelint 20.0.0 21.0.0
eslint-plugin-jest 27.6.1 27.6.3
husky 8.0.3 9.0.10
lint-staged 15.2.0 15.2.1
prettier 3.1.1 3.2.5
stylelint 16.1.0 16.2.1

Updates eslint-config-stylelint from 20.0.0 to 21.0.0

Release notes

Sourced from eslint-config-stylelint's releases.

21.0.0

  • Removed: Node.js 16 support.
  • Changed: bump eslint-plugin-regexp from v1 to v2.
  • Changed: parserOptions.ecmaVersion from 2021 to 2023.
Changelog

Sourced from eslint-config-stylelint's changelog.

21.0.0

  • Removed: Node.js 16 support.
  • Changed: bump eslint-plugin-regexp from v1 to v2.
  • Changed: parserOptions.ecmaVersion from 2021 to 2023.
Commits
  • 70fa334 21.0.0
  • 939317c Prepare 21.0.0
  • 91d24ae Bump eslint-plugin-regexp from 2.1.2 to 2.2.0 (#255)
  • 7c2a8ac Bump eslint-plugin-n from 16.3.1 to 16.6.2 (#254)
  • a1d7c9c Bump the development-dependencies group with 2 updates (#253)
  • 1f23194 Change parserOptions.ecmaVersion from 2021 to 2023 (#252)
  • 6ea17f5 Bump eslint-plugin-regexp from 2.1.1 to 2.1.2 (#251)
  • bc66efb Bump eslint-config-prettier from 9.0.0 to 9.1.0 (#250)
  • 2f6ca3e Bump the development-dependencies group with 3 updates (#249)
  • abf9600 Bump eslint-plugin-n from 16.2.0 to 16.3.1 (#248)
  • Additional commits viewable in compare view

Updates eslint-plugin-jest from 27.6.1 to 27.6.3

Release notes

Sourced from eslint-plugin-jest's releases.

v27.6.3

27.6.3 (2024-01-12)

Bug Fixes

v27.6.2

27.6.2 (2024-01-10)

Reverts

  • Revert "chore: use relative path to parent tsconfig.json (#1476)" (5e6199d), closes #1476
Changelog

Sourced from eslint-plugin-jest's changelog.

27.6.3 (2024-01-12)

Bug Fixes

27.6.2 (2024-01-10)

Reverts

  • Revert "chore: use relative path to parent tsconfig.json (#1476)" (5e6199d), closes #1476
Commits
  • 18a596f chore(release): 27.6.3 [skip ci]
  • 9204a51 fix: replace use of deprecated methods (#1453)
  • 0f8a33a chore(deps): lock file maintenance
  • ce91459 chore(release): 27.6.2 [skip ci]
  • b36a648 chore: remove syntax error from test (#1487)
  • 77476aa chore(deps): update danger/danger-js action to v11.3.1 (#1478)
  • 5e6199d Revert "chore: use relative path to parent tsconfig.json (#1476)"
  • See full diff in compare view

Updates husky from 8.0.3 to 9.0.10

Release notes

Sourced from husky's releases.

v9.0.10

v9.0.9

v9.0.8

v9.0.7

v9.0.6

v9.0.5

v9.0.4

v9.0.3

v9.0.2

v9.0.1

... (truncated)

Commits

Updates lint-staged from 15.2.0 to 15.2.1

Release notes

Sourced from lint-staged's releases.

v15.2.1

Patch Changes

  • #1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
Changelog

Sourced from lint-staged's changelog.

15.2.1

Patch Changes

  • #1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
Commits
  • 999dcce chore(changeset): release
  • 52a9e3f Merge pull request #1387 from lint-staged/ignore-stdin
  • dd72fde ci: update "actions/cache@v4"
  • e4023f6 fix: ignore stdin of spawned commands
  • 46f2c43 ci: update actions/setup-node@v4
  • a684125 ci: update CodeQL action v3
  • 3b9660d chore(deps): update dependencies
  • See full diff in compare view

Updates prettier from 3.1.1 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.4
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}
// Prettier 3.2.5
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";
@​Component({
[template]: &lt;h1&gt;{{       hello }}&lt;/h1&gt;,
})
export class AppComponent {}
</tr></table>

... (truncated)

Commits

Updates stylelint from 16.1.0 to 16.2.1

Release notes

Sourced from stylelint's releases.

16.2.1

  • Fixed: report flags not reporting on subsequent runs when cache is used (#7483) (@​ybiquitous).
  • Fixed: custom-property-no-missing-var-function false positives for properties that can contain author-defined identifiers (#7478) (@​ybiquitous).
  • Fixed: selector-pseudo-class-no-unknown false positives for :seeking, the media loading state and sound state pseudo-classes (#7490) (@​Mouvedia).
  • Fixed: selector-max-specificity false positives with ignoreSelectors option for of <selector> syntax (#7475) (@​ybiquitous).
  • Fixed: function-calc-no-unspaced-operator performance (#7505) (@​ybiquitous).
  • Fixed: validateOptions to report when secondary option object is an empty object or null (#7476) (@​ybiquitous).
  • Fixed: report() error message responsibility for a missing node or line number (#7474) (@​ybiquitous).

16.2.0

  • Added: media-query-no-invalid specific problem messages (#7462) (@​romainmenke).
  • Added: checkContextFunctionalPseudoClasses: [] to selector-max-id (#7380) (@​brigitamaria).
  • Fixed: declaration-property-value-no-unknown false negatives for @starting-style (#7461) (@​fpetrakov).
  • Fixed: function-no-unknown|value-keyword-case false positives for template literals with line breaks (#7443) (@​Sh031224).
  • Fixed: allowEmptyInput option ignored in configuration object regression (#7446) (@​ybiquitous).
  • Fixed: at-rule-no-unknown false positives for @starting-style (#7438) (@​fpetrakov).
  • Fixed: ERR_UNSUPPORTED_ESM_URL_SCHEME for --custom-formatter on Windows (#7432) (@​JounQin).
  • Fixed: Error: Could not find <package> message clarity (#7456) (@​jeddy3).
  • Fixed: overrides.files negated pattern regression introduced in 15.0.0 (#7468) (@​ybiquitous).
Changelog

Sourced from stylelint's changelog.

16.2.1

  • Fixed: report flags not reporting on subsequent runs when cache is used (#7483) (@​ybiquitous).
  • Fixed: custom-property-no-missing-var-function false positives for properties that can contain author-defined identifiers (#7478) (@​ybiquitous).
  • Fixed: selector-pseudo-class-no-unknown false positives for :seeking, the media loading state and sound state pseudo-classes (#7490) (@​Mouvedia).
  • Fixed: selector-max-specificity false positives with ignoreSelectors option for of <selector> syntax (#7475) (@​ybiquitous).
  • Fixed: function-calc-no-unspaced-operator performance (#7505) (@​ybiquitous).
  • Fixed: validateOptions to report when secondary option object is an empty object or null (#7476) (@​ybiquitous).
  • Fixed: report() error message responsibility for a missing node or line number (#7474) (@​ybiquitous).

16.2.0

  • Added: media-query-no-invalid specific problem messages (#7462) (@​romainmenke).
  • Added: checkContextFunctionalPseudoClasses: [] to selector-max-id (#7380) (@​brigitamaria).
  • Fixed: declaration-property-value-no-unknown false negatives for @starting-style (#7461) (@​fpetrakov).
  • Fixed: function-no-unknown|value-keyword-case false positives for template literals with line breaks (#7443) (@​Sh031224).
  • Fixed: allowEmptyInput option ignored in configuration object regression (#7446) (@​ybiquitous).
  • Fixed: at-rule-no-unknown false positives for @starting-style (#7438) (@​fpetrakov).
  • Fixed: ERR_UNSUPPORTED_ESM_URL_SCHEME for --custom-formatter on Windows (#7432) (@​JounQin).
  • Fixed: Error: Could not find <package> message clarity (#7456) (@​jeddy3).
  • Fixed: overrides.files negated pattern regression introduced in 15.0.0 (#7468) (@​ybiquitous).
Commits
  • 5c68274 16.2.1
  • 52cb83f Prepare 16.2.1 (#7479)
  • 328544d Document CLI user guide to fix typo for —custom-syntax (#7503)
  • 5e2eff7 Fix function-calc-no-unspaced-operator performance (#7505)
  • 398d3a8 Fix benchmark script (#7504)
  • 3de4eba Bump husky from 8.0.3 to 9.0.6 (#7500)
  • 382961f Fix report flags not reporting on subsequent runs when cache is used (#7483)
  • f02d168 Fix validateOptions to report when secondary option object is an empty obje...
  • a889974 Fix selector-pseudo-class-no-unknown false positives for :seeking, the me...
  • e86c9cd Provide repository info to gh command in GitHub action (#7491)
  • 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 development-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [eslint-config-stylelint](https://github.com/stylelint/eslint-config-stylelint) | `20.0.0` | `21.0.0` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `27.6.1` | `27.6.3` |
| [husky](https://github.com/typicode/husky) | `8.0.3` | `9.0.10` |
| [lint-staged](https://github.com/okonet/lint-staged) | `15.2.0` | `15.2.1` |
| [prettier](https://github.com/prettier/prettier) | `3.1.1` | `3.2.5` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.1.0` | `16.2.1` |


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

Updates `eslint-plugin-jest` from 27.6.1 to 27.6.3
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v27.6.1...v27.6.3)

Updates `husky` from 8.0.3 to 9.0.10
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v8.0.3...v9.0.10)

Updates `lint-staged` from 15.2.0 to 15.2.1
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.0...v15.2.1)

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

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

---
updated-dependencies:
- dependency-name: eslint-config-stylelint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the pr: dependencies relates to dependencies label Feb 5, 2024
@jeddy3 jeddy3 merged commit b26047a into main Feb 5, 2024
6 checks passed
@jeddy3 jeddy3 deleted the dependabot/npm_and_yarn/development-dependencies-9242b7adb1 branch February 5, 2024 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pr: dependencies relates to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant