Version Packages (next) (#12583)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12612/head
github-actions[bot] 2 months ago committed by GitHub
parent ba5f5f38b1
commit ff27753742
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -272,11 +272,13 @@
"hip-garlics-tap",
"hip-months-breathe",
"hip-pumpkins-boil",
"hip-stingrays-teach",
"honest-buses-add",
"honest-dragons-turn",
"honest-icons-change",
"honest-nails-share",
"honest-pans-kick",
"honest-phones-flash",
"hot-cooks-repair",
"hot-jobs-tap",
"hot-rivers-punch",
@ -444,6 +446,7 @@
"plenty-elephants-fry",
"plenty-items-build",
"plenty-starfishes-dress",
"plenty-turkeys-raise",
"plenty-zoos-fix",
"polite-dolphins-care",
"polite-peas-mate",
@ -467,6 +470,7 @@
"proud-pets-hang",
"proud-queens-sniff",
"purple-dragons-peel",
"quick-pumpkins-study",
"quiet-apricots-dream",
"quiet-berries-end",
"quiet-berries-explode",
@ -567,6 +571,7 @@
"slimy-walls-draw",
"slow-beds-shave",
"slow-chefs-dream",
"slow-gorillas-yawn",
"slow-kids-sparkle",
"slow-ligers-enjoy",
"slow-plums-chew",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.199
### Patch Changes
- fix: add missing hydration mismatch call-site ([#12604](https://github.com/sveltejs/svelte/pull/12604))
- fix: apply dynamic event fixes to OnDirective ([#12582](https://github.com/sveltejs/svelte/pull/12582))
- fix: ensure directives run in sequential order ([#12591](https://github.com/sveltejs/svelte/pull/12591))
- fix: tweak element_invalid_self_closing_tag to exclude namespace ([#12585](https://github.com/sveltejs/svelte/pull/12585))
- breaking: avoid flushing queued updates on mount/hydrate ([#12602](https://github.com/sveltejs/svelte/pull/12602))
## 5.0.0-next.198
### Patch Changes

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

Loading…
Cancel
Save