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 #18

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

Update all dependencies #18

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) 3.3.4 -> 4.1.3 age adoption passing confidence
@nhost/nhost-js (source) 3.0.9 -> 3.2.5 age adoption passing confidence
@nhost/nhost-js (source) 3.0.9 -> 3.2.5 age adoption passing confidence
@novu/node 0.24.0 -> 2.6.6 age adoption passing confidence
@novu/notification-center 0.24.0 -> 2.0.0 age adoption passing confidence
@serwist/next (source) 8.4.4 -> 9.0.12 age adoption passing confidence
@serwist/precaching (source) 8.4.4 -> 9.0.12 age adoption passing confidence
@serwist/sw (source) 8.4.4 -> 9.0.12 age adoption passing confidence
@t3-oss/env-nextjs (source) 0.9.2 -> 0.12.0 age adoption passing confidence
@types/express (source) 4.17.21 -> 5.0.0 age adoption passing confidence
@types/node (source) 20.11.25 -> 22.13.10 age adoption passing confidence
@types/node (source) 20.11.25 -> 22.13.10 age adoption passing confidence
@types/react-input-mask (source) 3.0.5 -> 3.0.6 age adoption passing confidence
autoprefixer 10.4.18 -> 10.4.21 age adoption passing confidence
axios (source) 1.6.7 -> 1.8.2 age adoption passing confidence
class-variance-authority 0.7.0 -> 0.7.1 age adoption passing confidence
clsx 2.1.0 -> 2.1.1 age adoption passing confidence
dayjs (source) 1.11.10 -> 1.11.13 age adoption passing confidence
eslint-config-prettier ^9.0.0 -> ^10.0.0 age adoption passing confidence
eslint-plugin-react 7.34.0 -> 7.37.4 age adoption passing confidence
express (source) 4.18.3 -> 4.21.2 age adoption passing confidence
graphql 16.8.1 -> 16.10.0 age adoption passing confidence
graphql-request 6.1.0 -> 7.1.2 age adoption passing confidence
husky 9.0.11 -> 9.1.7 age adoption passing confidence
jose 5.2.3 -> 6.0.8 age adoption passing confidence
lint-staged 15.2.2 -> 15.4.3 age adoption passing confidence
next-themes 0.2.1 -> 0.4.5 age adoption passing confidence
pnpm (source) 8.15.4 -> 10.6.2 age adoption passing confidence
postcss (source) 8.4.35 -> 8.5.3 age adoption passing confidence
prettier (source) 3.2.5 -> 3.5.3 age adoption passing confidence
prettier-plugin-tailwindcss 0.5.12 -> 0.6.11 age adoption passing confidence
react-hook-form (source) 7.51.0 -> 7.54.2 age adoption passing confidence
sonner (source) 1.4.3 -> 2.0.1 age adoption passing confidence
tailwind-merge 2.2.1 -> 3.0.2 age adoption passing confidence
typescript (source) 5.4.2 -> 5.8.2 age adoption passing confidence
typescript (source) 5.4.2 -> 5.8.2 age adoption passing confidence
zod (source) 3.22.4 -> 3.24.2 age adoption passing confidence
zod-form-data (source) 2.0.2 -> 2.0.5 age adoption passing confidence

Release Notes

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

v4.1.3

Compare Source

Bug Fixes
  • escape square brackets in field name regex pattern (#​752) (50dd4ad)

v4.1.2

Compare Source

Bug Fixes

v4.1.1

Compare Source

Bug Fixes
  • standard-schema: Propertly handle object path segments (#​746) (8ffada0)

v4.1.0

Compare Source

Features

v4.0.0

Compare Source

Bug Fixes
  • add support for names option (#​713) (985c48d)
  • arktypeResolver: resolve type error when schema is defined from an ArkType scope (#​732) (3233667)
  • handle raw: true option to pass form submission values correctly (#​733) (7807f95)
  • validateFieldsNatively: handle undefined object when reading 'refs' (#​734) (3da2054)
Features
  • ajv: Keep original validation type while using errorMessage (#​728) (5030a59)
  • effectResolver: returns either all errors or only the first one based on criteriaMode (#​737) (12d7d8e)
  • standard-schema: add standard-schema resolver (#​738) (b75a95a)
BREAKING CHANGES
  • ajv: The AJV Resolver now unwraps the errorMessage object to return the original error types. This update may introduce breaking changes to your projects.

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
nhost/nhost (@​nhost/nhost-js)

v3.2.5

Compare Source

v3.2.4

Compare Source

v3.2.3

Compare Source

v3.2.2

Compare Source

v3.2.1

Compare Source

v3.2.0

Compare Source

v3.1.10

Compare Source

v3.1.9

Compare Source

v3.1.8

Compare Source

v3.1.7

Compare Source

v3.1.6

Compare Source

v3.1.5

Compare Source

v3.1.4

Compare Source

v3.1.3

Compare Source

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

v3.0.11

Compare Source

v3.0.10

Compare Source

v3.0.9

Compare Source

v3.0.8

Compare Source

v3.0.7

Compare Source

v3.0.6

Compare Source

novuhq/novu (@​novu/node)

v2.0.5

Compare Source

v2.0.4

Compare Source

v2.0.3

Compare Source

v2.0.2

Compare Source

v2.0.1

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (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.

Copy link

vercel bot commented Apr 1, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
next-shadcn-nhost-web ❌ Failed (Inspect) Apr 22, 2024 10:02am

@renovate renovate bot force-pushed the renovate/all branch 17 times, most recently from 09303a5 to 67e57bb Compare February 27, 2025 02:16
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 890f219 to 8a00638 Compare March 7, 2025 09:49
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 4759141 to 931691c Compare March 9, 2025 14:22
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.

0 participants