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

@ -1,5 +1,21 @@
# 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
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.246",
"version": "5.0.0-next.247",
"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.246';
export const VERSION = '5.0.0-next.247';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save