Skip to content

Commit

Permalink
Version Packages (next) (#10539)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 20, 2024
1 parent bcb1b8e commit ad2b8b9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"fluffy-dolls-share",
"fluffy-humans-worry",
"forty-comics-invent",
"forty-dogs-divide",
"forty-dolls-wave",
"forty-peaches-unite",
"forty-suns-smile",
Expand All @@ -98,8 +99,10 @@
"great-icons-retire",
"green-eggs-approve",
"green-hounds-play",
"green-tigers-judge",
"happy-suits-film",
"healthy-planes-vanish",
"heavy-comics-move",
"heavy-ears-rule",
"hip-balloons-begin",
"honest-buses-add",
Expand Down Expand Up @@ -127,6 +130,7 @@
"lazy-spiders-think",
"lemon-geese-call",
"lemon-geese-drum",
"light-days-clean",
"light-humans-hang",
"light-pens-watch",
"long-buckets-lay",
Expand All @@ -141,10 +145,12 @@
"lucky-toes-begin",
"many-trees-fix",
"mighty-files-hammer",
"moody-carrots-lay",
"moody-frogs-exist",
"moody-owls-cry",
"nasty-lions-double",
"nasty-yaks-peel",
"neat-boats-shake",
"neat-dingos-clap",
"nervous-spoons-relax",
"new-boats-wait",
Expand Down Expand Up @@ -198,6 +204,7 @@
"seven-hornets-smile",
"seven-jobs-sniff",
"seven-ravens-check",
"shaggy-cameras-live",
"sharp-gorillas-impress",
"sharp-kids-happen",
"sharp-tomatoes-learn",
Expand Down Expand Up @@ -288,6 +295,8 @@
"wise-jobs-admire",
"wise-radios-exercise",
"witty-camels-warn",
"witty-steaks-dream"
"witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash"
]
}
22 changes: 22 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# svelte

## 5.0.0-next.61

### Patch Changes

- fix: improve each block item equality for immutable mode ([#10537](https://github.com/sveltejs/svelte/pull/10537))

- fix: improve handling of unowned derived signals ([#10565](https://github.com/sveltejs/svelte/pull/10565))

- fix: better handling of empty text node hydration ([#10545](https://github.com/sveltejs/svelte/pull/10545))

- fix: ensure update methods of actions and reactive statements work with fine-grained `$state` ([#10543](https://github.com/sveltejs/svelte/pull/10543))

- fix: don't execute scripts inside `@html` when instantiated on the client ([#10556](https://github.com/sveltejs/svelte/pull/10556))

- fix: only escape characters in SSR template ([#10555](https://github.com/sveltejs/svelte/pull/10555))

- fix: wire up `events` in `mount` correctly and fix its types ([#10553](https://github.com/sveltejs/svelte/pull/10553))

- fix: better handling of derived signals that have no dependencies ([#10558](https://github.com/sveltejs/svelte/pull/10558))

- fix: improve state store mutation compiler output ([#10561](https://github.com/sveltejs/svelte/pull/10561))

## 5.0.0-next.60

### 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.60",
"version": "5.0.0-next.61",
"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.60';
export const VERSION = '5.0.0-next.61';
export const PUBLIC_VERSION = '5';

1 comment on commit ad2b8b9

@mstachowiak
Copy link

@mstachowiak mstachowiak commented on ad2b8b9 Feb 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fwiw, we have an application running Svelte 5 that runs great on 5.0.0-next.60 but starts slowing down significantly on 5.0.0-next.61. We haven't pinpointed the cause yet, but something in this release is severely impacting performance. We'll dig and see if we can figure out what's causing it. It also caused some nested object reactivity to stop working.

Please sign in to comment.