Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"angry-weeks-design",
"beige-clocks-notice",
"beige-cobras-smoke",
"beige-donkeys-exercise",
"beige-flies-wash",
"beige-gifts-appear",
"beige-lamps-ring",
Expand Down Expand Up @@ -184,6 +185,7 @@
"eleven-cycles-applaud",
"eleven-donuts-sit",
"eleven-hounds-pump",
"eleven-humans-kneel",
"eleven-icons-sniff",
"eleven-peaches-tap",
"eleven-teachers-drive",
Expand Down Expand Up @@ -448,6 +450,7 @@
"loud-penguins-unite",
"loud-ravens-drop",
"loud-socks-look",
"loud-walls-wave",
"lovely-bugs-sneeze",
"lovely-carpets-lick",
"lovely-houses-own",
Expand Down Expand Up @@ -526,6 +529,7 @@
"ninety-days-visit",
"ninety-dingos-walk",
"ninety-dots-train",
"ninety-months-laugh",
"ninety-rockets-battle",
"odd-buckets-lie",
"odd-needles-joke",
Expand Down Expand Up @@ -571,6 +575,7 @@
"pink-countries-repair",
"pink-goats-promise",
"pink-mayflies-tie",
"pink-shirts-film",
"plenty-clouds-reply",
"plenty-elephants-fry",
"plenty-items-build",
Expand Down Expand Up @@ -731,6 +736,7 @@
"slimy-news-help",
"slimy-onions-approve",
"slimy-walls-draw",
"slow-badgers-invite",
"slow-beds-shave",
"slow-chefs-dream",
"slow-gorillas-yawn",
Expand Down Expand Up @@ -764,6 +770,7 @@
"soft-clocks-remember",
"soft-geese-learn",
"soft-months-grab",
"soft-stingrays-attend",
"soft-tigers-wink",
"sour-bags-fail",
"sour-forks-stare",
Expand Down Expand Up @@ -899,6 +906,7 @@
"twelve-bears-worry",
"twelve-cows-learn",
"twelve-dragons-join",
"twelve-mayflies-decide",
"twelve-onions-juggle",
"twelve-scissors-kneel",
"twelve-shrimps-run",
Expand Down
20 changes: 20 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# 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

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.264",
"version": "5.0.0-next.265",
"type": "module",
"types": "./types/index.d.ts",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.264';
export const VERSION = '5.0.0-next.265';
export const PUBLIC_VERSION = '5';