Release Date: January 7, 2026
Inertia Version: 2.3.7
Summary
Inertia 2.3.7 was released on January 7, 2026. This patch version introduces a dontRemember() form helper method, fixes polling breaking in browser auto-completion, and a TypeScript unbound-method ESLint warning when destructuring methods from useForm().
What's New
Inertia.js added a dontRemember() method to the form helper, which allows excluding specific fields from being remembered in history state. You can use this for sensitive fields such as passwords or credit card details:
const form = useForm('payment-form', { card_number: '', cvv: '', expiry: '',}).dontRemember('card_number', 'cvv')
See Pull Request #2792 for details.
References
- Official changelog: inertia/CHANGELOG.md
- PR: Add
dontRemember()method to form helper by @pascalbaljet in https://github.com/inertiajs/inertia/pull/2792
- PR: Only call
replaceState()when page data has actually changed by @pascalbaljet in https://github.com/inertiajs/inertia/pull/2793 - PR: Fix
@typescript-eslint/unbound-methodwarning when destructuringuseForm()methods by @pascalbaljet in https://github.com/inertiajs/inertia/pull/2794 - Full 2.3.7 changelog: all 2.3.7 changes