Version Packages (next) (#10716)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10736/head svelte@5.0.0-next.73
github-actions[bot] 2 years ago committed by GitHub
parent 7c00f1dacb
commit f3bfb938ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,6 +20,7 @@
"big-eggs-flash",
"big-eyes-carry",
"big-geese-act",
"blue-ants-raise",
"blue-rules-juggle",
"blue-timers-film",
"brave-points-sleep",
@ -59,12 +60,14 @@
"dry-clocks-grow",
"dry-eggs-play",
"dry-eggs-retire",
"dull-coins-vanish",
"dull-mangos-wave",
"dull-roses-relate",
"early-ads-tie",
"eight-steaks-shout",
"eighty-bikes-camp",
"eighty-days-cheat",
"eleven-cycles-applaud",
"empty-bags-heal",
"empty-bulldogs-exercise",
"empty-crabs-think",
@ -135,6 +138,7 @@
"kind-dots-sort",
"kind-eagles-join",
"kind-rings-flash",
"kind-spoons-return",
"large-clouds-carry",
"large-turkeys-deny",
"late-crabs-lay",
@ -188,6 +192,7 @@
"olive-socks-kick",
"orange-crews-rescue",
"orange-dingos-poke",
"pink-bikes-agree",
"pink-mayflies-tie",
"polite-dolphins-care",
"polite-pumpkins-guess",
@ -237,6 +242,7 @@
"shiny-baboons-play",
"shiny-shrimps-march",
"short-buses-camp",
"short-countries-rush",
"silent-apes-report",
"silly-laws-happen",
"silver-points-approve",
@ -249,6 +255,7 @@
"slow-kids-sparkle",
"slow-wombats-reply",
"small-papayas-laugh",
"small-sheep-type",
"smart-parents-swim",
"smart-zebras-pay",
"soft-clocks-remember",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.73
### Patch Changes
- fix: improve bind:this support around proxyied state ([#10732](https://github.com/sveltejs/svelte/pull/10732))
- fix: bump specificity on all members of a selector list ([#10730](https://github.com/sveltejs/svelte/pull/10730))
- breaking: preserve slots inside templates with a shadowrootmode attribute ([#10721](https://github.com/sveltejs/svelte/pull/10721))
- chore: custom elements validation ([#10720](https://github.com/sveltejs/svelte/pull/10720))
- fix: ensure performance.now() and requestAnimationFrame() are polyfilled in ssr ([#10715](https://github.com/sveltejs/svelte/pull/10715))
- fix: eagerly unsubscribe when store is changed ([#10727](https://github.com/sveltejs/svelte/pull/10727))
- fix: error when exporting reassigned state from module context ([#10728](https://github.com/sveltejs/svelte/pull/10728))
## 5.0.0-next.72
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.72",
"version": "5.0.0-next.73",
"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.72';
export const VERSION = '5.0.0-next.73';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save