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

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

Loading…
Cancel
Save