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

@ -1,5 +1,27 @@
# svelte # 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 ## 5.0.0-next.13
### Patch Changes ### Patch Changes

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

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

Loading…
Cancel
Save