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

Merged
merged 1 commit into from
Jan 24, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 19, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.16.7 -> 7.16.12 age adoption passing confidence
@babel/plugin-proposal-private-methods (source) 7.16.7 -> 7.16.11 age adoption passing confidence
@babel/preset-env (source) 7.16.8 -> 7.16.11 age adoption passing confidence
@commitlint/cli (source) 16.0.2 -> 16.1.0 age adoption passing confidence
@storybook/addon-a11y 6.4.13 -> 6.4.14 age adoption passing confidence
@storybook/addon-actions 6.4.13 -> 6.4.14 age adoption passing confidence
@storybook/addon-essentials 6.4.13 -> 6.4.14 age adoption passing confidence
@storybook/builder-webpack5 6.4.13 -> 6.4.14 age adoption passing confidence
@storybook/manager-webpack5 6.4.13 -> 6.4.14 age adoption passing confidence
@storybook/react 6.4.13 -> 6.4.14 age adoption passing confidence
eslint-plugin-storybook 0.5.5 -> 0.5.6 age adoption passing confidence
lint-staged 12.2.0 -> 12.3.1 age adoption passing confidence
react-hook-form (source) 7.24.1 -> 7.25.0 age adoption passing confidence
react-virtual 2.10.0 -> 2.10.4 age adoption passing confidence
release-it 14.12.3 -> 14.12.4 age adoption passing confidence
ts-morph 13.0.2 -> 13.0.3 age adoption passing confidence
typescript (source) 4.5.4 -> 4.5.5 age adoption passing confidence
webpack 5.66.0 -> 5.67.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.16.12

Compare Source

🐛 Bug Fix

v7.16.10

Compare Source

🐛 Bug Fix
🏠 Internal
🔬 Output optimization
  • babel-helper-create-class-features-plugin, babel-preset-env
babel/babel (@​babel/plugin-proposal-private-methods)

v7.16.11

Compare Source

v7.16.11 (2022-01-20)

This empty releases force-publishes a new version of @babel/plugin-proposal-private-methods (which was not published in v7.16.10 because it didn't have any actual change) and of @babel/preset-env.

This solves an incompatibility between @babel/preset-env@7.16.10 and @babel/helper-create-class-features-plugin@7.16.7, by making sure that @babel/preset-env transitively depends on @babel/helper-create-class-features-plugin@^7.16.10.

conventional-changelog/commitlint

v16.1.0

Compare Source

Note: Version bump only for package @​commitlint/cli

16.0.3 (2022-01-19)

Note: Version bump only for package @​commitlint/cli

16.0.2 (2022-01-09)

Note: Version bump only for package @​commitlint/cli

16.0.1 (2021-12-28)

Note: Version bump only for package @​commitlint/cli

v16.0.3

Compare Source

Note: Version bump only for package @​commitlint/cli

storybookjs/storybook

v6.4.14

Compare Source

Bug Fixes
  • CLI: Add --no-manager-cache to build-storybook (#​17300)
  • CSF3: Remove path from autoTitle browser code (#​17185)
  • Addon-docs: Fix docs.disable parameter on DocsPage (#​17256)
  • Core: Fix issue with recursive glob with prior special chars (#​17252)
  • Webpack: Fix for process fallback using require.resolve (#​17249)
Dependency Upgrades
  • Upgrade compodoc for colors.js bug (#​17266)
  • Upgrade jscodeshift dependency for colors.js bug (#​17265)
  • Restore prettier >= 2.2.1 to satisfy previous constraints (#​17257)
storybookjs/eslint-plugin-storybook

v0.5.6

Compare Source

🐛 Bug Fix
📝 Documentation
Authors: 2

okonet/lint-staged

v12.3.1

Compare Source

Bug Fixes
  • deps: update dependencies (f190fc3)

v12.3.0

Compare Source

Features
  • add --cwd option for overriding task directory (62b5b83)

v12.2.2

Compare Source

Bug Fixes
  • always search config from cwd first (4afcda5)

v12.2.1

Compare Source

Bug Fixes
  • only throw if no configurations were found (36b9546)
react-hook-form/react-hook-form

v7.25.0

Compare Source

✨ new getFieldState API: get individual field state

Documentation: https://react-hook-form.com/api/useform/getfieldstate

import * as React from "react";
import { useForm } from "react-hook-form";

export default function App() {
  const {
    register,
    getFieldState,
    formState: { isDirty, isValid }
  } = useForm({
    mode: "onChange",
    defaultValues: {
      firstName: ""
    }
  });

  // you can invoke before render or within the render function
  const fieldState = getFieldState("firstName");

  return (
    <form>
      <input {...register("firstName", { required: true })} />
      <p>{getFieldState("firstName").isDirty && "dirty"}</p>
      <p>{getFieldState("firstName").isTouched && "touched"}</p>
      <button type="button" onClick={() => console.log(getFieldState("firstName"))}>
        field state
      </button>
    </form>
  );
}

v7.24.2

Compare Source

😰 close #​7593 regression on fieldarray controller/useController unmount with unregister (#​7596)
🥸 fix type issue with getFieldState and useController (#​7574)

tannerlinsley/react-virtual

v2.10.4

Compare Source

Bug Fixes
  • totalSize should be paddingStart + paddingEnd when size is 0 (#​238) (5300e47)

v2.10.3

Compare Source

Bug Fixes
  • types: Move options interface definition to separated interface and export it (#​178) (df4723c)

v2.10.2

Compare Source

Bug Fixes
  • increment patch to fix breaking change (7a799a2)
release-it/release-it

v14.12.4

Compare Source

  • Update node-fetch (security issue in transitive dep, closes #​862) (d9aaa6c)
  • Remove the unused deprecated feature itself (d80beaf)
  • Remove old code coverage stuff (bdf6d18)
dsherret/ts-morph

v13.0.3

Compare Source

Microsoft/TypeScript

v4.5.5

Compare Source

This patch release includes a number of fixes to language service crashes and assertion violations, along with improvements to JSX attribute snippets.

For the complete list of fixed issues, check out the

Downloads are available on:

webpack/webpack

v5.67.0

Compare Source

Features

  • add 'outputPath' configuration option for resource asset modules
  • support Trusted Types in eval source maps
  • experiments.css
    • allow to generate only exports for css in node
    • add SyncModuleIdsPlugin to sync module ids between server and client compilation
    • add more options to the DeterministicModuleIdsPlugin to allow to generate equal ids

Developer Experience

  • limit data url module name in stats printer
  • allow specific description for CLI options
  • improve space limiting algorithm in stats printing to show partial lists
  • add null to errors in callbacks
  • fix call signature types of addChunkInGroup

Bugfixes

  • avoid reporting non-existant package.jsons as dependencies
  • experiments.css
    • fix missing css runtime when only initial css is used
    • fix css hmr support
    • bugfixes to css modules
  • fix cache serialization for CreateScriptUrlDependency
  • fix data url content when processed by a loader
  • fix regexp in identifiers that include |
  • fix ProfilingPlugin for watch scenarios
  • add layer to module names and identifiers
    • this avoid random module id changes when additional modules are added to another layer
  • provide hashFunction parameter to DependencyTemplates to allow customizing it there
  • fix HMR when experiments.lazyCompilation is enabled
  • store url as Buffer to avoid serialization warnings
  • exclude webpack-hot-middleware/client from lazy compilation

Contributing

  • remove travis configuration
  • improve spell checking

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 Jan 19, 2022

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

@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from e869771 to 89b4fb8 Compare January 19, 2022 15:10
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 89b4fb8 to 3a9db7c Compare January 19, 2022 20:21
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 3a9db7c to d8d698c Compare January 20, 2022 08:27
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from d8d698c to 45e3e55 Compare January 20, 2022 11:01
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 45e3e55 to 970a830 Compare January 20, 2022 16:52
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 970a830 to 1e56483 Compare January 20, 2022 18:41
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 1e56483 to 64ae536 Compare January 20, 2022 21:09
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 64ae536 to 3836d83 Compare January 21, 2022 11:06
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 3836d83 to a9f766a Compare January 21, 2022 14:37
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from a9f766a to fa5895d Compare January 21, 2022 19:11
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from fa5895d to 319a875 Compare January 22, 2022 00:04
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 319a875 to e1652b0 Compare January 22, 2022 16:09
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from e1652b0 to e73a868 Compare January 22, 2022 21:53
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from e73a868 to 8830254 Compare January 23, 2022 12:00
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from c9066b0 to 0dc1760 Compare January 23, 2022 17:59
@navin-moorthy navin-moorthy merged commit b6756cd into main Jan 24, 2022
@navin-moorthy navin-moorthy deleted the renovate/dev-dependencies-(minor) branch January 24, 2022 13:06
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.

None yet

2 participants