Version Packages (next) (#11201)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11203/head svelte@5.0.0-next.107
github-actions[bot] 3 months ago committed by GitHub
parent 3d49731b1b
commit 4ef64541dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -76,6 +76,7 @@
"dry-clocks-grow",
"dry-eggs-play",
"dry-eggs-retire",
"dry-fans-march",
"dry-pillows-exist",
"dull-coins-vanish",
"dull-mangos-wave",
@ -162,6 +163,7 @@
"hungry-trees-travel",
"itchy-beans-melt",
"itchy-bulldogs-tan",
"itchy-eels-marry",
"itchy-kings-deliver",
"itchy-lions-wash",
"itchy-terms-guess",
@ -279,6 +281,7 @@
"rich-cobras-exist",
"rich-garlics-laugh",
"rich-olives-yell",
"rich-plums-thank",
"rich-sheep-burn",
"rich-tables-sing",
"rich-waves-mix",
@ -308,6 +311,7 @@
"sharp-kids-happen",
"sharp-tomatoes-learn",
"shiny-baboons-play",
"shiny-rats-heal",
"shiny-shrimps-march",
"short-buses-camp",
"short-countries-rush",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.107
### Patch Changes
- fix: refine css `:global()` selector checks in a compound selector ([#11142](https://github.com/sveltejs/svelte/pull/11142))
- fix: remove memory leak from bind:this ([#11194](https://github.com/sveltejs/svelte/pull/11194))
- fix: remove memory leak from retaining old DOM elements ([#11197](https://github.com/sveltejs/svelte/pull/11197))
- feat: add warning when using `$bindable` rune without calling it ([#11181](https://github.com/sveltejs/svelte/pull/11181))
## 5.0.0-next.106
### Patch Changes

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

Loading…
Cancel
Save