Version Packages (next) (#12456)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12459/head svelte@5.0.0-next.186
github-actions[bot] 2 months ago committed by GitHub
parent d9569d052e
commit 1ce4cd5480
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -58,6 +58,7 @@
"calm-ravens-sneeze",
"chatty-beans-divide",
"chatty-cups-drop",
"chatty-ghosts-unite",
"chatty-sloths-allow",
"chatty-taxis-juggle",
"chilled-pumas-invite",
@ -321,6 +322,7 @@
"light-pens-watch",
"little-ligers-exist",
"little-pans-jog",
"little-seals-reflect",
"long-buckets-lay",
"long-carrots-sneeze",
"long-crews-return",
@ -718,6 +720,7 @@
"witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash",
"yellow-bananas-rhyme",
"yellow-pugs-raise",
"yellow-rockets-sit",
"yellow-taxis-double",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.186
### Patch Changes
- feat: skip pending block for already-resolved promises ([#12274](https://github.com/sveltejs/svelte/pull/12274))
- feat: add ability to ignore warnings through `warningFilter` compiler option ([#12296](https://github.com/sveltejs/svelte/pull/12296))
- fix: run animations in microtask so that deferred transitions can measure nodes correctly ([#12453](https://github.com/sveltejs/svelte/pull/12453))
## 5.0.0-next.185
### Patch Changes

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

Loading…
Cancel
Save