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

Merged
merged 1 commit into from
Jan 13, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/cli (source) 7.16.7 -> 7.16.8 age adoption passing confidence
@babel/preset-env (source) 7.16.7 -> 7.16.8 age adoption passing confidence
@commitlint/cli (source) 16.0.1 -> 16.0.2 age adoption passing confidence
@storybook/addon-a11y 6.4.9 -> 6.4.12 age adoption passing confidence
@storybook/addon-actions 6.4.9 -> 6.4.12 age adoption passing confidence
@storybook/addon-essentials 6.4.9 -> 6.4.12 age adoption passing confidence
@storybook/builder-webpack5 6.4.9 -> 6.4.12 age adoption passing confidence
@storybook/manager-webpack5 6.4.9 -> 6.4.12 age adoption passing confidence
@storybook/react 6.4.9 -> 6.4.12 age adoption passing confidence
@swc/core (source) 1.2.127 -> 1.2.128 age adoption passing confidence
@types/tailwindcss 3.0.1 -> 3.0.2 age adoption passing confidence
autoprefixer 10.4.1 -> 10.4.2 age adoption passing confidence
lint-staged 12.1.5 -> 12.1.7 age adoption passing confidence
react-hook-form (source) 7.22.5 -> 7.23.0 age adoption passing confidence
release-it 14.11.8 -> 14.12.1 age adoption passing confidence
tailwindcss (source) 3.0.11 -> 3.0.13 age adoption passing confidence
webpack 5.65.0 -> 5.66.0 age adoption passing confidence

Release Notes

babel/babel

v7.16.8

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
  • babel-helper-fixtures, babel-plugin-proposal-record-and-tuple, babel-preset-env
🔬 Output optimization
  • babel-helper-remap-async-to-generator, babel-helper-wrap-function, babel-plugin-transform-async-to-generator
conventional-changelog/commitlint

v16.0.2

Compare Source

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

storybookjs/storybook

v6.4.12

Compare Source

Bug Fixes
  • Angular: Fix for renamed method in angular 13.1 (#​17032)

v6.4.10

Compare Source

Bug Fixes
  • Core: Fix process.env assignment (#​17174)
  • Angular: Fix angular 13.1 JIT error and HMR reload (#​17131)
  • Router: Fix navigating to hash links (#​17134)
  • Source-loader: Fix node.declaration edge case (#​17027)
  • Core: Fix debug output on webpack failures (#​16988)
Dependency Upgrades
  • Bump cli-table3 to fix colors bug (#​17180)
swc-project/swc

v1.2.128

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
  • (es/minifier) Add scripts to extract tests automatically (#​3212) (057fca4)
Refactor
  • (es/ast) Change types of member-like expressions (#​3178) (f58b50b)

  • (es/compat) Preserve length of functions in async_generator (#​3202) (5bee4e4)

Security
postcss/autoprefixer

v10.4.2

Compare Source

  • Fixed missed -webkit- prefix for width: stretch.
okonet/lint-staged

v12.1.7

Compare Source

Bug Fixes

v12.1.6

Compare Source

Bug Fixes
  • always run non-git tasks in the current working directory (893f3d7)
react-hook-form/react-hook-form

v7.23.0

Compare Source

Happy new year 2022!

💻 Feature/avoid omitting key name use field array (improve DX) (#​7301)

const App = () => {
  const { control, register, handleSubmit } = useForm<FormValues>({
    defaultValues: {
      test: [{id: 'UUID5678', test: 'data' }] // id will be remained as it match default keyName
    }
  });
  const { fields, append } = useFieldArray({
    control,
    name: 'test',
  });

  return (
    <form>
      {fields.map((field, index) => {
        return <input key={field.id} {...register(`test.${index}.test`)} />;
      })}

      <button
        type={'button'}
        onClick={() => {
          append({
            id: 'UUID1234', // id value will be remained as it match default keyName
            test: '1234',
          });
        }}
      >
        append
      </button>
    </form>
  );
};

📲 apply useCallback for callback function to improve perf (#​7378)
🐷 test coverage for types (#​7311)
🐎 improve useFieldArray performance with separate id state (#​7447)
🎩 close #​6776 improve register to support shadow roots (#​7400)
📇 fix type infer with UseFormHandleSubmit (#​7405)
🎐 remove resolutions dep and update packages (#​7396)
🎼 import type for utility
🥌 improve useFormState with mounted ref to skip update when hook is unmounted (#​7489)
🪔 improve updateFieldArray batch update (#​7477)
🪡 revert #​6834 clearError should not affect isValid (#​7470)

thanks to @​daisuke85a, @​MichalTarasiuk, @​adrianos10, @​barrymay and @​felixschorer!

release-it/release-it

v14.12.1

Compare Source

  • Fix tests on Linux (6495d3d)
  • Add latestVersion argument to getChangelog in test helper (d0ec1bb)

v14.12.0

Compare Source

  • Update example projects (b500aac)
  • Add support for pre-releases in runTasks test helper (b73770e)
  • Remove unused argument from getIncrement (test helper) (93b0a74)
  • Print --release-version after incremented version is resolved (5b04ba5)
  • Update dependencies (fb73af2)
  • Add node-redis to example projects (069a65f)
  • Add test for GitHub enterprise host web release url (e4718b0)
  • Wrap up the github.autoGenerate feature (a467b5f)
  • Update README.md (#​853) (0a4c605)
  • support github's auto generated release notes (#​843) (b612ce7)
  • feat : add a host info when generating web url (#​828) (1b1034c)
tailwindlabs/tailwindcss

v3.0.13

Compare Source

Fixed
  • Fix consecutive builds with at apply producing different CSS (#​6999)

v3.0.12

Compare Source

Fixed
  • Allow use of falsy values in theme config (#​6917)
  • Ensure we can apply classes that are grouped with non-class selectors (#​6922)
  • Improve standalone CLI compatibility on Linux by switching to the linuxstatic build target (#​6914)
  • Ensure @apply works consistently with or without @layer (#​6938)
  • Only emit defaults when using base layer (#​6926)
  • Emit plugin defaults regardless of usage (#​6926)
  • Move default border color back to preflight (#​6926)
  • Change experimental.optimizeUniversalDefaults to only work with @tailwind base (#​6926)
webpack/webpack

v5.66.0

Compare Source

Features

Bugfixes

  • fix CORS headers for experiments.lazyCompilation
  • fix [absolute-resource-path] for SourceMap module naming
  • avoid stack overflow when accessing many memory cached cache values in series

Performance

  • reduce default watchOptions.aggregateTimeout to 20ms

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.

@renovate renovate bot requested a review from navin-moorthy as a code owner January 7, 2022 11:04
@vercel
Copy link

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

@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from a94f3d3 to b04b558 Compare January 7, 2022 14:44
@renovate renovate bot changed the title chore(deps): ⬆️ update dependency lint-staged to v12.1.6 chore(deps): ⬆️ update dev dependencies (minor) Jan 7, 2022
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from b04b558 to cf6d46a Compare January 7, 2022 16:54
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from cf6d46a to dd8c039 Compare January 7, 2022 19:09
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from dd8c039 to 65b6609 Compare January 9, 2022 08:09
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 65b6609 to eaf13ce Compare January 9, 2022 18:11
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from eaf13ce to 74612bd Compare January 9, 2022 19:49
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 74612bd to 2b7d365 Compare January 10, 2022 04:57
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 2b7d365 to bdc1572 Compare January 10, 2022 21:43
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from bdc1572 to 2d1ab6c Compare January 11, 2022 10:45
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 2d1ab6c to af0063d Compare January 11, 2022 18:10
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 992272a into main Jan 13, 2022
@kodiakhq kodiakhq bot deleted the renovate/dev-dependencies-(minor) branch January 13, 2022 06:42
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