Version Packages (next)

github-actions[bot] 4 days ago
parent c42bb04276
commit a9a32552f3

@ -87,6 +87,7 @@
"cool-roses-trade", "cool-roses-trade",
"cuddly-pianos-drop", "cuddly-pianos-drop",
"cuddly-points-tickle", "cuddly-points-tickle",
"curly-cooks-cheer",
"curly-lizards-dream", "curly-lizards-dream",
"curvy-buses-laugh", "curvy-buses-laugh",
"curvy-cups-cough", "curvy-cups-cough",
@ -229,6 +230,7 @@
"happy-suits-film", "happy-suits-film",
"healthy-ants-film", "healthy-ants-film",
"healthy-planes-vanish", "healthy-planes-vanish",
"healthy-zebras-accept",
"heavy-comics-move", "heavy-comics-move",
"heavy-doors-applaud", "heavy-doors-applaud",
"heavy-ducks-leave", "heavy-ducks-leave",
@ -312,6 +314,7 @@
"lovely-carpets-lick", "lovely-carpets-lick",
"lovely-houses-own", "lovely-houses-own",
"lovely-items-turn", "lovely-items-turn",
"lovely-ravens-crash",
"lovely-rules-eat", "lovely-rules-eat",
"lovely-zebras-own", "lovely-zebras-own",
"lucky-colts-remember", "lucky-colts-remember",
@ -328,6 +331,7 @@
"mighty-cooks-scream", "mighty-cooks-scream",
"mighty-files-hammer", "mighty-files-hammer",
"mighty-frogs-obey", "mighty-frogs-obey",
"mighty-shoes-nail",
"modern-apricots-promise", "modern-apricots-promise",
"modern-fishes-double", "modern-fishes-double",
"moody-carrots-lay", "moody-carrots-lay",
@ -368,6 +372,7 @@
"old-mails-sneeze", "old-mails-sneeze",
"old-oranges-compete", "old-oranges-compete",
"olive-apples-lick", "olive-apples-lick",
"olive-cobras-wonder",
"olive-kangaroos-brake", "olive-kangaroos-brake",
"olive-mice-fix", "olive-mice-fix",
"olive-moons-act", "olive-moons-act",
@ -395,6 +400,7 @@
"poor-seahorses-flash", "poor-seahorses-flash",
"popular-apes-bathe", "popular-apes-bathe",
"popular-cameras-tie", "popular-cameras-tie",
"popular-feet-rule",
"popular-games-hug", "popular-games-hug",
"popular-ligers-perform", "popular-ligers-perform",
"popular-mangos-rest", "popular-mangos-rest",
@ -449,6 +455,7 @@
"serious-poems-brake", "serious-poems-brake",
"serious-socks-cover", "serious-socks-cover",
"serious-zebras-scream", "serious-zebras-scream",
"seven-bees-tell",
"seven-deers-jam", "seven-deers-jam",
"seven-garlics-serve", "seven-garlics-serve",
"seven-hornets-smile", "seven-hornets-smile",
@ -480,6 +487,7 @@
"silver-sheep-knock", "silver-sheep-knock",
"six-bears-trade", "six-bears-trade",
"six-boats-shave", "six-boats-shave",
"six-gorillas-obey",
"sixty-items-crash", "sixty-items-crash",
"sixty-numbers-hope", "sixty-numbers-hope",
"sixty-pandas-rush", "sixty-pandas-rush",

@ -1,5 +1,25 @@
# svelte # svelte
## 5.0.0-next.167
### Patch Changes
- fix: make more types from `svelte/compiler` public ([#12189](https://github.com/sveltejs/svelte/pull/12189))
- breaking: prevent usage of arguments keyword in certain places ([#12191](https://github.com/sveltejs/svelte/pull/12191))
- fix(types): export CompileResult and Warning ([#12212](https://github.com/sveltejs/svelte/pull/12212))
- fix: ensure element dir properties persist with text changes ([#12204](https://github.com/sveltejs/svelte/pull/12204))
- fix: disallow accessing internal Svelte props ([#12207](https://github.com/sveltejs/svelte/pull/12207))
- fix: make media bindings more robust ([#12206](https://github.com/sveltejs/svelte/pull/12206))
- fix: allow slot attribute inside snippets ([#12188](https://github.com/sveltejs/svelte/pull/12188))
- feat: allow `let props = $props()` and optimize prop read access ([#12201](https://github.com/sveltejs/svelte/pull/12201))
## 5.0.0-next.166 ## 5.0.0-next.166
### 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.166", "version": "5.0.0-next.167",
"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.166'; export const VERSION = '5.0.0-next.167';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save