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

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

Loading…
Cancel
Save