Version Packages (next) (#13293)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13303/head svelte@5.0.0-next.250
github-actions[bot] 1 year ago committed by GitHub
parent e3c56fab4f
commit dbc5793533
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -37,6 +37,7 @@
"blue-rules-juggle", "blue-rules-juggle",
"blue-timers-film", "blue-timers-film",
"blue-waves-sneeze", "blue-waves-sneeze",
"brave-candles-serve",
"brave-carrots-draw", "brave-carrots-draw",
"brave-doors-compete", "brave-doors-compete",
"brave-gorillas-end", "brave-gorillas-end",
@ -135,6 +136,7 @@
"dirty-pens-look", "dirty-pens-look",
"dirty-pianos-eat", "dirty-pianos-eat",
"dirty-tips-add", "dirty-tips-add",
"dirty-worms-type",
"dry-clocks-grow", "dry-clocks-grow",
"dry-eggs-play", "dry-eggs-play",
"dry-eggs-retire", "dry-eggs-retire",
@ -500,6 +502,7 @@
"odd-buckets-lie", "odd-buckets-lie",
"odd-needles-joke", "odd-needles-joke",
"odd-schools-wait", "odd-schools-wait",
"odd-shirts-hear",
"odd-shoes-cheat", "odd-shoes-cheat",
"odd-taxis-retire", "odd-taxis-retire",
"odd-toys-glow", "odd-toys-glow",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.250
### Patch Changes
- fix: correctly migrate sequence expressions ([#13291](https://github.com/sveltejs/svelte/pull/13291))
- fix: avoid disconnecting deriveds that are still active ([#13292](https://github.com/sveltejs/svelte/pull/13292))
- feat: Add accessibility warnings for buttons and anchors without explicit labels and content ([#13130](https://github.com/sveltejs/svelte/pull/13130))
## 5.0.0-next.249 ## 5.0.0-next.249
### Patch Changes ### Patch Changes

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

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

Loading…
Cancel
Save