Version Packages (#17740)

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.51.5

### Patch Changes

- fix: check to make sure `svelte:element` tags are valid during SSR
([`73098bb26c6f06e7fd1b0746d817d2c5ee90755f`](73098bb26c))

- fix: misc option escaping and backwards compatibility
([#17741](https://github.com/sveltejs/svelte/pull/17741))

- fix: strip event handlers during SSR
([`a0c7f289156e9fafaeaf5ca14af6c06fe9b9eae5`](a0c7f28915))

- fix: replace usage of `for in` with `for of Object.keys`
([`f89c7ddd7eebaa1ef3cc540400bec2c9140b330c`](f89c7ddd7e))

- fix: always escape option body in SSR
([`f7c80da18c215e3727c2a611b0b8744cc6e504c5`](f7c80da18c))

- chore: upgrade `devalue`
([#17739](https://github.com/sveltejs/svelte/pull/17739))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17348/merge svelte@5.51.5
github-actions[bot] 6 days ago committed by GitHub
parent f855a0b770
commit 8ea33bf7fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: check to make sure `svelte:element` tags are valid during SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: misc option escaping and backwards compatibility

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: strip event handlers during SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: replace usage of `for in` with `for of Object.keys`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: always escape option body in SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: upgrade `devalue`

@ -1,5 +1,21 @@
# svelte
## 5.51.5
### Patch Changes
- fix: check to make sure `svelte:element` tags are valid during SSR ([`73098bb26c6f06e7fd1b0746d817d2c5ee90755f`](https://github.com/sveltejs/svelte/commit/73098bb26c6f06e7fd1b0746d817d2c5ee90755f))
- fix: misc option escaping and backwards compatibility ([#17741](https://github.com/sveltejs/svelte/pull/17741))
- fix: strip event handlers during SSR ([`a0c7f289156e9fafaeaf5ca14af6c06fe9b9eae5`](https://github.com/sveltejs/svelte/commit/a0c7f289156e9fafaeaf5ca14af6c06fe9b9eae5))
- fix: replace usage of `for in` with `for of Object.keys` ([`f89c7ddd7eebaa1ef3cc540400bec2c9140b330c`](https://github.com/sveltejs/svelte/commit/f89c7ddd7eebaa1ef3cc540400bec2c9140b330c))
- fix: always escape option body in SSR ([`f7c80da18c215e3727c2a611b0b8744cc6e504c5`](https://github.com/sveltejs/svelte/commit/f7c80da18c215e3727c2a611b0b8744cc6e504c5))
- chore: upgrade `devalue` ([#17739](https://github.com/sveltejs/svelte/pull/17739))
## 5.51.4
### Patch Changes

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

Loading…
Cancel
Save