-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Upgrade @typescript-eslint/eslint-plugin from 7.4.0 to 8.26.0 #53
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
base: master
Are you sure you want to change the base?
[Snyk] Upgrade @typescript-eslint/eslint-plugin from 7.4.0 to 8.26.0 #53
Conversation
Snyk has created this PR to upgrade @typescript-eslint/eslint-plugin from 7.4.0 to 8.26.0. See this package in npm: @typescript-eslint/eslint-plugin See this project in Snyk: https://app.snyk.io/org/nerds-github/project/a6d95be2-6fa7-418d-8fd1-0cd3974eee23?utm_source=github&utm_medium=referral&page=upgrade-pr
Reviewer's Guide by SourceryThis pull request upgrades the Updated class diagram for ESLint rulesclassDiagram
class ESLintPlugin {
<<interface>>
+applyRule(ruleName: string, options?: any): void
+enableRule(ruleName: string): void
+disableRule(ruleName: string): void
}
note for ESLintPlugin "This interface represents the core functionality of the ESLint plugin, including applying, enabling, and disabling rules."
class RuleTester {
+run(ruleName: string, rule: ESLintRule, tests: ESLintTests): void
}
note for RuleTester "This class is used for testing ESLint rules, ensuring they behave as expected."
class ESLintRule {
<<interface>>
+create(context: ESLintContext): RuleListener
}
note for ESLintRule "This interface represents an ESLint rule with a create method that returns a RuleListener."
class RuleListener {
<<interface>>
+[selector: string]: (node: ASTNode) => void
}
note for RuleListener "This interface represents a listener for specific AST node types, allowing the rule to analyze and report issues."
class ESLintContext {
<<interface>>
+report(node: ASTNode, message: string): void
}
note for ESLintContext "This interface provides the context in which a rule is executed, including the ability to report issues."
class ASTNode {
<<interface>>
+type: string
+loc: SourceLocation
}
note for ASTNode "This interface represents an abstract syntax tree node."
class SourceLocation {
<<interface>>
+start: Position
+end: Position
}
note for SourceLocation "This interface represents the location of a node in the source code."
class Position {
<<interface>>
+line: number
+column: number
}
note for Position "This interface represents a position in the source code."
ESLintPlugin -- ESLintRule : uses
ESLintRule -- ESLintContext : uses
ESLintContext -- ASTNode : uses
ASTNode -- SourceLocation : has
SourceLocation -- Position : has
RuleTester -- ESLintRule : tests
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. Here's why:
- It seems to have been created by a bot ('[Snyk]' found in title). We assume it knows what it's doing!
- We don't review packaging changes - Let us know if you'd like us to change this.
Snyk has created this PR to upgrade @typescript-eslint/eslint-plugin from 7.4.0 to 8.26.0.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
The recommended version is 746 versions ahead of your current version.
The recommended version was released 23 days ago.
Issues fixed by the recommended upgrade:
SNYK-JS-VUEI18N-9376708
SNYK-JS-CROSSSPAWN-8303230
SNYK-JS-INTLIFYSHARED-8442251
SNYK-JS-VUEI18N-8442254
SNYK-JS-BABELHELPERS-9397697
SNYK-JS-INTLIFYCOREBASE-8442262
SNYK-JS-NANOID-8492085
SNYK-JS-ROLLUP-8073097
SNYK-JS-VITE-8648411
SNYK-JS-VUEI18N-8442260
Release notes
Package name: @typescript-eslint/eslint-plugin
8.26.0 (2025-03-03)
🚀 Features
TestLanguageOptions
(#10892)🩹 Fixes
accessor
properties with an invalidvoid
type (#10864)parser
dependency (#10909)❤️ Thank You
You can read about our versioning strategy and releases on our website.
8.25.0 (2025-02-24)
🚀 Features
🩹 Fixes
attributes
withoptions
property inTSImportType
(#10691)ImportAttribute
(#10649)❤️ Thank You
You can read about our versioning strategy and releases on our website.
8.24.1 (2025-02-17)
🩹 Fixes
any
value assigned as an initializer of anaccessor
property (#10785)accessor
class properties (#10789)accessor
properties with a function initializer (#10794)accessor
class properties with a function initializer (#10804)accessor
class properties for missing accessibility modifier (#10805)accessor
property declaration (#10813)static
accessor
properties (#10814)accessor
methods with a function initializer (#10796)❤️ Thank You
You can read about our versioning strategy and releases on our website.
8.24.0 (2025-02-10)
🚀 Features
allowConstantLoopConditions
more granular (#10639)reportUnusedInlineConfigs
to LinterOptions (#10718)🩹 Fixes
allowNumberAndString
isfalse
(#10737)❤️ Thank You
You can read about our versioning strategy and releases on our website.
8.23.0 (2025-02-03)
🚀 Features
parent
types for function-declaration, default-export and named-export nodes (#10685)🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
8.22.0 (2025-01-27)
🚀 Features
🩹 Fixes
TypeOrValueSpecifier
with aPackageSpecifier
(#10667)❤️ Thank You
You can read about our versioning strategy and releases on our website.
8.21.0 (2025-01-20)
🚀 Features
TSImportType
(#10640)🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
Summary by Sourcery
Upgrade @typescript-eslint/eslint-plugin from version 7.4.0 to 8.26.0
Bug Fixes:
Enhancements: