Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 8, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli 13.2.0 -> 13.2.1 age adoption passing confidence
@storybook/addon-a11y 6.4.0-beta.6 -> 6.4.0-beta.9 age adoption passing confidence
@storybook/addon-actions 6.4.0-beta.6 -> 6.4.0-beta.9 age adoption passing confidence
@storybook/addon-essentials 6.4.0-beta.6 -> 6.4.0-beta.9 age adoption passing confidence
@storybook/react 6.4.0-beta.6 -> 6.4.0-beta.9 age adoption passing confidence
@testing-library/user-event 13.2.1 -> 13.3.0 age adoption passing confidence
@types/react 17.0.27 -> 17.0.28 age adoption passing confidence
babel-jest 27.2.4 -> 27.2.5 age adoption passing confidence
eslint-plugin-jest 24.5.2 -> 24.7.0 age adoption passing confidence
jest (source) 27.2.4 -> 27.2.5 age adoption passing confidence
lint-staged 11.2.0 -> 11.2.3 age adoption passing confidence
react-hook-form (source) 7.17.1 -> 7.17.2 age adoption passing confidence
ts-node (source) 10.2.1 -> 10.3.0 age adoption passing confidence

Release Notes

conventional-changelog/commitlint

v13.2.1

Compare Source

Bug Fixes
storybookjs/storybook

v6.4.0-beta.9

Compare Source

Features
  • Webpack5: Don't emit stats unless debugWebpack is set (#​16132)
Bug Fixes
  • CLI: Fix CRA version detection crash (#​16308)
  • Core: Better story id generation, cope with unusual stories (#​16309)
  • Core: Simplify DOCS_RENDERED and only use STORY_RENDERED for hooks (#​16310)
  • Core: Fix extract, SET_STORIES and getStoriesJsonData (#​16299)
  • TypeScript: Add id to BaseMeta type (#​16216)
  • CSF: Fix support for X.story annotations (#​16297)

v6.4.0-beta.8

Compare Source

Bug Fixes
  • Core: Fix multiple invalidations (#​16294)
Maintenance
  • Add ability to skip cypress tests based on framework (#​16285)
Dependency Upgrades

v6.4.0-beta.7

Compare Source

Bug Fixes
  • Addon-docs: Always render the children of the Canvas component (#​16280)
  • Addon-docs: Fix args passing for Vue inline rendering (#​16279)
testing-library/user-event

v13.3.0

Compare Source

Features
facebook/jest

v27.2.5

Compare Source

Features
  • [jest-config] Warn when multiple Jest configs are located (#​11922)
Fixes
  • [expect] Pass matcher context to asymmetric matchers (#​11926 & #​11930)
  • [expect] Improve TypeScript types (#​11931)
  • [expect] Improve typings of toThrow() and toThrowError() matchers (#​11929)
  • [jest-cli] Improve --help printout by removing defunct --browser option (#​11914)
  • [jest-haste-map] Use distinct cache paths for different values of computeDependencies (#​11916)
  • [@jest/reporters] Do not buffer console.logs when using verbose reporter (#​11054)
Chore & Maintenance
  • [expect] Export default matchers (#​11932)
  • [@jest/types] Mark deprecated configuration options as @deprecated (#​11913)
Performance
jest-community/eslint-plugin-jest

v24.7.0

Compare Source

Features

v24.6.0

Compare Source

Features

24.5.2 (2021-10-04)

Bug Fixes
  • lowercase-name: consider skip and only prefixes for ignores (#​923) (8716c24)

24.5.1 (2021-10-04)

Bug Fixes
  • prefer-to-be: don't consider RegExp literals as toBe-able (#​922) (99b6d42)
okonet/lint-staged

v11.2.3

Compare Source

Bug Fixes

v11.2.2

Compare Source

Bug Fixes

v11.2.1

Compare Source

Bug Fixes
react-hook-form/react-hook-form

v7.17.2

Compare Source

🐞 fix #​6748 skip clone object when object contains function nodes (#​6749)
⏮ revert interface & mapped type update (#​6747)
🐞 fix #​6736 custom onChange getting called on blur (#​6746)
🐞 fix #​6731 subscription issue with unmount field array (#​6732)
💉 simplify controller field state error type (#​6730)
🌟 improve reset with keepDefaultValues options (#​6720)
👂 improve useSubscribe hook (#​6724)
📖 more TS test coverage for missing generic at useForm (#​6716)

thanks to @​fzkirablackwhy @​kotarella1110

TypeStrong/ts-node

v10.3.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1507

Added

  • Declare types for node builtin modules within REPL so you do not need to import them (#​1424, #​1500)
    • Node REPL exposes builtin modules as globals; typechecker now understands this
    • Typechecking should no longer raise errors when using builtins without first importing
    • For example: util.promisify(setTimeout)(1000) or fs.readFileSync('example.txt')
  • Add createEsmHooks() function to create ESM loader hooks (API docs) (#​1439) @​nonara
    • Can be used to compose our loader hooks with another loader or additional logic
  • register() accepts a ts-node Service (API docs) (#​1474)
    • register(options) is still supported; no breaking changes
  • Add support for Node.js's new loader hooks API (#​1372, #​1457, #​1007) @​jonaskello
    • Node.js has changed their loader hooks API
    • ts-node is compatible with all node versions, detects your node version and exposes the correct hooks API
    • Node's new API currently only available in node v17 nightly builds
    • Node will eventually backport the changes to node 16, and may also be backport to 14 and 12
  • Add --emit to --help output (#​1400, #​1484) @​markbradley27

Changed

  • When ts-node is registered and other libraries require('source-map-support'), they will be redirected to @cspotcode/source-map-support
    • See complete description in Fixed section below

Fixed

  • Fix #​1440, #​1441, #​1438, #​1495: Incorrect stack traces when third-party libraries use source-map-support instead of @cspotcode/source-map-support (#​1440, #​1441, #​1438, #​1495, cspotcode/node-source-map-support#​23, #​1496, #​1497) @​ejose19
    • When ts-node is registered and other libraries require('source-map-support'), they will be redirected to @cspotcode/source-map-support
    • ts-node uses @cspotcode/source-map-support for the fixes and enhancements listed here: @cspotcode/source-map-support changelog
    • To ensure correct stack traces, all libraries must share a compatible sourcemap support implementation
  • Fix #​1363: REPL may erroneously combine previous input with next input, eval both as a single statement (#​1363, #​1480) @​TheUnlocked
    • For example, entering 100 on first line and * 2 on second line would erronously be interpreted as 100 * 2
    • REPL now ensures both lines are separate statements, both when typechecking and when evaluating
  • Fix #​1488: Node may log "circular dependency" warning when using allowJs (#​1488, #​1489)
  • Fix #​1301: Filter empty strings from TS_NODE_IGNORE and TS_NODE_IGNORE_DIAGNOSTICS; treat empty environment variable as empty array (#​1301, #​1483) @​ValeriaVG
    • TS_NODE_IGNORE= ts-node ./example.ts will disable default ignore rules; will compile files in ./node_modules

Docs

  • Update VSCode debug configuration (Docs) (#​1466)
  • Update ESM-related messaging to clarify that experimental status is due to Node.js, not ts-node (#​1455)
  • Refer to ts-node consistently (#​1481) @​animafps

https://github.com/TypeStrong/ts-node/milestone/5


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, check this box.

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

@renovate renovate bot requested a review from navin-moorthy as a code owner October 8, 2021 09:55
@vercel
Copy link

vercel bot commented Oct 8, 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-tailwind/77iEcvY1Etw96598yvfCfMQNV4mh
✅ Preview: https://renderlesskit-react-tailwind-git-renovate-dev-581cf6-timelessco.vercel.app

@github-actions
Copy link

github-actions bot commented Oct 8, 2021

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
Full 96.56 KB (0%) 2 s (0%) 590 ms (-74.21% 🔽) 2.6 s
Box 6.64 KB (0%) 133 ms (0%) 151 ms (-82.52% 🔽) 284 ms
Create Icon 12.74 KB (0%) 255 ms (0%) 144 ms (-81.2% 🔽) 398 ms
Spinner 12.4 KB (0%) 249 ms (0%) 103 ms (-90.94% 🔽) 351 ms
Button 16.7 KB (0%) 334 ms (0%) 169 ms (-85.43% 🔽) 503 ms
Badge 12.35 KB (0%) 247 ms (0%) 175 ms (-79.85% 🔽) 422 ms
Checkbox 17.37 KB (0%) 348 ms (0%) 126 ms (-86.56% 🔽) 473 ms
Radio 18.23 KB (0%) 365 ms (0%) 96 ms (-78.53% 🔽) 461 ms

@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from f305cc9 to e046df4 Compare October 8, 2021 11:13
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from e046df4 to 665f5c0 Compare October 8, 2021 13:36
@renovate renovate bot changed the title chore(deps): ⬆️ update dev dependencies (minor) to v6.4.0-beta.7 chore(deps): ⬆️ update dev dependencies (minor) Oct 8, 2021
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 665f5c0 to 9d93246 Compare October 8, 2021 15:06
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 9d93246 to 750bf71 Compare October 9, 2021 03:55
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 750bf71 to fe8f7b9 Compare October 9, 2021 10:05
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from fe8f7b9 to 5e0700d Compare October 9, 2021 19:19
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 5e0700d to e18db1d Compare October 9, 2021 20:56
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from e18db1d to cec08db Compare October 10, 2021 10:46
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from cec08db to 9bdd38b Compare October 10, 2021 19:11
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 9bdd38b to 1f7dcd4 Compare October 11, 2021 16:03
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 1f7dcd4 to b2a967d Compare October 11, 2021 19:14
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from b2a967d to da4d240 Compare October 12, 2021 05:24
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from da4d240 to fb59e50 Compare October 12, 2021 06:27
@navin-moorthy
Copy link
Contributor

/bundle-size

6 similar comments
@navin-moorthy
Copy link
Contributor

/bundle-size

@navin-moorthy
Copy link
Contributor

/bundle-size

@navin-moorthy
Copy link
Contributor

/bundle-size

@navin-moorthy
Copy link
Contributor

/bundle-size

@navin-moorthy
Copy link
Contributor

/bundle-size

@navin-moorthy
Copy link
Contributor

/bundle-size

@navin-moorthy
Copy link
Contributor

/bundle-size

Copy link
Contributor

@navin-moorthy navin-moorthy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🎉

@kodiakhq kodiakhq bot merged commit b4fb259 into main Oct 12, 2021
@kodiakhq kodiakhq bot deleted the renovate/dev-dependencies-(minor) branch October 12, 2021 11:34
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.

3 participants