Version Packages (next) (#10005)

* Version Packages (next)

* Apply suggestions from code review

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rich Harris <richard.a.harris@gmail.com>
pull/10030/head svelte@5.0.0-next.27
github-actions[bot] 7 months ago committed by GitHub
parent 69f2840e28
commit 6307a3322c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,6 +13,7 @@
"beige-flies-wash",
"beige-rabbits-shave",
"brave-walls-destroy",
"bright-peas-juggle",
"brown-spoons-boil",
"chatty-cups-drop",
"chatty-taxis-juggle",
@ -26,6 +27,7 @@
"curly-lizards-dream",
"dirty-garlics-design",
"dirty-tips-add",
"dry-clocks-grow",
"dull-mangos-wave",
"early-ads-tie",
"eight-steaks-shout",
@ -56,6 +58,7 @@
"hungry-dots-fry",
"hungry-tips-unite",
"itchy-beans-melt",
"itchy-kings-deliver",
"itchy-lions-wash",
"khaki-mails-draw",
"khaki-moose-arrive",
@ -69,6 +72,7 @@
"lazy-spiders-think",
"lemon-geese-drum",
"light-pens-watch",
"long-buckets-lay",
"long-crews-return",
"lovely-carpets-lick",
"lovely-items-turn",
@ -111,6 +115,7 @@
"slow-chefs-dream",
"small-papayas-laugh",
"smart-parents-swim",
"smart-zebras-pay",
"soft-clocks-remember",
"soft-geese-learn",
"sour-forks-stare",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.27
### Patch Changes
- fix: evaluate transition parameters when the transition runs ([#9836](https://github.com/sveltejs/svelte/pull/9836))
- feat: add `$state.frozen` rune ([#9851](https://github.com/sveltejs/svelte/pull/9851))
- fix: correctly transform prop fallback values that use other props ([#9985](https://github.com/sveltejs/svelte/pull/9985))
- fix: escape template literal characters in text sequences ([#9973](https://github.com/sveltejs/svelte/pull/9973))
- fix: inject comment in place of `<noscript>` in client output ([#9953](https://github.com/sveltejs/svelte/pull/9953))
## 5.0.0-next.26
### Patch Changes

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

Loading…
Cancel
Save