Version Packages (#17615)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17648/head svelte@5.50.0
github-actions[bot] 3 days ago committed by GitHub
parent 863c9d6875
commit bb00d5b6e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure infinite effect loops are cleared after flushing

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow `{#key NaN}`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: detect store in each block expression regardless of AST shape

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: treat `<menu>` like `<ul>`/`<ol>` for a11y role checks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add vite-ignore comment inside dynamic crypto import

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: wrap JSDoc URLs in `@see` and `@link` tags

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: allow use of createContext when instantiating components programmatically

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: properly hydrate already-resolved async blocks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: emit `each_key_duplicate` error in production

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: exit resolved async blocks on correct node when hydrating

@ -1,5 +1,31 @@
# svelte
## 5.50.0
### Minor Changes
- feat: allow use of createContext when instantiating components programmatically ([#17575](https://github.com/sveltejs/svelte/pull/17575))
### Patch Changes
- fix: ensure infinite effect loops are cleared after flushing ([#17601](https://github.com/sveltejs/svelte/pull/17601))
- fix: allow `{#key NaN}` ([#17642](https://github.com/sveltejs/svelte/pull/17642))
- fix: detect store in each block expression regardless of AST shape ([#17636](https://github.com/sveltejs/svelte/pull/17636))
- fix: treat `<menu>` like `<ul>`/`<ol>` for a11y role checks ([#17638](https://github.com/sveltejs/svelte/pull/17638))
- fix: add vite-ignore comment inside dynamic crypto import ([#17623](https://github.com/sveltejs/svelte/pull/17623))
- chore: wrap JSDoc URLs in `@see` and `@link` tags ([#17617](https://github.com/sveltejs/svelte/pull/17617))
- fix: properly hydrate already-resolved async blocks ([#17641](https://github.com/sveltejs/svelte/pull/17641))
- fix: emit `each_key_duplicate` error in production ([#16724](https://github.com/sveltejs/svelte/pull/16724))
- fix: exit resolved async blocks on correct node when hydrating ([#17640](https://github.com/sveltejs/svelte/pull/17640))
## 5.49.2
### Patch Changes

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

@ -4,5 +4,5 @@
* The current version, as set in package.json.
* @type {string}
*/
export const VERSION = '5.49.2';
export const VERSION = '5.50.0';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save