Version Packages (next) (#13394)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13428/head svelte@5.0.0-next.260
github-actions[bot] 2 months ago committed by GitHub
parent 2531658046
commit 35ebbe61ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,6 +13,7 @@
"afraid-geckos-dance", "afraid-geckos-dance",
"afraid-kids-hide", "afraid-kids-hide",
"afraid-moose-matter", "afraid-moose-matter",
"afraid-trainers-occur",
"afraid-worms-drum", "afraid-worms-drum",
"angry-birds-fly", "angry-birds-fly",
"angry-books-jam", "angry-books-jam",
@ -158,6 +159,7 @@
"dull-worms-relax", "dull-worms-relax",
"early-ads-tie", "early-ads-tie",
"early-months-whisper", "early-months-whisper",
"early-needles-bake",
"early-taxis-allow", "early-taxis-allow",
"eight-carrots-hunt", "eight-carrots-hunt",
"eight-comics-tell", "eight-comics-tell",
@ -166,6 +168,7 @@
"eight-jeans-compare", "eight-jeans-compare",
"eight-pianos-raise", "eight-pianos-raise",
"eight-steaks-shout", "eight-steaks-shout",
"eight-waves-mate",
"eighty-bikes-camp", "eighty-bikes-camp",
"eighty-bugs-fetch", "eighty-bugs-fetch",
"eighty-days-cheat", "eighty-days-cheat",
@ -404,6 +407,7 @@
"lazy-knives-happen", "lazy-knives-happen",
"lazy-masks-sit", "lazy-masks-sit",
"lazy-months-knock", "lazy-months-knock",
"lazy-queens-agree",
"lazy-spiders-think", "lazy-spiders-think",
"lemon-geese-call", "lemon-geese-call",
"lemon-geese-drum", "lemon-geese-drum",
@ -489,6 +493,7 @@
"neat-jokes-beam", "neat-jokes-beam",
"nervous-adults-sell", "nervous-adults-sell",
"nervous-berries-boil", "nervous-berries-boil",
"nervous-chefs-exist",
"nervous-dolphins-allow", "nervous-dolphins-allow",
"nervous-ducks-repeat", "nervous-ducks-repeat",
"nervous-spoons-relax", "nervous-spoons-relax",
@ -500,6 +505,7 @@
"new-rabbits-flow", "new-rabbits-flow",
"nice-avocados-move", "nice-avocados-move",
"nice-bottles-greet", "nice-bottles-greet",
"nice-brooms-battle",
"nice-jobs-breathe", "nice-jobs-breathe",
"nine-ants-invite", "nine-ants-invite",
"nine-cooks-join", "nine-cooks-join",
@ -868,6 +874,7 @@
"tricky-ears-shout", "tricky-ears-shout",
"tricky-laws-bathe", "tricky-laws-bathe",
"twelve-beans-drive", "twelve-beans-drive",
"twelve-bears-worry",
"twelve-cows-learn", "twelve-cows-learn",
"twelve-dragons-join", "twelve-dragons-join",
"twelve-onions-juggle", "twelve-onions-juggle",

@ -1,5 +1,23 @@
# svelte # svelte
## 5.0.0-next.260
### Patch Changes
- fix: ensure use directives execute in the correct sequence ([#13384](https://github.com/sveltejs/svelte/pull/13384))
- fix: blank CSS contents while migrating ([#13403](https://github.com/sveltejs/svelte/pull/13403))
- fix: avoid migrating slots in custom elements ([#13406](https://github.com/sveltejs/svelte/pull/13406))
- fix: don't consider children of rules when checking whether they are used or not ([#13410](https://github.com/sveltejs/svelte/pull/13410))
- fix: treat `<img>` alt attribute as content for a11y labelling purposes ([#13411](https://github.com/sveltejs/svelte/pull/13411))
- fix: make ownership widening more robust to userland proxies ([#13377](https://github.com/sveltejs/svelte/pull/13377))
- fix: validation should not fail on anonymous declarations ([#13393](https://github.com/sveltejs/svelte/pull/13393))
## 5.0.0-next.259 ## 5.0.0-next.259
### 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.259", "version": "5.0.0-next.260",
"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.259'; export const VERSION = '5.0.0-next.260';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save