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

Update all dependencies #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update all dependencies #31

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 1, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@hookform/resolvers (source) ^2.0.0 -> ^3.0.0 age adoption passing confidence peerDependencies major
@hookform/resolvers (source) ^2.5.2 -> ^3.0.0 age adoption passing confidence devDependencies major
@size-limit/preset-small-lib ^6.0.4 -> ^11.0.0 age adoption passing confidence devDependencies major
@storybook/addon-essentials (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@storybook/addon-links (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@storybook/addon-storysource (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@storybook/addon-viewport (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@storybook/addons (source) ^6.5.9 -> ^7.0.0 age adoption passing confidence devDependencies major
@storybook/builder-webpack5 (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@storybook/react (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@storybook/theming (source) ^6.5.9 -> ^8.0.0 age adoption passing confidence devDependencies major
@types/jest (source) ^27.0.2 -> ^29.0.0 age adoption passing confidence devDependencies major
@types/node (source) ^16.11.6 -> ^20.0.0 age adoption passing confidence devDependencies major
actions/cache v2 -> v4 age adoption passing confidence action major
actions/checkout v2 -> v4 age adoption passing confidence action major
actions/setup-node v2 -> v4 age adoption passing confidence action major
babel-jest (source) ^27.3.1 -> ^29.0.0 age adoption passing confidence devDependencies major
babel-loader ^8.2.3 -> ^9.0.0 age adoption passing confidence devDependencies major
babel-plugin-module-resolver ^4.1.0 -> ^5.0.0 age adoption passing confidence devDependencies major
chromatic (source) ^6.0.5 -> ^11.0.0 age adoption passing confidence devDependencies major
chromaui/action v1 -> v11 age adoption passing confidence action major
eslint (source) 7.32.0 -> 9.8.0 age adoption passing confidence resolutions major
eslint (source) 7.32.0 -> 9.8.0 age adoption passing confidence dependencies major
eslint-plugin-prettier ^4.0.0 -> ^5.0.0 age adoption passing confidence devDependencies major
framer-motion ^6.0.0 -> ^11.0.0 age adoption passing confidence devDependencies major
husky ^7.0.4 -> ^9.0.0 age adoption passing confidence devDependencies major
lint-staged ^11.2.6 -> ^15.0.0 age adoption passing confidence dependencies major
np ^7.5.0 -> ^10.0.0 age adoption passing confidence devDependencies major
npm-run-all ^4.1.5 -> ^5.0.0 devDependencies replacement
patch-package ^6.4.7 -> ^8.0.0 age adoption passing confidence dependencies major
prettier (source) 2.7.1 -> 3.3.3 age adoption passing confidence resolutions major
prettier (source) ^2.7.1 -> ^3.0.0 age adoption passing confidence devDependencies major
react-icons ^4.0.0 -> ^5.0.0 age adoption passing confidence peerDependencies major
react-icons ^4.2.0 -> ^5.0.0 age adoption passing confidence devDependencies major
react-intersection-observer ^8.32.2 -> ^9.0.0 age adoption passing confidence dependencies major
size-limit ^6.0.4 -> ^11.0.0 age adoption passing confidence devDependencies major
storybook-dark-mode ^1.1.0 -> ^4.0.0 age adoption passing confidence devDependencies major
type-fest ^2.5.2 -> ^4.0.0 age adoption passing confidence devDependencies major
typescript (source) 4.4.4 -> 5.5.4 age adoption passing confidence resolutions major
typescript (source) ^4.4.4 -> ^5.0.0 age adoption passing confidence devDependencies major

This is a special PR that replaces npm-run-all with the community suggested minimal stable replacement version.


Release Notes

react-hook-form/resolvers (@​hookform/resolvers)

v3.9.0

Compare Source

Features
  • fluentvalidation-ts: add fluentvalidation-ts resolver (#​702) (5fc1e63)

v3.8.0

Compare Source

v3.7.0

Compare Source

Bug Fixes
  • zodResolver: cannot read properties of undefined (reading 'length') (a3e50c6)
Features

v3.6.0

Compare Source

Features

v3.5.0

Compare Source

Features

v3.4.2

Compare Source

Bug Fixes

v3.4.1

Compare Source

Bug Fixes

v3.4.0

Compare Source

v3.3.4

Compare Source

Bug Fixes
  • error handling for array errors with root error (1bfc6ab)

v3.3.3

Compare Source

Bug Fixes

v3.3.2

Compare Source

Bug Fixes

v3.3.1

Compare Source

Bug Fixes

v3.3.0

Compare Source

Bug Fixes
Features
  • add support for root errors for field array (#​621) (5f1a622)
  • pass field names and a context as arguments to a Vest suite (#​584) (3519701)
  • valibot: add more tests, support of criteriaMode and reduce size (#​620) (a9d319d)

v3.2.0

Compare Source

Features

v3.1.1

Compare Source

BREAKING CHANGES

Bug Fixes

You don't need to explicitly provide the type when using the useForm function because it automatically infers the types from the Yup schema.

Before

const schema = Yup.shape({ name: string });

const { register } = useForm<{name: string}>({ resolver: yupResolver(schema) });

After

const schema = Yup.shape({ name: string });

const { register } = useForm({ resolver: yupResolver(schema) });

v3.1.0

Compare Source

Features

v3.0.1

Compare Source

Bug Fixes

v3.0.0

Compare Source

BREAKING CHANGES
  • Yup resolver require Yup v1
  • rename rawValues option to raw
  • classValidationResolver: schema options now includes validator and transformer options
  • Please note that ajv and ajv-errors need to be installed separately, as they are not bundled with resolvers

Before:

schemaOptions?: ValidatorOptions,

After:

schemaOptions?: {
    validator?: ValidatorOptions;
    transformer?: ClassTransformOptions;
  }
Bug Fixes
Features
import { useForm } from 'react-hook-form';
import { typeboxResolver } from '@&#8203;hookform/resolvers/typebox';
import { Type } from '@&#8203;sinclair/typebox';

const schema = Type.Object({
  username: Type.String({ minLength: 1 }),
  password: Type.String({ minLength: 1 }),
});

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: typeboxResolver(schema),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      <input type="password" {...register('password')} />
      <input type="submit" />
    </form>
  );
};
Performance Improvements
ai/size-limit (@​size-limit/preset-small-lib)

v11.1.4

Compare Source

v11.1.3

Compare Source

  • Updated esbuild.
  • Updated CSS loaders for webpack.

v11.1.2

Compare Source

v11.1.1

Compare Source

v11.1.0

Compare Source

v11.0.3

Compare Source

  • Fixed .mjs config support (by Arya Emami).
  • Updated esbuild.

v11.0.2

Compare Source

  • Fixed require is not defined regression.
  • Updated esbuild-visualizer.

v11.0.1

Compare Source

  • Updated estimo.
  • Updated lilconfig.

v11.0.0

Compare Source

v10.0.3

Compare Source

v10.0.2

Compare Source

  • Fixed require is not defined in webpack-css (by Andrey Medvedev).
  • Fixed webpack config defined as function support (by @​lev875).

v10.0.1

Compare Source

  • Fixed imports and exports between packages.

v10.0.0

Compare Source

v9.0.0

Compare Source

v8.2.6

Compare Source

  • Fixed npm release process.

v8.2.5

Compare Source

  • Fixed opening report in @size-limit/esbuild-why (by Yaroslav Chapelskyi).
  • Updated esbuild.

v8.2.4

Compare Source

  • Fixed @size-limit/esbuild-why for multiple checks (by Homa Wong).

v8.2.3

Compare Source

  • Fixed npm release process.

v8.2.2

Compare Source

  • Fixed npm release process.

v8.2.0

Compare Source

v8.1.2

Compare Source

  • Fixed silent mode (by Igor Suvorov).
  • Updated esbuild.
  • Reduced dependencies.

v8.1.1

Compare Source

  • Updated esbuild.

v8.1.0

Compare Source

v8.0.1

Compare Source

  • Fixed config and modifyEsbuildConfig options (by Angelo Ashmore).
  • Updated esbuild.

v8.0.0

Compare Source

v7.0.8

Compare Source

  • Fixed peer dependencies.

v7.0.7

Compare Source

  • Fixed plugin versions in presets.

v7.0.6

Compare Source

  • Added brotlied note to CLI output (by @​azat-io).
  • Updated nanospinner.

v7.0.5

Compare Source

  • Added pnpm examples to migration guide.
  • Fixed docs (by @​azat-io).

v7.0.4

Compare Source

  • Updated esbuild.
  • Updated nanospinner.

v7.0.3

Compare Source

  • Fixed package size.

v7.0.2

Compare Source

  • Fixed peer dependency ignore in @size-limit/esbuild.

v7.0.1

Compare Source

  • Fixed --save-bundle arguments with @size-limit/esbuild.
  • Fixed ignore option with @size-limit/esbuild.
  • Fixed brotli option without webpack.
  • Fixed error messages.

v7.0.0

Compare Source

storybookjs/storybook (@​storybook/addon-essentials)

v8.2.6

Compare Source

v8.2.5

Compare Source

v8.2.4

Compare Source

v8.2.3

Compare Source

v8.2.2

Compare Source

v8.2.1

Compare Source

v8.2.0

Compare Source

Hold onto your hats! Storybook 8.2 has dropped, packed with a treasure trove of new features and bug fixes:

  • 🪝 New test hook beforeAll
  • 🕹️ Enhanced play function
  • 📦 Portable stories that let you use your stories in other testing tools
  • 🎁 Consolidated dependency to bring you better performance in a smaller package
  • ✨ Brand new onboarding experience to get you up to speed quicker
  • 💯 Hundreds more improvements
List of all updates

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - 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 was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link

github-actions bot commented Nov 1, 2021

size-limit report 📦

Path Size
dist/klee.cjs.production.min.js 155.3 KB (+20.2% 🔺)
dist/klee.esm.js 127.17 KB (+18.29% 🔺)

@renovate renovate bot changed the title Update all dependencies Update dependency eslint to v8 Nov 1, 2021
@renovate renovate bot changed the title Update dependency eslint to v8 Update all dependencies Nov 3, 2021
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 7075a88 to 8fbccaa Compare November 17, 2021 23:12
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from f3d0ac3 to 24dbf5a Compare December 9, 2021 22:39
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 37bddaa to 3cb0d48 Compare December 17, 2021 23:27
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 44aff80 to bd9555e Compare January 28, 2022 21:31
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from ea952c1 to e1cc9af Compare March 3, 2022 04:32
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 68858c0 to 8f202fb Compare March 25, 2022 01:39
@renovate renovate bot force-pushed the renovate/all branch 15 times, most recently from 2fc15d6 to 89e9b94 Compare July 24, 2024 15:56
@renovate renovate bot force-pushed the renovate/all branch 12 times, most recently from 42a44d3 to c969902 Compare August 1, 2024 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants