Version Packages (next) (#11474)

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

@ -142,6 +142,7 @@
"gentle-dolls-juggle", "gentle-dolls-juggle",
"gentle-sheep-hug", "gentle-sheep-hug",
"gentle-spies-happen", "gentle-spies-happen",
"gentle-toys-chew",
"giant-bananas-turn", "giant-bananas-turn",
"giant-moons-own", "giant-moons-own",
"giant-planets-shake", "giant-planets-shake",
@ -157,6 +158,7 @@
"great-fans-unite", "great-fans-unite",
"great-icons-retire", "great-icons-retire",
"green-eggs-approve", "green-eggs-approve",
"green-fishes-lie",
"green-hounds-play", "green-hounds-play",
"green-tigers-judge", "green-tigers-judge",
"grumpy-jars-sparkle", "grumpy-jars-sparkle",
@ -222,6 +224,7 @@
"long-lobsters-mate", "long-lobsters-mate",
"loud-cheetahs-flow", "loud-cheetahs-flow",
"loud-mugs-smile", "loud-mugs-smile",
"loud-numbers-flow",
"loud-ravens-drop", "loud-ravens-drop",
"loud-socks-look", "loud-socks-look",
"lovely-carpets-lick", "lovely-carpets-lick",
@ -271,6 +274,7 @@
"old-jokes-deliver", "old-jokes-deliver",
"old-mails-sneeze", "old-mails-sneeze",
"old-oranges-compete", "old-oranges-compete",
"olive-apples-lick",
"olive-kangaroos-brake", "olive-kangaroos-brake",
"olive-mice-fix", "olive-mice-fix",
"olive-moons-act", "olive-moons-act",
@ -350,6 +354,7 @@
"sharp-tomatoes-learn", "sharp-tomatoes-learn",
"shiny-baboons-play", "shiny-baboons-play",
"shiny-mayflies-clean", "shiny-mayflies-clean",
"shiny-melons-love",
"shiny-rats-heal", "shiny-rats-heal",
"shiny-shrimps-march", "shiny-shrimps-march",
"short-buses-camp", "short-buses-camp",
@ -463,6 +468,7 @@
"twelve-onions-juggle", "twelve-onions-juggle",
"twelve-worms-jog", "twelve-worms-jog",
"two-candles-move", "two-candles-move",
"two-dogs-accept",
"two-dragons-yell", "two-dragons-yell",
"two-falcons-buy", "two-falcons-buy",
"unlucky-boxes-obey", "unlucky-boxes-obey",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.124
### Patch Changes
- fix: allow to access private fields after `this` reassignment ([#11487](https://github.com/sveltejs/svelte/pull/11487))
- fix: only initiate scroll if scroll binding has existing value ([#11469](https://github.com/sveltejs/svelte/pull/11469))
- fix: restore value after attribute removal during hydration ([#11465](https://github.com/sveltejs/svelte/pull/11465))
- fix: check if svelte component exists on custom element destroy ([#11488](https://github.com/sveltejs/svelte/pull/11488))
- fix: ensure derived is detected as dirty correctly ([#11496](https://github.com/sveltejs/svelte/pull/11496))
- fix: prevent false positive ownership warning ([#11490](https://github.com/sveltejs/svelte/pull/11490))
## 5.0.0-next.123 ## 5.0.0-next.123
### 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.123", "version": "5.0.0-next.124",
"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.123'; export const VERSION = '5.0.0-next.124';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save