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) #11335

Merged
merged 1 commit into from
Apr 29, 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
10 changes: 10 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"breezy-rules-beg",
"bright-peas-juggle",
"bright-snakes-sing",
"brown-geckos-fry",
"brown-houses-obey",
"brown-months-fry",
"brown-spoons-boil",
Expand All @@ -60,6 +61,7 @@
"cool-ants-leave",
"cool-comics-marry",
"cool-peas-lick",
"cool-poems-watch",
"cool-rabbits-tickle",
"cool-roses-trade",
"cuddly-pianos-drop",
Expand All @@ -71,6 +73,7 @@
"curvy-ties-shout",
"cyan-flowers-destroy",
"cyan-spies-grin",
"cyan-squids-drive",
"dirty-bats-punch",
"dirty-donuts-yell",
"dirty-garlics-design",
Expand Down Expand Up @@ -103,6 +106,7 @@
"famous-falcons-melt",
"famous-knives-sneeze",
"famous-pants-pay",
"fast-penguins-matter",
"fast-weeks-clean",
"few-clouds-shop",
"few-mugs-fail",
Expand Down Expand Up @@ -152,6 +156,7 @@
"grumpy-jars-sparkle",
"happy-beds-scream",
"happy-suits-film",
"healthy-ants-film",
"healthy-planes-vanish",
"heavy-comics-move",
"heavy-ducks-leave",
Expand All @@ -161,6 +166,7 @@
"honest-buses-add",
"honest-dragons-turn",
"honest-icons-change",
"honest-nails-share",
"hot-jobs-tap",
"hungry-boxes-relate",
"hungry-dots-fry",
Expand All @@ -172,6 +178,7 @@
"itchy-eels-marry",
"itchy-kings-deliver",
"itchy-lions-wash",
"itchy-panthers-shave",
"itchy-terms-guess",
"khaki-cooks-develop",
"khaki-ligers-sing",
Expand Down Expand Up @@ -235,6 +242,7 @@
"neat-boats-shake",
"neat-dingos-clap",
"neat-files-rescue",
"nervous-berries-boil",
"nervous-spoons-relax",
"nervous-turkeys-end",
"new-boats-wait",
Expand Down Expand Up @@ -262,6 +270,7 @@
"orange-crews-rescue",
"orange-dingos-poke",
"orange-yaks-protect",
"orange-zoos-heal",
"pink-bikes-agree",
"pink-goats-promise",
"pink-mayflies-tie",
Expand Down Expand Up @@ -434,6 +443,7 @@
"tidy-starfishes-allow",
"tiny-kings-whisper",
"tiny-meals-deliver",
"tiny-moose-kiss",
"tough-radios-punch",
"twelve-dragons-join",
"twelve-onions-juggle",
Expand Down
24 changes: 24 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# svelte

## 5.0.0-next.116

### Patch Changes

- fix: correctly interpret empty aria- attribute ([#11325](https://github.com/sveltejs/svelte/pull/11325))

- fix: disallow mixing on:click and onclick syntax ([#11295](https://github.com/sveltejs/svelte/pull/11295))

- fix: make hr, script and template valid select children ([#11344](https://github.com/sveltejs/svelte/pull/11344))

- fix: apply modifiers to bubbled events ([#11369](https://github.com/sveltejs/svelte/pull/11369))

- fix: allow `bind:this` on `<select>` with dynamic `multiple` attribute ([#11378](https://github.com/sveltejs/svelte/pull/11378))

- feat: allow for literal property definition with state on classes ([#11326](https://github.com/sveltejs/svelte/pull/11326))

- fix: disallow mounting a snippet ([#11347](https://github.com/sveltejs/svelte/pull/11347))

- feat: only inject push/init/pop when necessary ([#11319](https://github.com/sveltejs/svelte/pull/11319))

- feat: provide migration helper ([#11334](https://github.com/sveltejs/svelte/pull/11334))

- fix: ensure store from props is hoisted correctly ([#11367](https://github.com/sveltejs/svelte/pull/11367))

## 5.0.0-next.115

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