Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: logaretm/vee-validate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.9.6
Choose a base ref
...
head repository: logaretm/vee-validate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.10.0
Choose a head ref

Commits on May 31, 2023

  1. Copy the full SHA
    7ce9d67 View commit details
  2. Copy the full SHA
    05d957e View commit details
  3. Copy the full SHA
    7a548f4 View commit details
  4. Copy the full SHA
    258ed41 View commit details
  5. Copy the full SHA
    3c55ea4 View commit details

Commits on Jun 1, 2023

  1. Add Kz locale for 4.x (#4302)

    Co-authored-by: karabayev <karabayev@kolesa.kz>
    BekStar7 and karabayev authored Jun 1, 2023
    Copy the full SHA
    d6b3d91 View commit details

Commits on Jun 5, 2023

  1. Copy the full SHA
    3e4a7c1 View commit details
  2. Copy the full SHA
    d4fafc9 View commit details

Commits on Jun 6, 2023

  1. Copy the full SHA
    f1dc135 View commit details

Commits on Jun 7, 2023

  1. Copy the full SHA
    1d6a434 View commit details

Commits on Jun 8, 2023

  1. Copy the full SHA
    a54a073 View commit details

Commits on Jun 13, 2023

  1. Copy the full SHA
    b71fe6e View commit details
  2. Copy the full SHA
    ed20891 View commit details
  3. chore: deprecation notice

    logaretm committed Jun 13, 2023
    Copy the full SHA
    a972d88 View commit details

Commits on Jun 19, 2023

  1. chore: upgrade dependencies

    logaretm committed Jun 19, 2023
    Copy the full SHA
    e687801 View commit details
  2. chore: duplicate type root

    logaretm committed Jun 19, 2023
    Copy the full SHA
    402a923 View commit details
  3. Copy the full SHA
    77345c4 View commit details

Commits on Jun 20, 2023

  1. Copy the full SHA
    6a3f9f1 View commit details
  2. Copy the full SHA
    1c3ed01 View commit details
  3. Copy the full SHA
    2cf0eec View commit details

Commits on Jun 22, 2023

  1. Copy the full SHA
    bfd6b00 View commit details
  2. chore(release): publish

    logaretm committed Jun 22, 2023
    Copy the full SHA
    61e1fbc View commit details
Showing with 2,884 additions and 2,306 deletions.
  1. +592 −205 CHANGELOG.md
  2. +5 −0 README.md
  3. +10 −10 docs/package.json
  4. +1 −1 docs/src/components/SiteHead.astro
  5. +0 −4 docs/src/layouts/HomeLayout.astro
  6. +1 −1 docs/src/pages/api/composition-helpers.mdx
  7. +17 −0 inlang.config.js
  8. +18 −19 package.json
  9. +6 −0 packages/i18n/CHANGELOG.md
  10. +1 −1 packages/i18n/package.json
  11. +32 −0 packages/i18n/src/locale/kz.json
  12. +2 −2 packages/i18n/tests/index.spec.ts
  13. +17 −0 packages/nuxt/CHANGELOG.md
  14. +7 −7 packages/nuxt/package.json
  15. +17 −0 packages/rules/CHANGELOG.md
  16. +2 −2 packages/rules/package.json
  17. +4 −0 packages/rules/src/alpha_helper.ts
  18. +19 −0 packages/vee-validate/CHANGELOG.md
  19. +3 −3 packages/vee-validate/package.json
  20. +2 −5 packages/vee-validate/src/Field.ts
  21. +0 −1 packages/vee-validate/src/index.ts
  22. +2 −4 packages/vee-validate/src/types/common.ts
  23. +12 −17 packages/vee-validate/src/types/forms.ts
  24. +38 −32 packages/vee-validate/src/useField.ts
  25. +2 −2 packages/vee-validate/src/useFieldArray.ts
  26. +1 −2 packages/vee-validate/src/useFieldError.ts
  27. +2 −2 packages/vee-validate/src/useFieldState.ts
  28. +1 −2 packages/vee-validate/src/useFieldValue.ts
  29. +40 −25 packages/vee-validate/src/useForm.ts
  30. +1 −2 packages/vee-validate/src/useIsFieldDirty.ts
  31. +1 −2 packages/vee-validate/src/useIsFieldTouched.ts
  32. +1 −2 packages/vee-validate/src/useIsFieldValid.ts
  33. +2 −2 packages/vee-validate/src/useValidateField.ts
  34. +7 −13 packages/vee-validate/src/utils/common.ts
  35. +9 −1 packages/vee-validate/src/utils/events.ts
  36. +7 −3 packages/vee-validate/src/validate.ts
  37. +2 −2 packages/vee-validate/tests/Field.spec.ts
  38. +44 −0 packages/vee-validate/tests/Form.spec.ts
  39. +9 −1 packages/vee-validate/tests/helpers/ModelComp.ts
  40. +45 −2 packages/vee-validate/tests/useField.spec.ts
  41. +102 −1 packages/vee-validate/tests/useForm.spec.ts
  42. +17 −0 packages/yup/CHANGELOG.md
  43. +4 −4 packages/yup/package.json
  44. +17 −0 packages/zod/CHANGELOG.md
  45. +3 −3 packages/zod/package.json
  46. +1,757 −1,919 pnpm-lock.yaml
  47. +2 −2 tsconfig.json
Loading