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

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
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)
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.

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

@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 101e332 to 084d813 Compare January 7, 2022 15:52
@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 084d813 to 1957795 Compare January 7, 2022 18:04
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 1957795 to f05ee03 Compare January 9, 2022 08:00
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from f05ee03 to caa02ab Compare January 9, 2022 19:18
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from caa02ab to 6f3a0f1 Compare January 10, 2022 04:18
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 6f3a0f1 to 95ff3c1 Compare January 10, 2022 23:04
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 95ff3c1 to bceb3b2 Compare January 11, 2022 12:35
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from bceb3b2 to 4474129 Compare January 11, 2022 16:50
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 4474129 to 6a6644c Compare January 12, 2022 08:40
@renovate renovate bot force-pushed the renovate/dev-dependencies-(minor) branch from 6a6644c to cfb9c9f Compare January 12, 2022 10:34
@navin-moorthy navin-moorthy merged commit bf7a2d3 into main Jan 13, 2022
@navin-moorthy navin-moorthy deleted the renovate/dev-dependencies-(minor) branch January 13, 2022 06: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.

None yet

2 participants