Version Packages (next) (#11617)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11640/head svelte@5.0.0-next.134
github-actions[bot] 2 months ago committed by GitHub
parent 4365562228
commit ec25208ba4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -38,6 +38,7 @@
"brave-walls-flow",
"breezy-carrots-flash",
"breezy-rules-beg",
"bright-falcons-float",
"bright-peas-juggle",
"bright-snakes-sing",
"brown-geckos-fry",
@ -61,6 +62,7 @@
"clever-rockets-burn",
"clever-sloths-push",
"cold-birds-own",
"cold-cheetahs-judge",
"cold-masks-learn",
"cool-actors-tan",
"cool-ants-leave",
@ -97,6 +99,8 @@
"dull-roses-relate",
"early-ads-tie",
"early-months-whisper",
"eight-carrots-hunt",
"eight-cougars-watch",
"eight-hornets-punch",
"eight-pianos-raise",
"eight-steaks-shout",
@ -209,6 +213,7 @@
"khaki-cooks-develop",
"khaki-ligers-sing",
"khaki-mails-draw",
"khaki-monkeys-cry",
"khaki-moose-arrive",
"khaki-tomatoes-rule",
"kind-baboons-approve",
@ -234,6 +239,7 @@
"light-humans-hang",
"light-penguins-invent",
"light-pens-watch",
"little-ligers-exist",
"little-pans-jog",
"long-buckets-lay",
"long-crews-return",
@ -501,6 +507,7 @@
"unlucky-trees-lick",
"violet-mugs-behave",
"violet-pigs-jam",
"warm-cherries-shake",
"weak-drinks-speak",
"weak-frogs-bow",
"weak-terms-destroy",
@ -527,6 +534,7 @@
"witty-years-crash",
"yellow-pugs-raise",
"yellow-taxis-double",
"yellow-trees-juggle",
"young-ads-roll",
"young-masks-refuse"
]

@ -1,5 +1,25 @@
# svelte
## 5.0.0-next.134
### Patch Changes
- chore: improve SSR invalid element error message ([#11585](https://github.com/sveltejs/svelte/pull/11585))
- fix: deduplicate children prop and default slot ([#10800](https://github.com/sveltejs/svelte/pull/10800))
- feat: error on imports to `svelte/internal/*` ([#11632](https://github.com/sveltejs/svelte/pull/11632))
- fix: better handle img loading attribute ([#11635](https://github.com/sveltejs/svelte/pull/11635))
- feat: add $state.is rune ([#11613](https://github.com/sveltejs/svelte/pull/11613))
- feat: provide $state warnings for accidental equality ([#11610](https://github.com/sveltejs/svelte/pull/11610))
- feat: error when snippet shadow a prop ([#11631](https://github.com/sveltejs/svelte/pull/11631))
- chore: use `new CustomEvent` instead of deprecated `initCustomEvent` ([#11629](https://github.com/sveltejs/svelte/pull/11629))
## 5.0.0-next.133
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.133",
"version": "5.0.0-next.134",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.133';
export const VERSION = '5.0.0-next.134';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save