Releases: TanStack/form
v0.41.1
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
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.41.0
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
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.40.4
Version 0.40.4 - 12/17/24, 9:16 AM
Changes
Fix
Packages
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.40.3
Version 0.40.3 - 12/16/24, 10:43 PM
Changes
Fix
Chore
Packages
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.40.2
Version 0.40.2 - 12/14/24, 10:35 AM
Changes
Fix
Chore
Docs
- rename file (#1073) (8042428) by Leonardo Montini
- re-add zod import in schema library example (#1069) (939f0cc) by Pascal Küsgen
Packages
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.40.1
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
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.40.0
Version 0.40.0 - 12/10/24, 9:55 PM
Changes
Feat
Packages
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.39.2
Version 0.39.2 - 12/10/24, 4:58 PM
Changes
Fix
Other
- (504f30d) by turkerdev
Packages
- @tanstack/[email protected]
v0.39.1
Version 0.39.1 - 12/10/24, 4:51 PM
Changes
Fix
Chore
Ci
Docs
Packages
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
v0.39.0
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
'suseStore(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 importuseField
from@tanstack/react-form
and adduseField({form, ...otherProps})
as an interim migration strategy.
Packages
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]
- @tanstack/[email protected]