Skip to content

fix(deps): update npm #84

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

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

fix(deps): update npm #84

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) 3.3.4 -> 3.10.0 age adoption passing confidence
@preact/preset-vite 2.8.1 -> 2.10.1 age adoption passing confidence
@testing-library/preact 3.2.3 -> 3.2.4 age adoption passing confidence
@types/node (source) 20.10.6 -> 20.17.50 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 6.17.0 -> 6.21.0 age adoption passing confidence
@typescript-eslint/parser (source) 6.17.0 -> 6.21.0 age adoption passing confidence
@vitest/ui (source) 1.1.3 -> 1.6.1 age adoption passing confidence
autoprefixer 10.4.16 -> 10.4.21 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.1 age adoption passing confidence
eslint-config-preact 1.3.0 -> 1.5.0 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.31.0 age adoption passing confidence
eslint-plugin-jest 27.6.1 -> 27.9.0 age adoption passing confidence
eslint-plugin-prettier 5.1.2 -> 5.4.0 age adoption passing confidence
lint-staged 15.2.0 -> 15.5.2 age adoption passing confidence
postcss (source) 8.4.31 -> 8.5.3 age adoption passing confidence
preact (source) 10.19.3 -> 10.26.6 age adoption passing confidence
prettier (source) 3.1.1 -> 3.5.3 age adoption passing confidence
react-hook-form (source) 7.49.2 -> 7.56.4 age adoption passing confidence
tailwindcss (source) 3.4.0 -> 3.4.17 age adoption passing confidence
typescript (source) 5.3.3 -> 5.8.3 age adoption passing confidence
yup 1.3.3 -> 1.6.1 age adoption passing confidence
zustand 4.4.7 -> 4.5.7 age adoption passing confidence

Release Notes

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

v3.10.0

Compare Source

Features

v3.9.1

Compare Source

Bug Fixes

v3.9.0

Compare Source

Features
  • fluentvalidation-ts: add fluentvalidation-ts resolver (#​702) (5fc1e63)
import { useForm } from 'react-hook-form';
import { fluentValidationResolver } from '@​hookform/resolvers/fluentvalidation-ts';
import { Validator } from 'fluentvalidation-ts';

class FormDataValidator extends Validator<FormData> {
  constructor() {
    super();

    this.ruleFor('username')
      .notEmpty()
      .withMessage('username is a required field');
    this.ruleFor('password')
      .notEmpty()
      .withMessage('password is a required field');
  }
}

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: fluentValidationResolver(new FormDataValidator()),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      {errors.username && <span role="alert">{errors.username.message}</span>}
      <input {...register('password')} />
      {errors.password && <span role="alert">{errors.password.message}</span>}
      <button type="submit">submit</button>
    </form>
  );
};

v3.8.0

Compare Source

Features

v3.7.0

Compare Source

Bug Fixes
  • zodResolver: cannot read properties of undefined (reading 'length') (a3e50c6)
  • chore: update valibot dependency to version >=0.33.0 (#​695)
Features
import { useForm } from 'react-hook-form';
import { vineResolver } from '@&#8203;hookform/resolvers/vine';
import vine from '@&#8203;vinejs/vine';

const schema = vine.compile(
  vine.object({
    username: vine.string().minLength(1),
    password: vine.string().minLength(1),
  }),
);

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

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      {errors.username && <span role="alert">{errors.username.message}</span>}
      <input {...register('password')} />
      {errors.password && <span role="alert">{errors.password.message}</span>}
      <button type="submit">submit</button>
    </form>
  );
};

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

Features
preactjs/preset-vite (@​preact/preset-vite)

v2.10.1

Compare Source

What's Changed

New Contributors

Full Changelog: preactjs/preset-vite@v2.10.0...2.10.1

v2.10.0: 2.10.0

Compare Source

Minor

Fixes

Full Changelog: preactjs/preset-vite@2.9.4...v2.10.0

v2.9.4

Compare Source

What's Changed

Full Changelog: preactjs/preset-vite@2.9.3...2.9.4

v2.9.3

Compare Source

What's Changed

Full Changelog: preactjs/preset-vite@2.9.2...2.9.3

v2.9.2

Compare Source

Maintenance

v2.9.1

Compare Source

Features

Bug Fixes

Maintenance

New Contributors

Full Changelog: preactjs/preset-vite@2.9.0...2.9.1

v2.9.0

Compare Source

Features

Fixes

Maintenance

Full Changelog: preactjs/preset-vite@2.8.3...2.9.0

v2.8.3

Compare Source

What's Changed

New Contributors

Full Changelog: preactjs/preset-vite@2.8.2...2.8.3

v2.8.2

Compare Source

What's Changed

Full Changelog: preactjs/preset-vite@2.8.1...2.8.2

testing-library/preact-testing-library (@​testing-library/preact)

v3.2.4

Compare Source

Bug Fixes
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.21.0

Compare Source

🚀 Features
  • export plugin metadata

  • allow parserOptions.project: false

  • eslint-plugin: add rule prefer-find

🩹 Fixes
  • eslint-plugin: [no-unused-vars] don't report on types referenced in export assignment expression

  • eslint-plugin: [switch-exhaustiveness-check] better support for intersections, infinite types, non-union values

  • eslint-plugin: [consistent-type-imports] dont report on types used in export assignment expressions

  • eslint-plugin: [no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option

  • eslint-plugin: [class-literal-property-style] allow getter when same key setter exists

  • eslint-plugin: [no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before as keyword

❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v6.20.0

Compare Source

🚀 Features
  • eslint-plugin: [member-ordering] allow easy reuse of the default ordering
🩹 Fixes
  • eslint-plugin: [no-useless-template-literals] incorrect bigint autofix result

  • eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as non-nullable

  • eslint-plugin: [no-useless-template-literals] report Infinity & NaN

  • eslint-plugin: [prefer-readonly] disable checking accessors

❤️ Thank You
  • Alex Parloti
  • auvred
  • James Browning
  • StyleShit
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v6.19.1

Compare Source

🩹 Fixes
  • type-utils: preventing isUnsafeAssignment infinite recursive calls

  • eslint-plugin: [no-unnecessary-condition] fix false positive for type variable

❤️ Thank You
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v6.19.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-promise-reject-errors] add rule

  • eslint-plugin: [no-array-delete] add new rule

  • eslint-plugin: [no-useless-template-literals] add fix suggestions

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression

  • eslint-plugin: [no-unnecesary-type-assertion] treat unknown/any as nullable

❤️ Thank You
  • auvred
  • Brad Zacher
  • Josh Goldberg ✨
  • Joshua Chen
  • LJX
  • Steven
  • StyleShit

You can read about our versioning strategy and releases on our website.

v6.18.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-non-null-assertion] provide valid fix when member access is on next line

  • eslint-plugin: [no-unnecessary-condition] improve checking optional callee

  • eslint-plugin: [prefer-readonly] support modifiers of unions and intersections

  • eslint-plugin: [switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option

❤️ Thank You
  • auvred
  • James
  • Josh Goldberg ✨
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v6.18.0

Compare Source

🚀 Features
  • typescript-estree: throw on invalid update expressions

  • eslint-plugin: [no-var-requires, no-require-imports] allow option

❤️ Thank You
  • auvred
  • Joshua Chen

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.21.0

Compare Source

🚀 Features
  • allow parserOptions.project: false
❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v6.20.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v6.19.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v6.19.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v6.18.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v6.18.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (@​vitest/ui)

v1.6.1

Compare Source

This release includes security patches for:

   🐞 Bug Fixes
    View changes on GitHub

v1.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.5.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

   🚀 Features

Configuration

📅 Schedule: Branch creation - "on monday before 8am" (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.

@renovate renovate bot requested a review from a team as a code owner January 15, 2024 02:37
@renovate renovate bot force-pushed the renovate/npm branch 13 times, most recently from 6492181 to 8e01afd Compare January 20, 2024 19:25
@renovate renovate bot force-pushed the renovate/npm branch 8 times, most recently from 1fa8742 to e138720 Compare January 29, 2024 19:59
@renovate renovate bot force-pushed the renovate/npm branch 6 times, most recently from 4d44dea to 17d1f11 Compare February 3, 2024 03:01
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from 2ed32be to 23cd66a Compare April 14, 2025 22:02
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from 0585c0f to c63416f Compare April 28, 2025 12:13
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from 24c22a4 to 6e128dc Compare May 7, 2025 13:06
@renovate renovate bot force-pushed the renovate/npm branch 10 times, most recently from c432c41 to d707ae1 Compare May 11, 2025 15:01
@renovate renovate bot force-pushed the renovate/npm branch 6 times, most recently from 25b2dde to 3b44dc0 Compare May 23, 2025 19:34
@renovate renovate bot force-pushed the renovate/npm branch from 3b44dc0 to 37b8f86 Compare May 24, 2025 02:30
Copy link

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.

0 participants