From ff99ff9c8cbcce9e74dae446f3c4a695c4f11422 Mon Sep 17 00:00:00 2001 From: Simon H <5968653+dummdidumm@users.noreply.github.com> Date: Mon, 31 Oct 2022 21:20:18 +0100 Subject: [PATCH] tweaks --- .../blog/2022-11-01-whats-new-in-svelte-november-2022.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/blog/2022-11-01-whats-new-in-svelte-november-2022.md b/site/content/blog/2022-11-01-whats-new-in-svelte-november-2022.md index e55f60bcee..0c909548af 100644 --- a/site/content/blog/2022-11-01-whats-new-in-svelte-november-2022.md +++ b/site/content/blog/2022-11-01-whats-new-in-svelte-november-2022.md @@ -10,9 +10,9 @@ It's been a busy October for the Svelte community. `use:enhance` and Advanced Ro There's also a _huge_ showcase to cover... so let's jump in! ## What's new in SvelteKit -- The new `update` method for `use:enhance` lets you provide a custom function with a callback to forms ([docs](https://kit.svelte.dev/docs/form-actions#progressive-enhancement-use-enhance), [#7083](https://github.com/sveltejs/kit/pull/7083) and [#7326](https://github.com/sveltejs/kit/pull/7326)) +- The new `update` method for `use:enhance` lets you easily get back the default form behavior while augmenting it with your own logic ([docs](https://kit.svelte.dev/docs/form-actions#progressive-enhancement-use-enhance), [#7083](https://github.com/sveltejs/kit/pull/7083) and [#7326](https://github.com/sveltejs/kit/pull/7326)) - `[[optional]]` parameters are now available for routing ([docs](https://kit.svelte.dev/docs/advanced-routing#optional-parameters), [#7051](https://github.com/sveltejs/kit/pull/7051)) -- `goto` now has `invalidateAll` to make all `load` functions belonging to the currently active page to re-run([docs](https://kit.svelte.dev/docs/modules#app-navigation-goto), [#7407](https://github.com/sveltejs/kit/pull/7407)) +- `goto` now has `invalidateAll` to (re-)run all `load` functions belonging to the new active page ([docs](https://kit.svelte.dev/docs/modules#app-navigation-goto), [#7407](https://github.com/sveltejs/kit/pull/7407)) - `config.kit.paths.base` is now used in adapters looking for static assets - fixing 404 issues across `adapter-netlify`, `adapter-vercel`, `adapter-cloudflare`, and `adapter-cloudflare-workers` ([#4448](https://github.com/sveltejs/kit/pull/4448)) **Breaking changes:**