Version Packages (#18036)

This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## svelte@5.55.2

### Patch Changes

- fix: invalidate `@const` tags based on visible references in legacy
mode ([#18041](https://github.com/sveltejs/svelte/pull/18041))

- fix: handle parens in template expressions more robustly
([#18075](https://github.com/sveltejs/svelte/pull/18075))

- fix: disallow `--` in `idPrefix`
([#18038](https://github.com/sveltejs/svelte/pull/18038))

- fix: correct types for `ontoggle` on `<details>` elements
([#18063](https://github.com/sveltejs/svelte/pull/18063))

- fix: don't override `$destroy/set/on` instance methods in dev mode
([#18034](https://github.com/sveltejs/svelte/pull/18034))

- fix: unskip branches of earlier batches after commit
([#18048](https://github.com/sveltejs/svelte/pull/18048))

- fix: never set derived.v inside fork
([#18037](https://github.com/sveltejs/svelte/pull/18037))

- fix: skip rebase logic in non-async mode
([#18040](https://github.com/sveltejs/svelte/pull/18040))

- fix: don't reset status of uninitialized deriveds
([#18054](https://github.com/sveltejs/svelte/pull/18054))

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: invalidate `@const` tags based on visible references in legacy mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: handle parens in template expressions more robustly

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: disallow `--` in `idPrefix`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correct types for `ontoggle` on `<details>` elements

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't override `$destroy/set/on` instance methods in dev mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: unskip branches of earlier batches after commit

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: never set derived.v inside fork

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: skip rebase logic in non-async mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't reset status of uninitialized deriveds

@ -1,5 +1,27 @@
# svelte
## 5.55.2
### Patch Changes
- fix: invalidate `@const` tags based on visible references in legacy mode ([#18041](https://github.com/sveltejs/svelte/pull/18041))
- fix: handle parens in template expressions more robustly ([#18075](https://github.com/sveltejs/svelte/pull/18075))
- fix: disallow `--` in `idPrefix` ([#18038](https://github.com/sveltejs/svelte/pull/18038))
- fix: correct types for `ontoggle` on `<details>` elements ([#18063](https://github.com/sveltejs/svelte/pull/18063))
- fix: don't override `$destroy/set/on` instance methods in dev mode ([#18034](https://github.com/sveltejs/svelte/pull/18034))
- fix: unskip branches of earlier batches after commit ([#18048](https://github.com/sveltejs/svelte/pull/18048))
- fix: never set derived.v inside fork ([#18037](https://github.com/sveltejs/svelte/pull/18037))
- fix: skip rebase logic in non-async mode ([#18040](https://github.com/sveltejs/svelte/pull/18040))
- fix: don't reset status of uninitialized deriveds ([#18054](https://github.com/sveltejs/svelte/pull/18054))
## 5.55.1
### Patch Changes

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

Loading…
Cancel
Save