Version Packages (next) (#13640)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13651/head svelte@5.0.0-next.269
github-actions[bot] 2 months ago committed by GitHub
parent 193cc37f7a
commit d7cf76bbb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -171,6 +171,7 @@
"eight-cougars-watch",
"eight-hornets-punch",
"eight-jeans-compare",
"eight-pans-worry",
"eight-pianos-raise",
"eight-steaks-shout",
"eight-waves-mate",
@ -246,6 +247,7 @@
"fluffy-kings-complain",
"fluffy-ravens-juggle",
"forty-bikes-buy",
"forty-chicken-heal",
"forty-comics-invent",
"forty-dogs-divide",
"forty-dolls-wave",
@ -345,6 +347,7 @@
"healthy-dancers-play",
"healthy-mangos-brush",
"healthy-planes-vanish",
"healthy-poets-float",
"healthy-zebras-accept",
"heavy-cars-ring",
"heavy-comics-move",
@ -400,6 +403,7 @@
"khaki-ligers-sing",
"khaki-mails-draw",
"khaki-mails-scream",
"khaki-mirrors-warn",
"khaki-monkeys-cry",
"khaki-moose-arrive",
"khaki-tomatoes-rule",
@ -433,6 +437,7 @@
"lemon-meals-appear",
"lemon-trees-act",
"light-badgers-glow",
"light-crews-deny",
"light-days-clean",
"light-hounds-carry",
"light-humans-hang",
@ -497,6 +502,7 @@
"moody-houses-argue",
"moody-lions-watch",
"moody-owls-cry",
"moody-pugs-tan",
"moody-sheep-type",
"moody-toys-relax",
"nasty-carrots-develop",
@ -606,6 +612,7 @@
"popular-apes-bathe",
"popular-cameras-tie",
"popular-cups-bathe",
"popular-dolphins-shake",
"popular-feet-rule",
"popular-games-hug",
"popular-ligers-perform",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.269
### Patch Changes
- fix: transitions within dynamic components now function correctly ([#13646](https://github.com/sveltejs/svelte/pull/13646))
- fix: use `internal_set` in `await` block ([#13642](https://github.com/sveltejs/svelte/pull/13642))
- fix: correctly applies autofocus to static elements ([#13648](https://github.com/sveltejs/svelte/pull/13648))
- fix: `method` attribute is case insensitive ([#13639](https://github.com/sveltejs/svelte/pull/13639))
- chore: avoid reporting inspections when an exception occurs ([#13601](https://github.com/sveltejs/svelte/pull/13601))
- fix: ensure legacy run utility does not cause cycles ([#13643](https://github.com/sveltejs/svelte/pull/13643))
- fix: better migration for leading and trailing comments ([#13630](https://github.com/sveltejs/svelte/pull/13630))
## 5.0.0-next.268
### Patch Changes

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

Loading…
Cancel
Save