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) #250

Merged
merged 1 commit into from
Oct 12, 2021

Conversation

renovate[bot]
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
@react-spring/web 9.2.6 -> 9.3.0 age adoption passing confidence
@testing-library/user-event 13.2.1 -> 13.3.0 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
jest-matcher-utils 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
webpack 5.58.0 -> 5.58.1 age adoption passing confidence

Release Notes

conventional-changelog/commitlint

v13.2.1

Compare Source

Bug Fixes
pmndrs/react-spring

v9.3.0

Compare Source

What's Changed

Full Changelog: pmndrs/react-spring@v9.2.6...v9.3.0

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

webpack/webpack

v5.58.1

Compare Source

Bugfixes

  • fix .webpack[] suffix to not execute rules
  • revert performance optimization that has too large memory usage in large builds

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.

@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/69cqmF21Bsk1dtbFnEnJgFkH88cK
✅ Preview: https://renderlesskit-react-git-renovate-dev-dependen-fb2b4e-timelessco.vercel.app

@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from c197b38 to e6a7de2 Compare October 8, 2021 14:51
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from e6a7de2 to dbaa081 Compare October 9, 2021 03:48
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from dbaa081 to c643bc2 Compare October 9, 2021 10:02
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from c643bc2 to 6be9305 Compare October 9, 2021 19:25
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 6be9305 to f81f556 Compare October 9, 2021 20:58
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from f81f556 to 0662303 Compare October 10, 2021 10:01
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 0662303 to 8a73b25 Compare October 10, 2021 16:00
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 8a73b25 to 6748d45 Compare October 10, 2021 19:05
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 6748d45 to 44d84b9 Compare October 11, 2021 18:07
@navin-moorthy navin-moorthy merged commit 9a49bed into main Oct 12, 2021
@navin-moorthy navin-moorthy deleted the renovate/dev-dependencies-(minor) branch October 12, 2021 06:26
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