Version Packages (next) (#9650)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9671/head svelte@5.0.0-next.14
github-actions[bot] 7 months ago committed by GitHub
parent 81d3e47d1c
commit a31b2e1b8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,6 +28,7 @@
"fifty-steaks-float",
"forty-comics-invent",
"fresh-weeks-trade",
"friendly-lies-camp",
"funny-wombats-argue",
"good-pianos-jump",
"green-eggs-approve",
@ -38,6 +39,7 @@
"khaki-mails-draw",
"kind-deers-lay",
"lazy-spiders-think",
"light-pens-watch",
"long-crews-return",
"lovely-items-turn",
"lovely-rules-eat",
@ -47,22 +49,28 @@
"new-boats-wait",
"odd-needles-joke",
"odd-schools-wait",
"polite-pumpkins-guess",
"poor-eggs-enjoy",
"popular-mangos-rest",
"quiet-camels-mate",
"rare-pears-whisper",
"rich-sheep-burn",
"rotten-buckets-develop",
"serious-zebras-scream",
"seven-deers-jam",
"seven-ravens-check",
"sharp-gorillas-impress",
"shiny-baboons-play",
"shiny-shrimps-march",
"slimy-clouds-talk",
"small-papayas-laugh",
"soft-geese-learn",
"sour-rules-march",
"stale-comics-look",
"strong-lemons-provide",
"tall-shrimps-worry",
"ten-worms-reflect",
"thin-foxes-lick",
"thirty-flowers-sit",
"thirty-ghosts-fix",
"thirty-impalas-repair",
@ -71,6 +79,7 @@
"two-falcons-buy",
"wet-games-fly",
"wicked-clouds-exercise",
"wicked-doors-train"
"wicked-doors-train",
"witty-camels-warn"
]
}

@ -1,5 +1,27 @@
# svelte
## 5.0.0-next.14
### Patch Changes
- feat: warn on references to mutated non-state in template ([#9669](https://github.com/sveltejs/svelte/pull/9669))
- fix: prevent reactive snippet from reinitializing unnecessarily ([#9665](https://github.com/sveltejs/svelte/pull/9665))
- fix: take event attributes into account when checking a11y ([#9664](https://github.com/sveltejs/svelte/pull/9664))
- feat: add $effect.root rune ([#9638](https://github.com/sveltejs/svelte/pull/9638))
- feat: support type definition in {@const} ([#9609](https://github.com/sveltejs/svelte/pull/9609))
- feat: ignore `src`, `srcset`, and `href` attributes when hydrating ([#9662](https://github.com/sveltejs/svelte/pull/9662))
- chore: bump esrap ([#9649](https://github.com/sveltejs/svelte/pull/9649))
- chore: improve `<svelte:element>` generated code ([#9648](https://github.com/sveltejs/svelte/pull/9648))
- chore: prevent some unused variable creation ([#9571](https://github.com/sveltejs/svelte/pull/9571))
## 5.0.0-next.13
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.13",
"version": "5.0.0-next.14",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.13';
export const VERSION = '5.0.0-next.14';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save