Technosorcery / sd2snes-lttp-rando-tracker

Legend of Zelda: A Link to the Past randomizer tracker that works via SD2SNES serial connection
MIT License
11 stars 4 forks source link

Build(deps): bump vee-validate from 4.11.8 to 4.12.1 in /ui #1612

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps vee-validate from 4.11.8 to 4.12.1.

Release notes

Sourced from vee-validate's releases.

v4.12.1

πŸ› Bug Fixes

  • resetForm not resetting unspecified fields to their original values if a partial is provided #4564 (36f6b9e6)
  • resetField not setting the original value of the field causing the dirty flag to not update #4564 (36f6b9e6)

DX

  • unref initial values when initializing the form #4563 (c1c6f399)

v4.12.0

πŸ’£ Breaking Changes

Deprecated reactive initial values #4402 (bbecc973)

Initial values can no longer be reactive since they did not serve any purpose for being so. The recommended API for setting async initial values is by explicitly calling resetForm.

πŸ†• defineField API #4497

This is a new function available on useForm and is meant to replace useFieldModel, defineInputBinds and defineComponentBinds by building upon and improving those APIs.

<script setup>
import { useForm } from 'vee-validate';

const { defineField, errors } = useForm({ validationSchema: schema, validateOnMount: true, });

const [email, emalProps] = defineField('email', { validateOnModelUpdate: true }); const [password, pwProps] = defineField('password', { validateOnModelUpdate: true }); </script>

&lt;template> <input v-model="email" v-bind="emailProps" /> <span>{{ errors.email }}</span>

<input v-model="password" v-bind="pwProps" /> <span>{{ errors.password }}</span> </div> </template>

The docs have been updated to reflect using this new API instead of the deprecated ones. The old ones will continue to work till they get removed in next minor releases.

πŸ†• meta.required

Added support for meta.required state for Typed Schemas only.

... (truncated)

Changelog

Sourced from vee-validate's changelog.

4.12.1

Patch Changes

  • 36f6b9e6: fix: reset form and field behaviors for unspecified values closes #4564
  • c1c6f399: fix: unref initial values when initializing the form closes #4563

4.12.0

Minor Changes

  • bbecc973: feat: deprecate reactive initial values closes #4402

Patch Changes

  • f9a95843: feat: add label support to defineField closes #4530
  • f688896f: fix: avoid overriding paths and destroy path on remove closes #4476 closes #4557
  • 2abb8966: fix: clone values before reset closes #4536
  • e370413b: fix: handle hoisted paths overriding one another
  • 95b701f7: feat: allow getters for field arrays
Commits
  • aeb3694 chore(release): publish
  • 36f6b9e fix: reset form and field behaviors for unspecified values closes #4564
  • c1c6f39 fix: unref initial values when initializing the form closes #4563
  • 628ac7d chore(release): publish
  • f9a9584 feat: introduce defineField and deprecate bind API (#4497)
  • 58b470f feat: add required support for field-level schemas
  • 5940551 feat: path descriptors for typed schemas (#4561)
  • e370413 fix: handle hoisted paths overriding one another
  • f688896 fix: avoid overriding paths and destroy path on remove (#4560)
  • 7f24dd1 chore: upgrade deps and downgrade remark-gfm
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 11 months ago

Superseded by #1616.