Skip to content

Version Packages (next) #11018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 2, 2024
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
7 changes: 7 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"big-eggs-flash",
"big-eyes-carry",
"big-geese-act",
"big-moons-occur",
"blue-ants-raise",
"blue-rules-juggle",
"blue-timers-film",
Expand Down Expand Up @@ -55,6 +56,7 @@
"curly-lizards-dream",
"curvy-buses-laugh",
"curvy-cups-cough",
"curvy-flies-exercise",
"curvy-ties-shout",
"cyan-flowers-destroy",
"cyan-spies-grin",
Expand All @@ -65,6 +67,7 @@
"dry-clocks-grow",
"dry-eggs-play",
"dry-eggs-retire",
"dry-pillows-exist",
"dull-coins-vanish",
"dull-mangos-wave",
"dull-pots-add",
Expand Down Expand Up @@ -106,6 +109,7 @@
"friendly-lies-camp",
"funny-wombats-argue",
"fuzzy-bags-camp",
"fuzzy-donuts-provide",
"gentle-dolls-juggle",
"gentle-sheep-hug",
"gentle-spies-happen",
Expand All @@ -122,6 +126,7 @@
"green-eggs-approve",
"green-hounds-play",
"green-tigers-judge",
"grumpy-jars-sparkle",
"happy-beds-scream",
"happy-suits-film",
"healthy-planes-vanish",
Expand Down Expand Up @@ -155,6 +160,7 @@
"large-clouds-carry",
"large-turkeys-deny",
"late-crabs-lay",
"late-peaches-mate",
"lazy-masks-sit",
"lazy-months-knock",
"lazy-spiders-think",
Expand All @@ -178,6 +184,7 @@
"lucky-toes-begin",
"many-rockets-give",
"many-trees-fix",
"metal-clouds-raise",
"metal-lobsters-burn",
"mighty-cooks-scream",
"mighty-files-hammer",
Expand Down
18 changes: 18 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# svelte

## 5.0.0-next.91

### Patch Changes

- fix: improve unowned derived signal heuristics ([#11029](https://github.com/sveltejs/svelte/pull/11029))

- fix: ensure correct context for action update/destroy functions ([#11023](https://github.com/sveltejs/svelte/pull/11023))

- feat: more efficient hydration markers ([#11019](https://github.com/sveltejs/svelte/pull/11019))

- fix: ensure effect cleanup functions are called with null `this` ([#11024](https://github.com/sveltejs/svelte/pull/11024))

- fix: correctly handle closure passed to $derived.by when destructuring ([#11028](https://github.com/sveltejs/svelte/pull/11028))

- Add `name` to HTMLDetailsAttributes ([#11013](https://github.com/sveltejs/svelte/pull/11013))

- breaking: move compiler.cjs to compiler/index.js ([#10988](https://github.com/sveltejs/svelte/pull/10988))

## 5.0.0-next.90

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