Version Packages (next) (#12282)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12308/head svelte@5.0.0-next.174
github-actions[bot] 4 months ago committed by GitHub
parent 445f890cd5
commit 831552f4b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -110,6 +110,7 @@
"dry-eggs-play",
"dry-eggs-retire",
"dry-fans-march",
"dry-ghosts-prove",
"dry-parrots-bathe",
"dry-pillows-exist",
"dull-coins-vanish",
@ -144,6 +145,7 @@
"empty-horses-tell",
"empty-tools-share",
"fair-bags-smoke",
"fair-beers-help",
"fair-crabs-check",
"fair-pianos-talk",
"fair-spies-repeat",
@ -264,6 +266,7 @@
"itchy-lions-wash",
"itchy-panthers-shave",
"itchy-peaches-compare",
"itchy-pianos-marry",
"itchy-terms-guess",
"khaki-cheetahs-refuse",
"khaki-cooks-develop",
@ -305,10 +308,12 @@
"little-ligers-exist",
"little-pans-jog",
"long-buckets-lay",
"long-carrots-sneeze",
"long-crews-return",
"long-humans-repair",
"long-lobsters-mate",
"loud-cheetahs-flow",
"loud-insects-arrive",
"loud-mugs-smile",
"loud-numbers-flow",
"loud-penguins-unite",
@ -499,6 +504,7 @@
"sixty-pandas-rush",
"sixty-plants-cover",
"sleepy-cats-eat",
"sleepy-dogs-sit",
"slimy-clouds-talk",
"slimy-hairs-impress",
"slimy-laws-explode",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.174
### Patch Changes
- fix: bail out of event hoisting when referencing store subscriptions ([#12301](https://github.com/sveltejs/svelte/pull/12301))
- chore: make store initialization logic simpler ([#12281](https://github.com/sveltejs/svelte/pull/12281))
- fix: make props optional during SSR ([#12284](https://github.com/sveltejs/svelte/pull/12284))
- fix: ensure each blocks properly handle $state.frozen objects in prod ([#12305](https://github.com/sveltejs/svelte/pull/12305))
- fix: ensure rest props access on hoisted event handlers works ([#12298](https://github.com/sveltejs/svelte/pull/12298))
- fix: lazily create a derived for each read method on `SvelteDate.prototype` ([#12110](https://github.com/sveltejs/svelte/pull/12110))
## 5.0.0-next.173
### Patch Changes

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

Loading…
Cancel
Save