Version Packages (next) (#11663)

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

@ -227,6 +227,7 @@
"kind-dots-sort",
"kind-eagles-join",
"kind-rings-flash",
"kind-snakes-drive",
"kind-spoons-return",
"large-clouds-carry",
"large-turkeys-deny",
@ -318,6 +319,7 @@
"pink-bikes-agree",
"pink-goats-promise",
"pink-mayflies-tie",
"plenty-elephants-fry",
"plenty-starfishes-dress",
"plenty-zoos-fix",
"polite-dolphins-care",
@ -338,7 +340,9 @@
"purple-dragons-peel",
"quiet-apricots-dream",
"quiet-berries-end",
"quiet-berries-explode",
"quiet-camels-mate",
"quiet-cobras-smile",
"quiet-crabs-nail",
"quiet-timers-speak",
"rare-mirrors-act",
@ -503,6 +507,7 @@
"tiny-meals-deliver",
"tiny-moose-kiss",
"tough-radios-punch",
"twelve-beans-drive",
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.137
### Patch Changes
- fix: migrate derivations without semicolons ([#11704](https://github.com/sveltejs/svelte/pull/11704))
- fix: check for invalid bindings on window and document ([#11676](https://github.com/sveltejs/svelte/pull/11676))
- fix: more efficient spread attributes in SSR output ([#11660](https://github.com/sveltejs/svelte/pull/11660))
- fix: inline pointer events now correctly work in Chrome ([#11695](https://github.com/sveltejs/svelte/pull/11695))
- fix: don't require warning codes to be separated by commas in non-runes mode ([#11669](https://github.com/sveltejs/svelte/pull/11669))
## 5.0.0-next.136
### Patch Changes

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

Loading…
Cancel
Save