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

fix(deps): update dependency @tanstack/react-form to ^0.42.0 #250

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tanstack/react-form (source) ^0.32.0 -> ^0.42.0 age adoption passing confidence

Release Notes

TanStack/form (@​tanstack/react-form)

v0.42.0

Compare Source

Version 0.42.0 - 2/13/25, 6:44 PM

Changes

Feat
  • form-core: field meta and errors are shifted when doing array operations (990a916) by Leonardo Montini

Packages

v0.41.4

Compare Source

Version 0.41.4 - 2/11/25, 10:48 PM

Changes

Fix
  • form-core: skip form validation for each single field on form submit (#​1147) (5f1bc0b) by Leonardo Montini
Ci
Docs
  • risks of omitting useStore selector (#​1126) (2bd0696) by Harry Whorlow

Packages

v0.41.3

Compare Source

Version 0.41.3 - 1/21/25, 6:32 PM

Changes

Fix
  • useStore without a selector should no longer crash in React (#​1123) (a56d353) by Corbin Crutchley
Docs
  • Add package manager examples for TanStack Form installation (#​1120) (280060a) by Sagar Dwivedi

Packages

v0.41.2

Compare Source

Version 0.41.2 - 1/15/25, 2:00 AM

Changes

Fix
  • meta should not regenerate every render (#​1114) (08d610f) by Corbin Crutchley
Chore
  • deps: use react 19 stable, fix JSX resolution (#​1113) (b60264c) by Lachlan Collins
  • deps: replace rimraf with premove, update deps (#​1112) (58628f7) by Lachlan Collins
  • deps: update autofix-ci/action digest to 551dded (#​1110) (3e0ef50) by renovate[bot]

Packages

v0.41.1

Compare Source

Version 0.41.1 - 1/11/25, 12:34 PM

Changes

Fix
  • react-form: update the name of the rendered field when it changes (b5133f2) by fuko

Packages

v0.41.0

Compare Source

Version 0.41.0 - 12/29/24, 4:14 PM

Changes
Feat
  • make accessing field properties faster and more stable (be7f9bf) by Corbin Crutchley
Packages

v0.40.4

Compare Source

Version 0.40.4 - 12/17/24, 9:16 AM

Changes

Fix
  • set fields to isBlurred only after field blur event (#​940) (1f043e9) by Pascal Küsgen

Packages

v0.40.3

Compare Source

Version 0.40.3 - 12/16/24, 10:43 PM

Changes
Fix
  • spread field errors on form onMount validator (#​1079) (ab9dd76) by Leonardo Montini
Chore
  • allow unusedLocals in standard-schema example (#​1068) (91eb9ab) by Misha Kaletsky
Packages

v0.40.2

Compare Source

Version 0.40.2 - 12/14/24, 10:35 AM

Changes

Fix
  • remove dependency from standard schema and internalize it (#​1076) (4503caf) by Leonardo Montini
Chore
  • deprecate adapters for zod and valibot (#​1065) (af3f6b3) by Leonardo Montini
Docs

Packages

v0.40.1

Compare Source

Version 0.40.1 - 12/11/24, 8:32 PM

Changes

Fix
  • allow standard schema validator on field validators without explicit adapter (#​1064) (8e7ca78) by Leonardo Montini

Packages

v0.40.0

Compare Source

Version 0.40.0 - 12/10/24, 9:55 PM

Changes

Feat
  • native support for standard schema libraries (#​1020) (6a82b7f) by Leonardo Montini

Packages

v0.39.2

Compare Source

Version 0.39.2 - 12/10/24, 4:58 PM

Changes

Fix
Other

Packages

v0.39.1

Compare Source

Version 0.39.1 - 12/10/24, 4:51 PM

Changes

Fix
  • export useStore in Solid, React, and Vue forms (#​1063) (3971cf3) by Corbin Crutchley
Chore
Ci
Docs
  • add balastrong"s video tutorials (#​1048) (5c875c3) by Leonardo Montini

Packages

v0.39.0

Compare Source

Version 0.39.0 - 11/29/24, 9:06 AM (Manual Release)

Changes

Breaking Changes

This release introduces two breaking changes for our React adapter:

  • Removing form.useStore in favor of @tanstack/react-store's useStore(form.store) API
  • Removing form.useField in favor of other APIs

No other adapters have any changes in any other way.

We did not want to make either of these changes, but were forced to by the React Compiler not allowing for dynamic hooks. We're deeply sorry about these breaking changes and will do our best to mitigate future breaking changes prior to 1.0.

Migration Guides

To fix form.useStore(selectorFn) you should be able to easily replace it with @tanstack/react-store's useStore(form.store, selectorFn). These will behave identically from one another.

form.useField, on the other hand, is more tricky. We generally discouraged you from using this hook from the very beginning and see its usage as an anti-pattern.

While migrating away from useField entirely is a better solution in the long-run, you can also import useField from @tanstack/react-form and add useField({form, ...otherProps}) as an interim migration strategy.

Packages

v0.38.0

Compare Source

Version 0.38.0 - 11/29/24, 8:07 AM (Manual Release)

Changes

Breaking Changes
  • Drop support for TypeScript 4.9 and 5.0
    • TypeScript 5.1 is now required
  • Drop support for Angular 17.3 and 18.x
    • Angular 19 is now required

I'd (Corbin) like to personally apologize for introducing these breaking changes during our RC phase. While working on fixing various bugs we realized we couldn't easily support these versions without majorly impacting users on these older versions of TypeScript and Angular.

Chore
  • add tests for TypeScript 5.4+ (ea4b760) by Corbin Crutchley
  • fix lint (b8d20bd) by Corbin Crutchley
Ci
  • apply automated fixes and generate docs (987510b) by autofix-ci[bot]
  • apply automated fixes and generate docs (6cee9ec) by autofix-ci[bot]
Docs
  • react: move listeners prop to the form field component (#​1039) (477e844) by Damian Stasik
Other

Packages

v0.37.1

Compare Source

Version 0.37.1 - 11/25/24, 9:12 PM

Changes

Fix
  • form-core: handle numeric keys as array index only if parent is an array (#​993) (a4e76c8) by Leonardo Montini

Packages

v0.37.0

Compare Source

Version 0.37.0 - 11/25/24, 9:03 PM

Changes
Feat
Chore
  • deps: update dependency isbot to v5 (#​1033) (1db18b2) by renovate[bot]
Packages

v0.36.3

Compare Source

Version 0.36.3 - 11/23/24, 12:57 PM

Changes

Fix

Packages

v0.36.2

Compare Source

Version 0.36.2 - 11/19/24, 7:58 PM

Changes

Fix
  • form-core: async form validator runs only if sync field & form passed (#​1029) (362ce10) by Leonardo Montini

Packages

v0.36.1

Compare Source

Version 0.36.1 - 11/19/24, 6:27 PM

Changes

Fix
  • core: run form submit validator once on submit (#​1028) (72516f1) by Leonardo Montini
Chore
Docs

Packages

v0.36.0

Compare Source

Version 0.36.0 - 11/16/24, 6:06 PM

Changes

Feat

Packages

v0.35.0

Compare Source

Version 0.35.0 - 11/12/24, 8:33 PM

Changes
Feat
  • add values parameter to form.reset to reset the form with new values (#​791) (576cd83) by Valerii Nosikov
Chore
Packages

v0.34.4

Compare Source

Version 0.34.4 - 11/4/24, 8:30 PM

Changes

Fix
  • core: remove mount validation on touch (#​726) (dbaf283) by Leonardo Montini

Packages

v0.34.3

Compare Source

Version 0.34.3 - 11/4/24, 6:50 PM

Changes

Fix

Packages

v0.34.2

Compare Source

Version 0.34.2 - 11/4/24, 10:21 AM

Changes

Fix
  • Valibot peer dependency to support dist-tags (#​997) (b9613c8) by Fabian Hiller
Chore
  • deps: update all non-major dependencies (d79ae74) by renovate[bot]
  • deps: lock file maintenance (19773f7) by renovate[bot]
  • deps: update all non-major dependencies (457430b) by renovate[bot]

Packages

v0.34.1

Compare Source

Version 0.34.1 - 10/22/24, 7:28 AM

Changes

Fix
  • core: Fixed issue with multiple validation triggers and resolved setTimeout memory leak (#​962) (5e22635) by rjsdnql123
Chore
Ci
  • apply automated fixes and generate docs (e07a6ba) by autofix-ci[bot]
  • restore autofix on pull requests (#​983) (bd8c5cf) by Leonardo Montini
Docs
  • update react-zod example defining a form-level zod schema (#​982) (ef791f6) by Vicente Matus
Doc
  • examples: fix next server actions example (#​970) (f81eca7) by rburgst

Packages

v0.34.0

Compare Source

Version 0.34.0 - 10/16/24, 5:21 PM

Changes

Feat
  • expose Vue specific interfaces (#​971) (8c1c019) by Csupity Laszlo
Chore
  • update valibot dependency to v1 (#​972) (c8bcc60) by Fabian Hiller
  • deps: update all non-major dependencies (2253440) by renovate[bot]
  • deps: update all non-major dependencies (62f35cf) by renovate[bot]
  • deps: update all non-major dependencies (3fee560) by renovate[bot]
  • deps: update all non-major dependencies (00e6a35) by renovate[bot]
Test
Ci
  • apply automated fixes and doc generation\n\n[skip ci] (611f2a6) by autofix-ci[bot]
  • skip ci on autofix commits (#​969) (6f7db6e) by Leonardo Montini
  • apply automated fixes (6df3e6c) by autofix-ci[bot]
  • apply automated fixes (d32900d) by autofix-ci[bot]
  • apply automated fixes (ade193c) by autofix-ci[bot]
Docs
  • await async submit operations to showcase isSubmitting flag (#​965) (b16d6c7) by Leonardo Montini
  • fix broken link (#​953) (1ab8229) by Nikita

Packages

v0.33.0

Compare Source

Version 0.33.0 - 9/19/24, 9:46 AM

Changes

Feat
  • Field validation from form schema (#​925) (4f39347) by Corbin Crutchley
Chore
  • deps: update all non-major dependencies (22ece11) by renovate[bot]
  • deps: update all non-major dependencies (c584f1f) by renovate[bot]
Docs

Packages


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 force-pushed the renovate/tanstack-form-monorepo branch 2 times, most recently from 758742b to aca0d74 Compare January 25, 2025 19:40
@renovate renovate bot force-pushed the renovate/tanstack-form-monorepo branch 2 times, most recently from 3cd39f9 to a4fd865 Compare February 10, 2025 22:16
@renovate renovate bot force-pushed the renovate/tanstack-form-monorepo branch from a4fd865 to 2028131 Compare February 13, 2025 23:05
@renovate renovate bot changed the title fix(deps): update dependency @tanstack/react-form to ^0.41.0 fix(deps): update dependency @tanstack/react-form to ^0.42.0 Feb 13, 2025
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