typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
### [`v5.56.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0)
##### Bug Fixes
- **eslint-plugin:** \[member-ordering] check order when optionalityOrder is present with no optional members ([#6619](https://togithub.com/typescript-eslint/typescript-eslint/issues/6619)) ([6aff431](https://togithub.com/typescript-eslint/typescript-eslint/commit/6aff431668eb0d25aa74b527cbe458f9dcd0d92a))
- **eslint-plugin:** \[no-misused-promises] avoid unnecessary calls to getContextualType ([#6193](https://togithub.com/typescript-eslint/typescript-eslint/issues/6193)) ([745cfe4](https://togithub.com/typescript-eslint/typescript-eslint/commit/745cfe4a35319416b3c307ee9fd57c63bf1660cd))
- **eslint-plugin:** \[no-misused-promises] fix incorrect detection of void functions in JSX attributes ([#6638](https://togithub.com/typescript-eslint/typescript-eslint/issues/6638)) ([9e41cee](https://togithub.com/typescript-eslint/typescript-eslint/commit/9e41ceeaea3bf266e5114cfb1855e70a1a13284b))
- **eslint-plugin:** \[strict-boolean-expression] support falsy and truthy literals simultaneously ([#6672](https://togithub.com/typescript-eslint/typescript-eslint/issues/6672)) ([62ef487](https://togithub.com/typescript-eslint/typescript-eslint/commit/62ef487a99010827e99a792db5e565ad7c1d6220))
- **eslint-plugin:** \[strict-boolean-expressions] handle truthy enums ([#6618](https://togithub.com/typescript-eslint/typescript-eslint/issues/6618)) ([0d0639f](https://togithub.com/typescript-eslint/typescript-eslint/commit/0d0639fb25e5ac8d7b5e4ceac4273e17e8ee0249))
- **eslint-plugin:** add TSPropertySignature with TSFunctionType annotation to typeMethod selector ([#6645](https://togithub.com/typescript-eslint/typescript-eslint/issues/6645)) ([3fc5c63](https://togithub.com/typescript-eslint/typescript-eslint/commit/3fc5c63f87bfd9d95f7e51fddc7ef16a6c3c5662))
##### Features
- **eslint-plugin:** add allowNever support to restrict-template-expressions ([#6554](https://togithub.com/typescript-eslint/typescript-eslint/issues/6554)) ([423f164](https://togithub.com/typescript-eslint/typescript-eslint/commit/423f1642424293488fa03a52777c0df73a40e5fd))
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
### [`v5.56.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0)
**Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
actions/checkout
### [`v2.7.0`](https://togithub.com/actions/checkout/releases/tag/v2.7.0)
[Compare Source](https://togithub.com/actions/checkout/compare/v2.6.0...v2.7.0)
##### What's Changed
- Add new public key for known_hosts ([#1237](https://togithub.com/actions/checkout/issues/1237)) by [@TingluoHuang](https://togithub.com/TingluoHuang) in [https://github.com/actions/checkout/pull/1238](https://togithub.com/actions/checkout/pull/1238)
**Full Changelog**: https://github.com/actions/checkout/compare/v2.6.0...v2.7.0
prettier/eslint-config-prettier
### [`v8.8.0`](https://togithub.com/prettier/eslint-config-prettier/blob/HEAD/CHANGELOG.md#Version-880-2023-03-20)
[Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v8.7.0...v8.8.0)
- Added: \[[@typescript-eslint/lines-around-comment](https://togithub.com/typescript-eslint/lines-around-comment)]. Thanks to [@ttionya](https://togithub.com/ttionya)!
prettier/prettier
### [`v2.8.7`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#287)
[Compare Source](https://togithub.com/prettier/prettier/compare/2.8.6...2.8.7)
[diff](https://togithub.com/prettier/prettier/compare/2.8.6...2.8.7)
##### Allow multiple decorators on same getter/setter ([#14584](https://togithub.com/prettier/prettier/pull/14584) by [@fisker](https://togithub.com/fisker))
```ts
// Input
class A {
@decorator()
get foo () {}
@decorator()
set foo (value) {}
}
// Prettier 2.8.6
SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3)
3 | get foo () {}
4 |
> 5 | @decorator()
| ^^^^^^^^^^^^
6 | set foo (value) {}
7 | }
// Prettier 2.8.7
class A {
@decorator()
get foo() {}
@decorator()
set foo(value) {}
}
```
### [`v2.8.6`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#286)
[Compare Source](https://togithub.com/prettier/prettier/compare/2.8.5...2.8.6)
[diff](https://togithub.com/prettier/prettier/compare/2.8.5...2.8.6)
##### Allow decorators on private members and class expressions ([#14548](https://togithub.com/prettier/prettier/pull/14548) by [@fisker](https://togithub.com/fisker))
```ts
// Input
class A {
@decorator()
#privateMethod () {}
}
// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
1 | class A {
> 2 | @decorator()
| ^^^^^^^^^^^^
3 | #privateMethod () {}
4 | }
// Prettier 2.8.6
class A {
@decorator()
#privateMethod() {}
}
```
### [`v2.8.5`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#285)
[Compare Source](https://togithub.com/prettier/prettier/compare/2.8.4...2.8.5)
[diff](https://togithub.com/prettier/prettier/compare/2.8.4...2.8.5)
##### Support TypeScript 5.0 ([#14391](https://togithub.com/prettier/prettier/pull/14391) by [@fisker](https://togithub.com/fisker), [#13819](https://togithub.com/prettier/prettier/pull/13819) by [@fisker](https://togithub.com/fisker), [@sosukesuzuki](https://togithub.com/sosukesuzuki))
TypeScript 5.0 introduces two new syntactic features:
- `const` modifiers for type parameters
- `export type *` declarations
##### Add missing parentheses for decorator ([#14393](https://togithub.com/prettier/prettier/pull/14393) by [@fisker](https://togithub.com/fisker))
```jsx
// Input
class Person {
@(myDecoratorArray[0])
greet() {}
}
// Prettier 2.8.4
class Person {
@myDecoratorArray[0]
greet() {}
}
// Prettier 2.8.5
class Person {
@(myDecoratorArray[0])
greet() {}
}
```
##### Add parentheses for `TypeofTypeAnnotation` to improve readability ([#14458](https://togithub.com/prettier/prettier/pull/14458) by [@fisker](https://togithub.com/fisker))
```tsx
// Input
type A = (typeof node.children)[];
// Prettier 2.8.4
type A = typeof node.children[];
// Prettier 2.8.5
type A = (typeof node.children)[];
```
##### Support `max_line_length=off` when parsing `.editorconfig` ([#14516](https://togithub.com/prettier/prettier/pull/14516) by [@josephfrazier](https://togithub.com/josephfrazier))
If an .editorconfig file is in your project and it sets `max_line_length=off` for the file you're formatting,
it will be interpreted as a `printWidth` of `Infinity` rather than being ignored
(which previously resulted in the default `printWidth` of 80 being applied, if not overridden by Prettier-specific configuration).
```html
;
;
```
snyk/snyk
### [`v1.1127.0`](https://togithub.com/snyk/cli/releases/tag/v1.1127.0)
[Compare Source](https://togithub.com/snyk/snyk/compare/v1.1126.0...v1.1127.0)
##### Features
- add debug info for failed send test payload request ([770c7c3](https://togithub.com/snyk/snyk/commit/770c7c3c172c01723aad2b812da9c27bdb358ca1))
### [`v1.1126.0`](https://togithub.com/snyk/snyk/compare/v1.1125.0...v1.1126.0)
[Compare Source](https://togithub.com/snyk/snyk/compare/v1.1125.0...v1.1126.0)
### [`v1.1125.0`](https://togithub.com/snyk/cli/releases/tag/v1.1125.0)
[Compare Source](https://togithub.com/snyk/snyk/compare/v1.1124.0...v1.1125.0)
##### Bug Fixes
- update gradle plugin ([a386933](https://togithub.com/snyk/snyk/commit/a386933ba2126c8e56f8b954aceb832cad3fda10))
### [`v1.1124.0`](https://togithub.com/snyk/cli/releases/tag/v1.1124.0)
[Compare Source](https://togithub.com/snyk/snyk/compare/v1.1123.0...v1.1124.0)
##### Bug Fixes
- checksum comparison failed \[HEAD-202] ([#4476](https://togithub.com/snyk/snyk/issues/4476)) ([d3f72b2](https://togithub.com/snyk/snyk/commit/d3f72b2435f1dd6048081dfa9fb3f22409d9bbd0))
- revert to using console.error for debug messages ([#4478](https://togithub.com/snyk/snyk/issues/4478)) ([f28ceb1](https://togithub.com/snyk/snyk/commit/f28ceb1d7f47166d35fb55d15b4627d66b36da84))
##### Features
- npm lock v2 and v3 support ([3c48d2e](https://togithub.com/snyk/snyk/commit/3c48d2ea80b5f5c35f8d6a34a4931e2b8d8d6916))
- npm workspaces support ([921d41b](https://togithub.com/snyk/snyk/commit/921d41b6be1ef02814c5b1eb5d6e354f2395f968))
### [`v1.1123.0`](https://togithub.com/snyk/cli/releases/tag/v1.1123.0)
[Compare Source](https://togithub.com/snyk/snyk/compare/v1.1122.0...v1.1123.0)
##### Features
- bump snyk cpp plugin to 2.22.0 ([2e84eef](https://togithub.com/snyk/snyk/commit/2e84eef08540761bd588799921a34f0c301b2ce6))
### [`v1.1122.0`](https://togithub.com/snyk/cli/releases/tag/v1.1122.0)
[Compare Source](https://togithub.com/snyk/snyk/compare/v1.1121.0...v1.1122.0)
##### Bug Fixes
- support new setuptools version ([1c740b4](https://togithub.com/snyk/snyk/commit/1c740b425392c40399dc2fbff01583ab2ae8b99e))
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
[ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
This PR contains the following updates:
5.55.0
->5.56.0
5.55.0
->5.56.0
v2.6.0
->v2.7.0
8.7.0
->8.8.0
2.8.4
->2.8.7
1.1121.0
->1.1127.0
Release Notes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
### [`v5.56.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) ##### Bug Fixes - **eslint-plugin:** \[member-ordering] check order when optionalityOrder is present with no optional members ([#6619](https://togithub.com/typescript-eslint/typescript-eslint/issues/6619)) ([6aff431](https://togithub.com/typescript-eslint/typescript-eslint/commit/6aff431668eb0d25aa74b527cbe458f9dcd0d92a)) - **eslint-plugin:** \[no-misused-promises] avoid unnecessary calls to getContextualType ([#6193](https://togithub.com/typescript-eslint/typescript-eslint/issues/6193)) ([745cfe4](https://togithub.com/typescript-eslint/typescript-eslint/commit/745cfe4a35319416b3c307ee9fd57c63bf1660cd)) - **eslint-plugin:** \[no-misused-promises] fix incorrect detection of void functions in JSX attributes ([#6638](https://togithub.com/typescript-eslint/typescript-eslint/issues/6638)) ([9e41cee](https://togithub.com/typescript-eslint/typescript-eslint/commit/9e41ceeaea3bf266e5114cfb1855e70a1a13284b)) - **eslint-plugin:** \[strict-boolean-expression] support falsy and truthy literals simultaneously ([#6672](https://togithub.com/typescript-eslint/typescript-eslint/issues/6672)) ([62ef487](https://togithub.com/typescript-eslint/typescript-eslint/commit/62ef487a99010827e99a792db5e565ad7c1d6220)) - **eslint-plugin:** \[strict-boolean-expressions] handle truthy enums ([#6618](https://togithub.com/typescript-eslint/typescript-eslint/issues/6618)) ([0d0639f](https://togithub.com/typescript-eslint/typescript-eslint/commit/0d0639fb25e5ac8d7b5e4ceac4273e17e8ee0249)) - **eslint-plugin:** add TSPropertySignature with TSFunctionType annotation to typeMethod selector ([#6645](https://togithub.com/typescript-eslint/typescript-eslint/issues/6645)) ([3fc5c63](https://togithub.com/typescript-eslint/typescript-eslint/commit/3fc5c63f87bfd9d95f7e51fddc7ef16a6c3c5662)) ##### Features - **eslint-plugin:** add allowNever support to restrict-template-expressions ([#6554](https://togithub.com/typescript-eslint/typescript-eslint/issues/6554)) ([423f164](https://togithub.com/typescript-eslint/typescript-eslint/commit/423f1642424293488fa03a52777c0df73a40e5fd))typescript-eslint/typescript-eslint (@typescript-eslint/parser)
### [`v5.56.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) **Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)actions/checkout
### [`v2.7.0`](https://togithub.com/actions/checkout/releases/tag/v2.7.0) [Compare Source](https://togithub.com/actions/checkout/compare/v2.6.0...v2.7.0) ##### What's Changed - Add new public key for known_hosts ([#1237](https://togithub.com/actions/checkout/issues/1237)) by [@TingluoHuang](https://togithub.com/TingluoHuang) in [https://github.com/actions/checkout/pull/1238](https://togithub.com/actions/checkout/pull/1238) **Full Changelog**: https://github.com/actions/checkout/compare/v2.6.0...v2.7.0prettier/eslint-config-prettier
### [`v8.8.0`](https://togithub.com/prettier/eslint-config-prettier/blob/HEAD/CHANGELOG.md#Version-880-2023-03-20) [Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v8.7.0...v8.8.0) - Added: \[[@typescript-eslint/lines-around-comment](https://togithub.com/typescript-eslint/lines-around-comment)]. Thanks to [@ttionya](https://togithub.com/ttionya)!prettier/prettier
### [`v2.8.7`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#287) [Compare Source](https://togithub.com/prettier/prettier/compare/2.8.6...2.8.7) [diff](https://togithub.com/prettier/prettier/compare/2.8.6...2.8.7) ##### Allow multiple decorators on same getter/setter ([#14584](https://togithub.com/prettier/prettier/pull/14584) by [@fisker](https://togithub.com/fisker)) ```ts // Input class A { @decorator() get foo () {} @decorator() set foo (value) {} } // Prettier 2.8.6 SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3) 3 | get foo () {} 4 | > 5 | @decorator() | ^^^^^^^^^^^^ 6 | set foo (value) {} 7 | } // Prettier 2.8.7 class A { @decorator() get foo() {} @decorator() set foo(value) {} } ``` ### [`v2.8.6`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#286) [Compare Source](https://togithub.com/prettier/prettier/compare/2.8.5...2.8.6) [diff](https://togithub.com/prettier/prettier/compare/2.8.5...2.8.6) ##### Allow decorators on private members and class expressions ([#14548](https://togithub.com/prettier/prettier/pull/14548) by [@fisker](https://togithub.com/fisker)) ```ts // Input class A { @decorator() #privateMethod () {} } // Prettier 2.8.5 SyntaxError: Decorators are not valid here. (2:3) 1 | class A { > 2 | @decorator() | ^^^^^^^^^^^^ 3 | #privateMethod () {} 4 | } // Prettier 2.8.6 class A { @decorator() #privateMethod() {} } ``` ### [`v2.8.5`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#285) [Compare Source](https://togithub.com/prettier/prettier/compare/2.8.4...2.8.5) [diff](https://togithub.com/prettier/prettier/compare/2.8.4...2.8.5) ##### Support TypeScript 5.0 ([#14391](https://togithub.com/prettier/prettier/pull/14391) by [@fisker](https://togithub.com/fisker), [#13819](https://togithub.com/prettier/prettier/pull/13819) by [@fisker](https://togithub.com/fisker), [@sosukesuzuki](https://togithub.com/sosukesuzuki)) TypeScript 5.0 introduces two new syntactic features: - `const` modifiers for type parameters - `export type *` declarations ##### Add missing parentheses for decorator ([#14393](https://togithub.com/prettier/prettier/pull/14393) by [@fisker](https://togithub.com/fisker)) ```jsx // Input class Person { @(myDecoratorArray[0]) greet() {} } // Prettier 2.8.4 class Person { @myDecoratorArray[0] greet() {} } // Prettier 2.8.5 class Person { @(myDecoratorArray[0]) greet() {} } ``` ##### Add parentheses for `TypeofTypeAnnotation` to improve readability ([#14458](https://togithub.com/prettier/prettier/pull/14458) by [@fisker](https://togithub.com/fisker)) ```tsx // Input type A = (typeof node.children)[]; // Prettier 2.8.4 type A = typeof node.children[]; // Prettier 2.8.5 type A = (typeof node.children)[]; ``` ##### Support `max_line_length=off` when parsing `.editorconfig` ([#14516](https://togithub.com/prettier/prettier/pull/14516) by [@josephfrazier](https://togithub.com/josephfrazier)) If an .editorconfig file is in your project and it sets `max_line_length=off` for the file you're formatting, it will be interpreted as a `printWidth` of `Infinity` rather than being ignored (which previously resulted in the default `printWidth` of 80 being applied, if not overridden by Prettier-specific configuration). ```htmlsnyk/snyk
### [`v1.1127.0`](https://togithub.com/snyk/cli/releases/tag/v1.1127.0) [Compare Source](https://togithub.com/snyk/snyk/compare/v1.1126.0...v1.1127.0) ##### Features - add debug info for failed send test payload request ([770c7c3](https://togithub.com/snyk/snyk/commit/770c7c3c172c01723aad2b812da9c27bdb358ca1)) ### [`v1.1126.0`](https://togithub.com/snyk/snyk/compare/v1.1125.0...v1.1126.0) [Compare Source](https://togithub.com/snyk/snyk/compare/v1.1125.0...v1.1126.0) ### [`v1.1125.0`](https://togithub.com/snyk/cli/releases/tag/v1.1125.0) [Compare Source](https://togithub.com/snyk/snyk/compare/v1.1124.0...v1.1125.0) ##### Bug Fixes - update gradle plugin ([a386933](https://togithub.com/snyk/snyk/commit/a386933ba2126c8e56f8b954aceb832cad3fda10)) ### [`v1.1124.0`](https://togithub.com/snyk/cli/releases/tag/v1.1124.0) [Compare Source](https://togithub.com/snyk/snyk/compare/v1.1123.0...v1.1124.0) ##### Bug Fixes - checksum comparison failed \[HEAD-202] ([#4476](https://togithub.com/snyk/snyk/issues/4476)) ([d3f72b2](https://togithub.com/snyk/snyk/commit/d3f72b2435f1dd6048081dfa9fb3f22409d9bbd0)) - revert to using console.error for debug messages ([#4478](https://togithub.com/snyk/snyk/issues/4478)) ([f28ceb1](https://togithub.com/snyk/snyk/commit/f28ceb1d7f47166d35fb55d15b4627d66b36da84)) ##### Features - npm lock v2 and v3 support ([3c48d2e](https://togithub.com/snyk/snyk/commit/3c48d2ea80b5f5c35f8d6a34a4931e2b8d8d6916)) - npm workspaces support ([921d41b](https://togithub.com/snyk/snyk/commit/921d41b6be1ef02814c5b1eb5d6e354f2395f968)) ### [`v1.1123.0`](https://togithub.com/snyk/cli/releases/tag/v1.1123.0) [Compare Source](https://togithub.com/snyk/snyk/compare/v1.1122.0...v1.1123.0) ##### Features - bump snyk cpp plugin to 2.22.0 ([2e84eef](https://togithub.com/snyk/snyk/commit/2e84eef08540761bd588799921a34f0c301b2ce6)) ### [`v1.1122.0`](https://togithub.com/snyk/cli/releases/tag/v1.1122.0) [Compare Source](https://togithub.com/snyk/snyk/compare/v1.1121.0...v1.1122.0) ##### Bug Fixes - support new setuptools version ([1c740b4](https://togithub.com/snyk/snyk/commit/1c740b425392c40399dc2fbff01583ab2ae8b99e))Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.