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

@ -1,5 +1,21 @@
# svelte # 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 ## 5.0.0-next.173
### 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.173", "version": "5.0.0-next.174",
"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.173'; export const VERSION = '5.0.0-next.174';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save