Bump the development-dependencies group with 3 updates
Bumps the development-dependencies group with 3 updates: eslint, prettier and nock.
Updates eslint from 8.56.0 to 8.57.0
Release notes
Sourced from eslint's releases.
v8.57.0
Features
1120b9bfeat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)dca7d0ffeat: Enableeslint.config.mjsandeslint.config.cjs(#18066) (Nitin Kumar)Bug Fixes
2196d97fix: handle absolute file paths inFlatRuleTester(#18064) (Nitin Kumar)69dd1d1fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)9852a31fix: deep merge behavior in flat config (#18065) (Nitin Kumar)4c7e9b0fix: allow circular references in config (#18056) (Milos Djermanovic)Documentation
84922d0docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)5b8c363docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)77dbfd9docs: show NEXT in version selectors (#18052) (Milos Djermanovic)Chores
Changelog
Sourced from eslint's changelog.
v8.57.0 - February 23, 2024
1813aecchore: upgrade@eslint/js@8.57.0 (#18143) (Milos Djermanovic)5c356bbchore: package.json update for@eslint/jsrelease (Jenkins)84922d0docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)1120b9bfeat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)5b8c363docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)2196d97fix: handle absolute file paths inFlatRuleTester(#18064) (Nitin Kumar)f4a1fe2test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)69dd1d1fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)9852a31fix: deep merge behavior in flat config (#18065) (Nitin Kumar)dca7d0ffeat: Enableeslint.config.mjsandeslint.config.cjs(#18066) (Nitin Kumar)4c7e9b0fix: allow circular references in config (#18056) (Milos Djermanovic)77dbfd9docs: show NEXT in version selectors (#18052) (Milos Djermanovic)42c0aefci: Enable CI forv8.xbranch (#18047) (Milos Djermanovic)v9.0.0-beta.0 - February 9, 2024
e40d1d7chore: upgrade@eslint/js@9.0.0-beta.0 (#18108) (Milos Djermanovic)9870f93chore: package.json update for@eslint/jsrelease (Jenkins)2c62e79chore: upgrade@eslint/eslintrc@3.0.1 (#18107) (Milos Djermanovic)81f0294chore: upgrade [email protected] (#18106) (Milos Djermanovic)5e2b292chore: upgrade [email protected] (#18105) (Milos Djermanovic)9163646feat!: Rule Tester checks for missing placeholder data in the message (#18073) (fnx)53f0f47feat: Add loadESLint() API method for v9 (#18097) (Nicholas C. Zakas)f1c7e6fdocs: Switch to Ethical Ads (#18090) (Strek)15c143fdocs: JS Foundation -> OpenJS Foundation in PR template (#18092) (Nicholas C. Zakas)c4d26fdfix:use-isnandoesn't report onSequenceExpressions (#18059) (StyleShit)6ea339edocs: add stricter rule test validations to v9 migration guide (#18085) (Milos Djermanovic)ce838adchore: replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#18045) (renovate[bot])3c816f1docs: use relative link from CLI to core concepts (#18083) (Milos Djermanovic)54df731chore: update dependency markdownlint-cli to ^0.39.0 (#18084) (renovate[bot])9458735docs: fix malformedeslintconfig comments in rule examples (#18078) (Francesco Trotta)07a1adadocs: link from--fixCLI doc to the relevant core concept (#18080) (Bryan Mishkin)8f06a60chore: update dependency shelljs to ^0.8.5 (#18079) (Francesco Trotta)b844324docs: Update team responsibilities (#18048) (Nicholas C. Zakas)aadfb60docs: document languageOptions and other v9 changes for context (#18074) (fnx)3c4d51dfeat!: default forenforceForClassMembersinno-useless-computed-key(#18054) (Francesco Trotta)47e60f8feat!: Stricter rule test validations (#17654) (fnx)1a94589feat!:no-unused-varsdefault caughtErrors to 'all' (#18043) (Josh Goldberg ✨)857e242docs: tweak explanation for meta.docs rule properties (#18057) (Bryan Mishkin)10485e8docs: recommend messageId over message for reporting rule violations (#18050) (Bryan Mishkin)98b5ab4docs: Update README (GitHub Actions Bot)93ffe30chore: update dependency file-entry-cache to v8 (#17903) (renovate[bot])505fbf4docs: updateno-restricted-importsrule (#18015) (Tanuj Kanti)2d11d46feat: add suggestions touse-isnanin binary expressions (#17996) (StyleShit)c25b4afdocs: Update README (GitHub Actions Bot)v9.0.0-alpha.2 - January 26, 2024
... (truncated)
Commits
abea3b68.57.01cd3f8cBuild: changelog update for 8.57.01813aecchore: upgrade@eslint/js@8.57.0 (#18143)5c356bbchore: package.json update for@eslint/jsrelease84922d0docs: Show prerelease version in dropdown (#18139)1120b9bfeat: Add loadESLint() API method for v8 (#18098)5b8c363docs: Switch to Ethical Ads (#18117)2196d97fix: handle absolute file paths inFlatRuleTester(#18064)f4a1fe2test: add more tests for ignoring files and directories (#18068)69dd1d1fix: Ensure config keys are printed for config errors (#18067)- Additional commits viewable in compare view
Updates prettier from 3.2.4 to 3.2.5
Changelog
Sourced from prettier's changelog.
3.2.5
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:<div>...</div>, styles:h1 { color: blue; }, }) export class AppComponent {}// Prettier 3.2.5
@Component({ template:<div>...</div>, 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]:<h1>{{ hello }}</h1>, }) export class AppComponent {} </tr></table>
... (truncated)
Commits
7142cf3Release 3.2.58cbee2echore(deps): update glimmer to v0.88.1 (#15991)45baee0chore(deps): update dependency magic-string to v0.30.6 (#16022)9fb32a1Minor refactor to property print (#15924)08f1940Update install script for husky v9 (#16000)6d0b1d2Update yarn to v4.1.0 (#16021)c8ba8dbchore(deps): update dependency@angular/compilerto v17.1.2 (#16018)e2250ecchore(deps): update typescript-eslint to v6.20.0 (#16015)02865f6chore(deps): update dependency npm-run-all2 to v6.1.2 (#16017)014ee5dchore(deps): update dependency hermes-parser to v0.19.0 (#16014)- Additional commits viewable in compare view
Updates nock from 13.5.1 to 13.5.4
Release notes
Sourced from nock's releases.
v13.5.4
13.5.4 (2024-02-26)
Bug Fixes
v13.5.3
13.5.3 (2024-02-17)
Bug Fixes
v13.5.2
13.5.2 (2024-02-17)
Bug Fixes
Commits
ba9fc42fix: callfs.createReadStreamlazily (#2357)81c20ddchore(deps-dev): bump chai from 4.3.10 to 4.4.1 (#2576)08b2b09chore(deps-dev): bump prettier from 3.1.0 to 3.2.4 (#2578)1005698chore(deps-dev): bump eslint-plugin-import from 2.29.0 to 2.29.1 (#2577)4162fa8fix: support literal query string (#2590)7e957b3fix: remove duplicates fromactiveMocks()andpendingMocks()(#2356)8bab28dci: add node 20 in ci (#2585)8deca36docs: add mikicho as a contributor for maintenance, code, and doc (#2584)4ad60baadd experimental fetch support notice (#2583)f4d1b15ci(test): use a singletestjob that we can require, independent of test ma...- See full diff 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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