Skip to content

chore(deps-dev): bump @conform-to/zod from 1.19.4 to 1.20.0 - #2053

Merged
yusukebe merged 1 commit into
mainfrom
dependabot/npm_and_yarn/conform-to/zod-1.20.0
Jul 31, 2026
Merged

chore(deps-dev): bump @conform-to/zod from 1.19.4 to 1.20.0#2053
yusukebe merged 1 commit into
mainfrom
dependabot/npm_and_yarn/conform-to/zod-1.20.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Bumps @conform-to/zod from 1.19.4 to 1.20.0.

Release notes

Sourced from @​conform-to/zod's releases.

v1.20.0

Breaking Changes (Future APIs)

[!IMPORTANT] All options previously deprecated in the future APIs will be removed in the next minor release as we prepare for an upcoming v2.0 beta.

  • Renamed the value returned by resolveSubmission() to targetValue. (#1246)

    -const { intent, value } = resolveSubmission(submission);
    +const { intent, targetValue } = resolveSubmission(submission);
  • Staged validation in onValidate() now uses a { result, pending } object instead of a tuple. (#1247)

    Staged validation lets onValidate() return a known validation result immediately while a slower asynchronous check continues. This behavior was previously undocumented. If you relied on it, update your callback to use the new object structure:

    -return [result, pending];
    +return { result, pending };

What's Changed

  • Added custom intents to the future APIs. Define an intent with defineIntent(), register it through configureForms() or useForm(), and dispatch it alongside the built-in intents. (#1191)

    const copyField = defineIntent<
      (options: { from: string; to: string }) => void
    >({
      parse(options) {
        return options;
      },
      resolve({ value, payload }) {
        return setPathValue(
          value,
          payload.to,
          getPathValue(value, payload.from),
        );
      },
    });
    const forms = configureForms({
    intents: { copyField },
    });
    const { intent } = forms.useForm();
    intent.copyField({
    from: fields.billing.name,

... (truncated)

Commits
  • 0509e08 release: bump packages version (#1223)
  • fc9b1df fix(zod): support z.readonly() in coerceFormValue and getZodConstraint (#1239)
  • 3c961ad fix(conform-zod): preserve branch-specific required in union/discriminated un...
  • 26ab8bb chore: merge v1.19.4 into main
  • 71a1bb8 chore: optimize vitest config (#1222)
  • 296bcf7 chore: setup node 22 and pnpm 11 (#1220)
  • See full diff 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 show <dependency name> 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)

Bumps [@conform-to/zod](https://github.com/edmundhung/conform/tree/HEAD/packages/conform-zod) from 1.19.4 to 1.20.0.
- [Release notes](https://github.com/edmundhung/conform/releases)
- [Commits](https://github.com/edmundhung/conform/commits/v1.20.0/packages/conform-zod)

---
updated-dependencies:
- dependency-name: "@conform-to/zod"
  dependency-version: 1.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 28, 2026
@changeset-bot

changeset-bot Bot commented Jul 28, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 69ebe78

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@codecov

codecov Bot commented Jul 28, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.14%. Comparing base (40f956e) to head (69ebe78).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2053   +/-   ##
=======================================
  Coverage   92.14%   92.14%           
=======================================
  Files         115      115           
  Lines        4113     4113           
  Branches     1072     1072           
=======================================
  Hits         3790     3790           
  Misses        287      287           
  Partials       36       36           
Flag Coverage Δ
conform-validator 96.15% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@yusukebe
yusukebe merged commit 957a78a into main Jul 31, 2026
100 checks passed
@yusukebe
yusukebe deleted the dependabot/npm_and_yarn/conform-to/zod-1.20.0 branch July 31, 2026 09:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant