Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 8, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@typescript-eslint/eslint-plugin 4.33.0 -> 5.7.0 age adoption passing confidence
@typescript-eslint/parser 4.33.0 -> 5.7.0 age adoption passing confidence
chalk 4.1.2 -> 5.0.0 age adoption passing confidence
eslint (source) 7.32.0 -> 8.5.0 age adoption passing confidence
eslint-config-react-app 6.0.0 -> 7.0.0 age adoption passing confidence
eslint-plugin-flowtype 6.1.1 -> 8.0.3 age adoption passing confidence
eslint-plugin-jest 24.7.0 -> 25.3.0 age adoption passing confidence
eslint-plugin-testing-library 4.12.4 -> 5.0.1 age adoption passing confidence

Release Notes

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

v5.7.0

Compare Source

Features
  • eslint-plugin: [consistent-type-exports] support TS4.5 inline export specifiers (#​4236) (be4d976)
  • eslint-plugin: [consistent-type-imports] support TS4.5 inline import specifiers (#​4237) (f61af7c)
  • eslint-plugin: [no-shadow] support TS4.5 inline import specifiers (#​4239) (96b7e8e)

v5.6.0

Compare Source

Features
  • scope-manager: support TS4.5 import/export specifier kind (#​4234) (833f822)

v5.5.0

Compare Source

Bug Fixes
  • eslint-plugin: [member-ordering] order literal names correctly in (#​4054) (d57141a)
  • eslint-plugin: [no-duplicate-imports] remove unnecessary type checking for node.source (#​4196) (637722a)
  • eslint-plugin: [no-var-requires] do not report require created from createRequire (#​4221) (0040186)
  • eslint-plugin: [prefer-for-of] do nor error when iterating over this (#​4176) (258ddb0)
  • eslint-plugin: [require-await] treat yield* asynciterable as an await (#​4125) (5a4ce6a)
  • eslint-plugin: remove all whitespaces in comparison #​4220 (#​4223) (853d799)
Features
  • eslint-plugin: [member-ordering] add option to sort case insensitive (#​3896) (e3533d5)
  • eslint-plugin: array-type distinguish whether readonly or not (#​4066) (314af44)

v5.4.0

Compare Source

Bug Fixes
  • correct issues with circular imports (#​4140) (4c87b24)
  • eslint-plugin: [explicit-member-accessibility] private fields cannot have accessibility modifiers (#​4117) (81b25c1)
  • eslint-plugin: [no-implied-eval] ignore locally declared functions (#​4049) (d97140e)
  • eslint-plugin: check optional chaining for floating promises (#​4096) (d724777)
Features

5.3.1 (2021-11-08)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.3.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.3.0

Compare Source

Bug Fixes
  • eslint-plugin: ignore private identifiers in explicit-module-boundary-types (#​4046) (80b853d)
  • eslint-plugin: skip seenTypes for unions in isTypeReadonly (#​4043) (6af7ca7)
Features
  • eslint-plugin: [no-shadow] exclude external type declaration merging (#​3959) (a93cebf)

v5.2.0

Compare Source

Bug Fixes
Features

v5.1.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-restricted-imports]: report type-only imports properly (#​3996) (283cdf2)
  • eslint-plugin: [strict-bool-expr] treat unconstrained generic as any (#​3981) (9b29ca7)

v5.0.0

Compare Source

Bug Fixes
  • eslint-plugin: [explicit-member-accessibility] report TSAbstractPropertyDefinition and TSAbstractMethodDefinition properly (#​3901) (82016f9)
  • eslint-plugin: update new rules from master (#​3840) (d88a6b4)
  • update new rules from master (b34fb7e)
  • eslint-plugin: crash in no-dupe-class-members (v5) (#​3813) (4b09644)
Features
BREAKING CHANGES
  • eslint-plugin: ban-types no longer reports object by default
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.7.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.6.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.5.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.4.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.3.1 (2021-11-08)

Note: Version bump only for package @​typescript-eslint/parser

v5.3.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.3.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.2.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.1.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.0.0

Compare Source

Features
chalk/chalk

v5.0.0

Compare Source

Breaking
  • This package is now pure ESM. Please read this.
    • If you use TypeScript, you will want to stay on Chalk 4 until TypeScript 4.6 is out. Why.
    • If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM.
    • The Chalk issue tracker is not a support channel for your favorite build/bundler tool.
  • Require Node.js 12.20 fa16f4e
  • Move some properties off the default export to individual named exports:
    • chalk.InstanceChalk
    • chalk.supportsColorsupportsColor
    • chalk.stderrchalkStderr
    • chalk.stderr.supportsColorsupportsColorStderr
  • Remove .keyword(), .hsl(), .hsv(), .hwb(), and .ansi() coloring methods (#​433) 4cf2e40
    • These were not commonly used and added a lot of bloat to Chalk. You can achieve the same by using the color-convert package.
  • The tagged template literal support moved into a separate package: chalk-template (#​524) c987c61
-import chalk from 'chalk';
+import chalkTemplate from 'chalk-template';

-chalk`2 + 3 = {bold ${2 + 3}}`;
+chalkTemplate`2 + 3 = {bold ${2 + 3}}`;
Improvements
eslint/eslint

v8.5.0

Compare Source

Features

Bug Fixes

  • 7d832d4 fix: improve prefer-template fixer (#​15230) (Nitin Kumar)
  • 981fb48 fix: do not report global references in id-match rule (#​15420) (Nitin Kumar)
  • f13d4a6 fix: improve autofix of prefer-object-has-own (#​15419) (Nitin Kumar)
  • f4559a0 fix: add helpful message when test case has non-string code/name (#​15425) (Bryan Mishkin)

Documentation

  • 314c84c docs: add an incorrect code example in for-direction (#​15434) (Holger Jeromin)
  • 3928175 docs: add destructuring examples for computed-property-spacing (#​15423) (Nitin Kumar)
  • a53e59e docs: add more examples for array-element-newline rule (#​15427) (Nitin Kumar)
  • 74cf0a0 docs: update CLA info (#​15370) (Nitin Kumar)
  • e84195e docs: fix heading level for an option in class-methods-use-this rule (#​15399) (Takuya Fukuju)

Chores

  • 225f211 test: add destructuring test cases for computed-property-spacing (#​15424) (Nitin Kumar)
  • f2c7ba6 ci: use node v16 for macOS and windows jobs (#​15418) (Nitin Kumar)

v8.4.1

Compare Source

Bug Fixes
  • 234e3d9 fix: revert changes to reported locations in max-lines-per-function (#​15397) (Milos Djermanovic)
Documentation
  • fa4d483 docs: fix typo in example for sort-keys rule (#​15393) (Nitin Kumar)

v8.4.0

Compare Source

Features

Bug Fixes

  • 4940cc5 fix: mark --rulesdir option as deprecated in CLI docs (#​15310) (Kevin Partington)

Documentation

  • 54deec5 docs: update integrations.md (#​15380) (Vlad Sholokhov)
  • fa0423a docs: fix typo in PR template (#​15365) (Nitin Kumar)
  • e233920 docs: enable a few more markdownlint rules and fix violations (#​15368) (Bryan Mishkin)
  • 632176d docs: Dedent needlessly indented example in getter-return docs (#​15363) (Jordan Eldredge)
  • 4497e88 docs: Update release notes blog post template (#​15285) (Nicholas C. Zakas)

Chores

v8.3.0

Compare Source

Features

  • 60b0a29 feat: add allowProperties option to require-atomic-updates (#​15238) (Milos Djermanovic)
  • 79278a1 feat: update no-use-before-define for class static blocks (#​15312) (Milos Djermanovic)
  • ddd01dc feat: update no-redeclare for class static blocks (#​15313) (Milos Djermanovic)
  • de69cec feat: update no-inner-declarations for class static blocks (#​15290) (Milos Djermanovic)
  • e2fe7ef feat: support for private-in syntax (fixes #​14811) (#​15060) (Yosuke Ota)
  • 34bc8d7 feat: Update espree and eslint-scope (#​15338) (Brandon Mills)
  • b171cd7 feat: update max-depth for class static blocks (#​15316) (Milos Djermanovic)
  • 6487df3 feat: update padded-blocks for class static blocks (#​15333) (Milos Djermanovic)
  • 194f36d feat: update the complexity rule for class static blocks (#​15328) (Milos Djermanovic)
  • 3530337 feat: update the indent rule for class static blocks (#​15324) (Milos Djermanovic)
  • f03cd14 feat: update lines-around-comment for class static blocks (#​15323) (Milos Djermanovic)
  • 5c64747 feat: update brace-style for class static blocks (#​15322) (Milos Djermanovic)
  • df2f1cc feat: update max-statements for class static blocks (#​15315) (Milos Djermanovic)
  • fd5a0b8 feat: update prefer-const for class static blocks (#​15325) (Milos Djermanovic)
  • b3669fd feat: code path analysis for class static blocks (#​15282) (Milos Djermanovic)
  • 15c1397 feat: update eslint-scope for class static blocks (#​15321) (Milos Djermanovic)
  • 1a1bb4b feat: update one-var for class static blocks (#​15317) (Milos Djermanovic)
  • 9b666e0 feat: update padding-line-between-statements for class static blocks (#​15318) (Milos Djermanovic)
  • d3a267f feat: update class-methods-use-this for class static blocks (#​15298) (Milos Djermanovic)
  • cdaa541 feat: update no-lone-blocks for class static blocks (#​15295) (Milos Djermanovic)
  • 8611538 feat: update block-spacing for class static blocks (#​15297) (Milos Djermanovic)
  • 7b56844 feat: update keyword-spacing for class static blocks (#​15289) (Milos Djermanovic)
  • ea18711 feat: update no-extra-semi for class static blocks (#​15287) (Milos Djermanovic)
  • 0f0971f feat: update semi rule for class static blocks (#​15286) (Milos Djermanovic)
  • abe740c feat: add examples for block-scoped-var with class static blocks (#​15302) (Milos Djermanovic)
  • 0338fd2 feat: Normalize ecmaVersion to eslint-scope when using custom parser (#​15268) (Yosuke Ota)

Bug Fixes

  • 8aa7645 fix: update vars-on-top for class static blocks (#​15306) (Milos Djermanovic)
  • 479a4cb fix: update semi-style for class static blocks (#​15309) (Milos Djermanovic)
  • 6d1c666 fix: update no-invalid-this and no-eval for class static blocks (#​15300) (Milos Djermanovic)

Documentation

  • 6b85426 docs: Expand --debug option description in the CLI documentation (#​15308) (darkred)
  • 3ae5258 docs: the strict rule does not apply to class static blocks (#​15314) (Milos Djermanovic)
  • 9309841 docs: Remove inconsistent colon in pull request docs (#​15303) (Jordan Eldredge)
  • da238cc docs: remove deprecation note from lines-around-comment (#​15293) (Milos Djermanovic)
  • 1055f16 docs: no-unused-expressions - class static blocks don't have directives (#​15283) (Milos Djermanovic)
  • 4c55216 docs: Add variables option to no-use-before-define (#​15276) (Mathias Rasmussen)

Chores

  • edd8d24 chore: upgrade eslint-visitor-keys for class static blocks (#​15277) (Milos Djermanovic)

v8.2.0

Compare Source

Features

  • c9fefd2 feat: report class evaluation TDZ errors in no-use-before-define (#​15134) (Milos Djermanovic)

Documentation

  • c415c04 docs: Use string rule severity in CLI examples (#​15253) (Kevin Partington)
  • 12b627d docs: fix typo in working-with-rules.md (#​15233) (Nitin Kumar)
  • a86ffc0 docs: fix broken anchor in configuration files (#​15223) (Pierre Berger)
  • ee8af5f docs: Link to unit tests from rule documentation (#​15207) (Brandon Mills)
  • 1c0ca3c docs: add ci and perf tags for commit (#​15215) (Nitin Kumar)

Build Related

  • 796587a build: upgrade eslint-release to v3.2.0 to support conventional commits (#​15246) (Milos Djermanovic)

Chores

v8.1.0

Compare Source

v8.0.1

Compare Source

v8.0.0

Compare Source


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot requested a review from navin-moorthy as a code owner October 8, 2021 13:36
@vercel
Copy link

vercel bot commented Oct 8, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/timelessco/renderlesskit-react-tailwind/AJEH1eE21g8SWYwaWKVSGkB6fQSM
✅ Preview: https://renderlesskit-react-tailwind-git-renovate-maj-272a5f-timelessco.vercel.app

@github-actions
Copy link

github-actions bot commented Oct 8, 2021

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
Full 0 B (-100% 🔽) 0 ms (-100% 🔽) 409 ms (-83.6% 🔽) 409 ms
Box 6.89 KB (+3.68% 🔺) 138 ms (+3.68% 🔺) 587 ms (-17.01% 🔽) 725 ms
Create Icon 12.21 KB (-4.19% 🔽) 245 ms (-4.19% 🔽) 728 ms (-29% 🔽) 973 ms
Spinner 11.94 KB (-3.73% 🔽) 239 ms (-3.73% 🔽) 554 ms (-40.86% 🔽) 792 ms
Button 16.24 KB (-2.78% 🔽) 325 ms (-2.78% 🔽) 353 ms (-18.18% 🔽) 678 ms
Badge 11.88 KB (-3.78% 🔽) 238 ms (-3.78% 🔽) 291 ms (-56.77% 🔽) 529 ms
Checkbox 16.91 KB (-2.67% 🔽) 339 ms (-2.67% 🔽) 376 ms (-36.27% 🔽) 714 ms
Radio 17.97 KB (-1.44% 🔽) 360 ms (-1.44% 🔽) 275 ms (-64.36% 🔽) 634 ms

@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from b428451 to eb35316 Compare October 9, 2021 15:01
@renovate renovate bot changed the title chore(deps): ⬆️ update dependency node-fetch to v3 chore(deps): ⬆️ update dev dependencies (major) (major) Oct 9, 2021
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from eb35316 to 6298a93 Compare October 9, 2021 20:56
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 6298a93 to 0d5861a Compare October 10, 2021 10:46
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 0d5861a to 513e5b9 Compare October 10, 2021 14:23
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 513e5b9 to a440876 Compare October 11, 2021 12:03
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from a440876 to 51e5caa Compare October 11, 2021 19:15
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 51e5caa to 936005e Compare October 11, 2021 21:29
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 936005e to 1f1f43b Compare October 11, 2021 23:15
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 1f1f43b to f188249 Compare October 12, 2021 06:28
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from f188249 to 0b2e998 Compare October 12, 2021 06:35
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 0b2e998 to 0e90c94 Compare October 12, 2021 08:49
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 0e90c94 to d6c22d4 Compare October 12, 2021 08:54
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from d6c22d4 to 8dd714d Compare October 12, 2021 11:06
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from d6f53b2 to 486a548 Compare November 23, 2021 06:11
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 486a548 to 21f86bd Compare November 23, 2021 06:32
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 21f86bd to eea1417 Compare November 24, 2021 07:33
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from eea1417 to 586f9e8 Compare November 24, 2021 11:19
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 586f9e8 to 1d8683c Compare November 24, 2021 14:29
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 1d8683c to 21a6b89 Compare November 25, 2021 06:28
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from f1040b1 to 1578795 Compare December 17, 2021 06:35
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 1578795 to 7870901 Compare December 17, 2021 12:12
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from 7870901 to a3e80bc Compare December 17, 2021 12:20
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from a3e80bc to bcc5e5e Compare December 17, 2021 23:12
@renovate renovate bot force-pushed the renovate/major-dev-dependencies-(major) branch from bcc5e5e to 8f9d44d Compare December 20, 2021 06:02
Copy link
Contributor

@navin-moorthy navin-moorthy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🎉

@kodiakhq kodiakhq bot merged commit 34f8e27 into main Dec 21, 2021
@kodiakhq kodiakhq bot deleted the renovate/major-dev-dependencies-(major) branch December 21, 2021 10:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants