Version Packages (next) (#13257)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13275/head svelte@5.0.0-next.247
github-actions[bot] 4 days ago committed by GitHub
parent 3864229418
commit c1d8eb375d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -283,6 +283,7 @@
"good-rice-tap", "good-rice-tap",
"good-rivers-yawn", "good-rivers-yawn",
"good-roses-argue", "good-roses-argue",
"good-zebras-turn",
"gorgeous-boxes-design", "gorgeous-boxes-design",
"gorgeous-coats-jog", "gorgeous-coats-jog",
"gorgeous-hats-wonder", "gorgeous-hats-wonder",
@ -336,6 +337,7 @@
"honest-pans-kick", "honest-pans-kick",
"honest-phones-flash", "honest-phones-flash",
"hot-cooks-repair", "hot-cooks-repair",
"hot-glasses-roll",
"hot-jobs-tap", "hot-jobs-tap",
"hot-kangaroos-invite", "hot-kangaroos-invite",
"hot-peaches-clean", "hot-peaches-clean",
@ -461,6 +463,7 @@
"moody-sheep-type", "moody-sheep-type",
"moody-toys-relax", "moody-toys-relax",
"nasty-carrots-develop", "nasty-carrots-develop",
"nasty-eggs-walk",
"nasty-glasses-begin", "nasty-glasses-begin",
"nasty-lions-double", "nasty-lions-double",
"nasty-mayflies-smoke", "nasty-mayflies-smoke",
@ -584,6 +587,7 @@
"red-doors-own", "red-doors-own",
"red-feet-worry", "red-feet-worry",
"red-kings-draw", "red-kings-draw",
"red-ladybugs-turn",
"red-maps-nail", "red-maps-nail",
"red-poets-study", "red-poets-study",
"red-pots-pretend", "red-pots-pretend",
@ -739,6 +743,7 @@
"stale-fans-rest", "stale-fans-rest",
"stale-jeans-refuse", "stale-jeans-refuse",
"stale-nails-listen", "stale-nails-listen",
"stale-rats-check",
"strange-apricots-happen", "strange-apricots-happen",
"strange-pears-perform", "strange-pears-perform",
"strange-pillows-greet", "strange-pillows-greet",
@ -843,6 +848,7 @@
"twelve-dragons-join", "twelve-dragons-join",
"twelve-onions-juggle", "twelve-onions-juggle",
"twelve-scissors-kneel", "twelve-scissors-kneel",
"twelve-shrimps-run",
"twelve-worms-jog", "twelve-worms-jog",
"twenty-gifts-develop", "twenty-gifts-develop",
"twenty-toes-attack", "twenty-toes-attack",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.247
### Patch Changes
- fix: wait until template strings are complete before sanitizing ([#13262](https://github.com/sveltejs/svelte/pull/13262))
- fix: avoid flushing sync with $inspect ([#13239](https://github.com/sveltejs/svelte/pull/13239))
- fix: separate `template_effect` for dynamic class/style directive with dynamic attributes ([#13171](https://github.com/sveltejs/svelte/pull/13171))
- fix: treat pure call expressions as potentially reactive if they reference local bindings ([#13264](https://github.com/sveltejs/svelte/pull/13264))
- fix: follow spec for `customElement` option ([#13247](https://github.com/sveltejs/svelte/pull/13247))
- fix: tighten up `# svelte prefix validation ([#13261](https://github.com/sveltejs/svelte/pull/13261))
## 5.0.0-next.246 ## 5.0.0-next.246
### 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.246", "version": "5.0.0-next.247",
"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.246'; export const VERSION = '5.0.0-next.247';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save