Version Packages (#17564)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17588/head svelte@5.49.0
github-actions[bot] 6 months ago committed by GitHub
parent 2d62ffee9c
commit 9d1dd2e199
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: throw for unset `createContext` get on the server

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: reset effects inside skipped branches

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: preserve old dependencies when updating reaction inside fork

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: allow passing `ShadowRootInit` object to custom element `shadow` option

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: more conservative assignment_value_stale warnings

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: disregard `popover` elements when determining whether an element has content

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: fire introstart/outrostart events after delay, if specified

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: increment signal versions when discarding forks

@ -1,5 +1,27 @@
# svelte
## 5.49.0
### Minor Changes
- feat: allow passing `ShadowRootInit` object to custom element `shadow` option ([#17088](https://github.com/sveltejs/svelte/pull/17088))
### Patch Changes
- fix: throw for unset `createContext` get on the server ([#17580](https://github.com/sveltejs/svelte/pull/17580))
- fix: reset effects inside skipped branches ([#17581](https://github.com/sveltejs/svelte/pull/17581))
- fix: preserve old dependencies when updating reaction inside fork ([#17579](https://github.com/sveltejs/svelte/pull/17579))
- fix: more conservative assignment_value_stale warnings ([#17574](https://github.com/sveltejs/svelte/pull/17574))
- fix: disregard `popover` elements when determining whether an element has content ([#17367](https://github.com/sveltejs/svelte/pull/17367))
- fix: fire introstart/outrostart events after delay, if specified ([#17567](https://github.com/sveltejs/svelte/pull/17567))
- fix: increment signal versions when discarding forks ([#17577](https://github.com/sveltejs/svelte/pull/17577))
## 5.48.5
### Patch Changes

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

Loading…
Cancel
Save