Skip to content
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

chore(deps): ⬆️ update dev dependencies (minor) #285

Merged
merged 1 commit into from
Dec 6, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 3, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@storybook/addon-a11y 6.4.4 -> 6.4.8 age adoption passing confidence
@storybook/addon-actions 6.4.4 -> 6.4.8 age adoption passing confidence
@storybook/addon-essentials 6.4.4 -> 6.4.8 age adoption passing confidence
@storybook/builder-webpack5 6.4.4 -> 6.4.8 age adoption passing confidence
@storybook/manager-webpack5 6.4.4 -> 6.4.8 age adoption passing confidence
@storybook/react 6.4.4 -> 6.4.8 age adoption passing confidence
@testing-library/jest-dom 5.15.1 -> 5.16.0 age adoption passing confidence
prettier (source) 2.5.0 -> 2.5.1 age adoption passing confidence
react-hook-form (source) 7.20.5 -> 7.21.0 age adoption passing confidence
ts-jest (source) 27.0.7 -> 27.1.0 age adoption passing confidence

Release Notes

storybookjs/storybook (@​storybook/addon-a11y)

v6.4.8

Compare Source

Bug Fixes
  • Core: Fix auto-title in webpack5 (#​16913)
  • CLI: Fix sb repro clobbering .vuerc (#​16897)
Maintenance
  • Core: Add feature flag to disable legacy hierarchy separator warning (#​16915)

v6.4.7

Compare Source

Bug Fixes

v6.4.5

Compare Source

Bug Fixes
  • Angular: Fix tsConfig paths not resolving for Angular >=12.2 (#​16882)
  • Addon-docs: Fix transclusion crash on webpack rules without test field (#​16873)
Dependency Upgrades
storybookjs/storybook (@​storybook/manager-webpack5)
testing-library/jest-dom

v5.16.0

Compare Source

Features
prettier/prettier

v2.5.1

Compare Source

diff

Improve formatting for empty tuple types (#​11884 by @​sosukesuzuki)
// Input
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;

// Prettier 2.5.0
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [

]
  ? Foo3
  : Foo4;

// Prettier 2.5.0 (tailingCommma = all)
// Invalid TypeScript code
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [
  ,
]
  ? Foo3
  : Foo4;

// Prettier 2.5.1
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;
Fix compatibility with Jest inline snapshot test (#​11892 by @​fisker)

A internal change in [email protected] accidentally breaks the Jest inline snapshot test.

Support Glimmer's named blocks (#​11899 by @​duailibe)

Prettier already supported this feature, but it converted empty named blocks to self-closing, which is not supported by the Glimmer compiler.

See: Glimmer's named blocks.

// Input
<Component>
  <:named></:named>
</Component>

// Prettier 2.5.0
<Component>
  <:named />
</Component>

// Prettier 2.5.1
<Component>
  <:named></:named>
</Component>
react-hook-form/react-hook-form

v7.21.0

Compare Source

kulshekhar/ts-jest

v27.1.0

Compare Source

Features
Code Refactoring

DEPRECATIONS

27.0.7 (2021-10-16)

Bug Fixes

27.0.6 (2021-10-14)

Bug Fixes

27.0.5 (2021-08-14)

Bug Fixes
Code Refactoring

27.0.4 (2021-07-21)

Bug Fixes
  • add @types/jest as optional peerDependencies to solve yarn 2 (#​2756) (5fbf43e)
  • add babel-jest as optional peerDependencies to solve yarn 2 (#​2751) (8bede2e)
  • config: include AST transformer's name and version into cache key (#​2755) (310fb9a), closes #​2753
Features

27.0.3 (2021-06-06)

Bug Fixes
Features

27.0.2 (2021-05-30)

Bug Fixes

27.0.1 (2021-05-26)

Bug Fixes

Configuration

📅 Schedule: 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, click this checkbox.

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

@vercel
Copy link

vercel bot commented Dec 3, 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/6bmjn4tcPFez5wcQEuZ2VwLDMzz5
✅ Preview: https://renderlesskit-react-git-renovate-dev-dependen-fb2b4e-timelessco.vercel.app

@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 6e54819 to 146615c Compare December 3, 2021 17:01
@renovate renovate bot changed the title chore(deps): ⬆️ update dev dependencies (minor) to v6.4.5 chore(deps): ⬆️ update dev dependencies (minor) to v6.4.7 Dec 3, 2021
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 146615c to 9f422d5 Compare December 3, 2021 22:09
@renovate renovate bot changed the title chore(deps): ⬆️ update dev dependencies (minor) to v6.4.7 chore(deps): ⬆️ update dev dependencies (minor) Dec 3, 2021
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 9f422d5 to 84f77bd Compare December 4, 2021 15:17
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 84f77bd to 5ca9091 Compare December 5, 2021 09:52
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.

2 participants