chore(deps): update npm
This MR contains the following updates:
Release Notes
conventional-changelog/commitlint
v17.5.0
Note: Version bump only for package @commitlint/cz-commitlint
17.4.4 (2023-02-17)
Note: Version bump only for package @commitlint/cz-commitlint
17.4.2 (2023-01-12)
Note: Version bump only for package @commitlint/cz-commitlint
17.4.1 (2023-01-09)
Note: Version bump only for package @commitlint/cz-commitlint
mui/material-ui
v5.0.0-alpha.124
tanstack/table
v8.8.4
What's Changed
- fix: link to intro page by @Hamziss in https://github.com/TanStack/table/pull/4712
- fixes Minor typo in docs for column accessors by @MohitBansal321 in https://github.com/TanStack/table/pull/4725
- fix(docs): clarify default implementation by @codyzu in https://github.com/TanStack/table/pull/4737
- feat: vue pagination example by @radusuciu in https://github.com/TanStack/table/pull/4756
- docs(column): fix column props type by @tfarhan00 in https://github.com/TanStack/table/pull/4716
- docs: Fix wording by replacing 'Table API API' with 'Table API' by @luchn49 in https://github.com/TanStack/table/pull/4758
- chore: clean up vue examples by @KevinVandy in https://github.com/TanStack/table/pull/4775
- fix: prevent toLowerCase() is not a function filterFn error by @KevinVandy in https://github.com/TanStack/table/pull/4776
- fix: prevent toLowerCase() is not a function filterFn error safely by @KevinVandy in https://github.com/TanStack/table/pull/4777
New Contributors
- @Hamziss made their first contribution in https://github.com/TanStack/table/pull/4712
- @MohitBansal321 made their first contribution in https://github.com/TanStack/table/pull/4725
- @codyzu made their first contribution in https://github.com/TanStack/table/pull/4737
- @radusuciu made their first contribution in https://github.com/TanStack/table/pull/4756
- @tfarhan00 made their first contribution in https://github.com/TanStack/table/pull/4716
- @luchn49 made their first contribution in https://github.com/TanStack/table/pull/4758
Full Changelog: https://github.com/TanStack/table/compare/v8.8.3...v8.8.4
v8.8.2
Version 8.8.2 - 3/26/2023, 12:10 AM
Changes
Fix
Chore
- adding caching for package deps in workflows (#4767) (
d8c54a4
) by @ZackDeRose - Introducing nx for caching (#4766) (
17cea29
) by @ZackDeRose
Packages
- @tanstack/table-core@8.8.2
- @tanstack/react-table@8.8.2
- @tanstack/solid-table@8.8.2
- @tanstack/vue-table@8.8.2
- @tanstack/svelte-table@8.8.2
v8.8.1
Version 8.8.1 - 3/25/2023, 10:00 PM
Changes
Fix
- store row.parentId instead of an entire parent row object on rows to fix serialization issues (#4772) (
35bc2d6
) by @KevinVandy
Packages
- @tanstack/table-core@8.8.1
- @tanstack/react-table@8.8.1
- @tanstack/solid-table@8.8.1
- @tanstack/vue-table@8.8.1
- @tanstack/svelte-table@8.8.1
v8.8.0
Version 8.8.0 - 3/23/2023, 10:02 PM
Changes
Feat
- provide row.parentRow where possible (
69d8ae4
) by Tanner Linsley
Chore
Readme
Packages
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!
ValentinH/jest-fail-on-console
v3.1.1
What's Changed
- Include group context on failure output by @lennym in https://github.com/ValentinH/jest-fail-on-console/pull/38
Full Changelog: https://github.com/ValentinH/jest-fail-on-console/compare/v3.1.0...v3.1.1
mswjs/msw
v1.2.1
v1.2.1 (2023-03-24)
Bug Fixes
- update dependencies to support ESM (#1575) (
e7a6008
) @kettanaito - update "headers-polyfill" to 3.1.2 to fix the ESM issue (#1571) (
4f44f11
) @cstenglein
v1.2.0
v1.2.0 (2023-03-22)
Features
- add
operationName
to GraphQL request (#1568) (115b435
) @ligaz @kettanaito
prettier/prettier
v2.8.7
#14584 by @fisker)
Allow multiple decorators on same getter/setter (// 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
#14548 by @fisker)
Allow decorators on private members and class expressions (// 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() {}
}
react-hook-form/react-hook-form
v7.43.8
: Version 7.43.8
🪡 related #10143 did not update dirty until interacted (#10157)
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.