Skip to content
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

Version Packages (next) #11236

Merged
merged 1 commit into from
Apr 19, 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
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"blue-ants-raise",
"blue-rules-juggle",
"blue-timers-film",
"brave-carrots-draw",
"brave-gorillas-end",
"brave-points-sleep",
"brave-shrimps-kiss",
Expand Down Expand Up @@ -124,6 +125,7 @@
"fresh-weeks-trade",
"friendly-candles-relate",
"friendly-lies-camp",
"funny-ties-jump",
"funny-wombats-argue",
"fuzzy-bags-camp",
"fuzzy-donuts-provide",
Expand Down Expand Up @@ -204,6 +206,7 @@
"loud-cheetahs-flow",
"loud-mugs-smile",
"loud-ravens-drop",
"loud-socks-look",
"lovely-carpets-lick",
"lovely-houses-own",
"lovely-items-turn",
Expand Down Expand Up @@ -327,6 +330,8 @@
"silly-ways-wash",
"silver-points-approve",
"sixty-items-crash",
"sixty-numbers-hope",
"sixty-pandas-rush",
"slimy-clouds-talk",
"slimy-laws-explode",
"slimy-walls-draw",
Expand All @@ -343,6 +348,7 @@
"smart-parents-swim",
"smart-turkeys-tell",
"smart-zebras-pay",
"smooth-kids-protect",
"smooth-rings-rush",
"soft-clocks-remember",
"soft-geese-learn",
Expand All @@ -367,6 +373,7 @@
"strong-gifts-smoke",
"strong-lemons-provide",
"strong-pans-doubt",
"stupid-parents-crash",
"sweet-mangos-beg",
"sweet-pens-sniff",
"swift-donkeys-perform",
Expand All @@ -392,6 +399,7 @@
"ten-singers-cough",
"ten-ties-repair",
"ten-worms-reflect",
"tender-rocks-walk",
"thick-cycles-rule",
"thick-pans-tell",
"thick-shirts-deliver",
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.109

### Patch Changes

- fix: more robust moving of each item nodes ([#11254](https://github.com/sveltejs/svelte/pull/11254))

- fix: ensure that CSS is generated for the final frame of a transition ([#11251](https://github.com/sveltejs/svelte/pull/11251))

- fix: more accurate error message when creating orphan effects ([#11227](https://github.com/sveltejs/svelte/pull/11227))

- fix: support `$state.snapshot` as part of variable declarations ([#11235](https://github.com/sveltejs/svelte/pull/11235))

- fix: optimize object property mutations in compilation ([#11243](https://github.com/sveltejs/svelte/pull/11243))

- breaking: don't allow children in svelte:options ([#11250](https://github.com/sveltejs/svelte/pull/11250))

- fix: possible name clash in hoisted functions ([#11237](https://github.com/sveltejs/svelte/pull/11237))

- fix: preserve getters/setters in HMR mode ([#11231](https://github.com/sveltejs/svelte/pull/11231))

## 5.0.0-next.108

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