Version Packages (next)

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

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

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

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

Loading…
Cancel
Save