Update all non-major dependencies
This MR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
@sveltejs/kit (source) | ^1.12.0 -> ^1.13.0 |
||||
@typescript-eslint/eslint-plugin | ^5.55.0 -> ^5.56.0 |
||||
@typescript-eslint/parser | ^5.55.0 -> ^5.56.0 |
||||
eslint-config-prettier | ^8.7.0 -> ^8.8.0 |
||||
prettier (source) | ^2.8.4 -> ^2.8.5 |
||||
vite (source) | ^4.2.0 -> ^4.2.1 |
Release Notes
sveltejs/kit
v1.13.0
Minor Changes
- feat: add dark mode styles to default error page (#9460)
Patch Changes
- fix: recover from errors during dev by reloading (#9441)
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.56.0
Bug Fixes
- eslint-plugin: [member-ordering] check order when optionalityOrder is present with no optional members (#6619) (6aff431)
- eslint-plugin: [no-misused-promises] avoid unnecessary calls to getContextualType (#6193) (745cfe4)
- eslint-plugin: [no-misused-promises] fix incorrect detection of void functions in JSX attributes (#6638) (9e41cee)
- eslint-plugin: [strict-boolean-expression] support falsy and truthy literals simultaneously (#6672) (62ef487)
- eslint-plugin: [strict-boolean-expressions] handle truthy enums (#6618) (0d0639f)
- eslint-plugin: add TSPropertySignature with TSFunctionType annotation to typeMethod selector (#6645) (3fc5c63)
Features
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.56.0
Note: Version bump only for package @typescript-eslint/parser
prettier/eslint-config-prettier
v8.8.0
- Added: [@typescript-eslint/lines-around-comment]. Thanks to @ttionya!
prettier/prettier
v2.8.5
#14391 by @fisker, #13819 by @fisker, @sosukesuzuki)
Support TypeScript 5.0 (TypeScript 5.0 introduces two new syntactic features:
-
const
modifiers for type parameters -
export type *
declarations
#14393 by @fisker)
Add missing parentheses for decorator (// Input
class Person {
@​(myDecoratorArray[0])
greet() {}
}
// Prettier 2.8.4
class Person {
@​myDecoratorArray[0]
greet() {}
}
// Prettier 2.8.5
class Person {
@​(myDecoratorArray[0])
greet() {}
}
TypeofTypeAnnotation
to improve readability (#14458 by @fisker)
Add parentheses for // Input
type A = (typeof node.children)[];
// Prettier 2.8.4
type A = typeof node.children[];
// Prettier 2.8.5
type A = (typeof node.children)[];
max_line_length=off
when parsing .editorconfig
(#14516 by @josephfrazier)
Support 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).
<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>
<!-- Prettier 2.8.4 -->
<div
className="HelloWorld"
title={`You are visitor number ${num}`}
onMouseOver={onMouseOver}
/>;
<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
vitejs/vite
v4.2.1
- fix: add
virtual:
to virtual module source map ignore (#12444) (c4aa28f), closes #12444 - fix(css): inject source content conditionally (#12449) (3e665f6), closes #12449
- fix(worker): using data URLs for inline shared worker (#12014) (79a5007), closes #12014
- chore: changelog edits for 4.2 (#12438) (ce047e3), closes #12438
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.