Version Packages (next) (#13545)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13606/head svelte@5.0.0-next.265
github-actions[bot] 11 months ago committed by GitHub
parent a2ece29b6e
commit a6c97b378f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -22,6 +22,7 @@
"angry-weeks-design", "angry-weeks-design",
"beige-clocks-notice", "beige-clocks-notice",
"beige-cobras-smoke", "beige-cobras-smoke",
"beige-donkeys-exercise",
"beige-flies-wash", "beige-flies-wash",
"beige-gifts-appear", "beige-gifts-appear",
"beige-lamps-ring", "beige-lamps-ring",
@ -184,6 +185,7 @@
"eleven-cycles-applaud", "eleven-cycles-applaud",
"eleven-donuts-sit", "eleven-donuts-sit",
"eleven-hounds-pump", "eleven-hounds-pump",
"eleven-humans-kneel",
"eleven-icons-sniff", "eleven-icons-sniff",
"eleven-peaches-tap", "eleven-peaches-tap",
"eleven-teachers-drive", "eleven-teachers-drive",
@ -448,6 +450,7 @@
"loud-penguins-unite", "loud-penguins-unite",
"loud-ravens-drop", "loud-ravens-drop",
"loud-socks-look", "loud-socks-look",
"loud-walls-wave",
"lovely-bugs-sneeze", "lovely-bugs-sneeze",
"lovely-carpets-lick", "lovely-carpets-lick",
"lovely-houses-own", "lovely-houses-own",
@ -526,6 +529,7 @@
"ninety-days-visit", "ninety-days-visit",
"ninety-dingos-walk", "ninety-dingos-walk",
"ninety-dots-train", "ninety-dots-train",
"ninety-months-laugh",
"ninety-rockets-battle", "ninety-rockets-battle",
"odd-buckets-lie", "odd-buckets-lie",
"odd-needles-joke", "odd-needles-joke",
@ -571,6 +575,7 @@
"pink-countries-repair", "pink-countries-repair",
"pink-goats-promise", "pink-goats-promise",
"pink-mayflies-tie", "pink-mayflies-tie",
"pink-shirts-film",
"plenty-clouds-reply", "plenty-clouds-reply",
"plenty-elephants-fry", "plenty-elephants-fry",
"plenty-items-build", "plenty-items-build",
@ -731,6 +736,7 @@
"slimy-news-help", "slimy-news-help",
"slimy-onions-approve", "slimy-onions-approve",
"slimy-walls-draw", "slimy-walls-draw",
"slow-badgers-invite",
"slow-beds-shave", "slow-beds-shave",
"slow-chefs-dream", "slow-chefs-dream",
"slow-gorillas-yawn", "slow-gorillas-yawn",
@ -764,6 +770,7 @@
"soft-clocks-remember", "soft-clocks-remember",
"soft-geese-learn", "soft-geese-learn",
"soft-months-grab", "soft-months-grab",
"soft-stingrays-attend",
"soft-tigers-wink", "soft-tigers-wink",
"sour-bags-fail", "sour-bags-fail",
"sour-forks-stare", "sour-forks-stare",
@ -899,6 +906,7 @@
"twelve-bears-worry", "twelve-bears-worry",
"twelve-cows-learn", "twelve-cows-learn",
"twelve-dragons-join", "twelve-dragons-join",
"twelve-mayflies-decide",
"twelve-onions-juggle", "twelve-onions-juggle",
"twelve-scissors-kneel", "twelve-scissors-kneel",
"twelve-shrimps-run", "twelve-shrimps-run",

@ -1,5 +1,25 @@
# svelte # svelte
## 5.0.0-next.265
### Patch Changes
- fix: ensure source and filename are known to compileModule's source map ([#13546](https://github.com/sveltejs/svelte/pull/13546))
- fix: cleanup non-branch effects created inside block effects ([#13600](https://github.com/sveltejs/svelte/pull/13600))
- fix: do no rerun the each block when array change from empty to empty ([#13553](https://github.com/sveltejs/svelte/pull/13553))
- fix: ensure effects destroy owned deriveds upon teardown ([#13563](https://github.com/sveltejs/svelte/pull/13563))
- fix: ensure proxied arrays correctly update their length upon deletions ([#13549](https://github.com/sveltejs/svelte/pull/13549))
- fix: avoid assigning input.value if the value is the same to fix `minlength` ([#13574](https://github.com/sveltejs/svelte/pull/13574))
- fix: use `analysis.name` when migrating `<svelte:self>` ([#13544](https://github.com/sveltejs/svelte/pull/13544))
- fix: strip BOM character from input ([#13548](https://github.com/sveltejs/svelte/pull/13548))
## 5.0.0-next.264 ## 5.0.0-next.264
### 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.264", "version": "5.0.0-next.265",
"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.264'; export const VERSION = '5.0.0-next.265';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save