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

@ -1,5 +1,21 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save