Version Packages (#18315)

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

### Minor Changes

- feat: allow declarations in the template
([#18282](https://github.com/sveltejs/svelte/pull/18282))

### Patch Changes

- perf: use `createElement` instead of `createElementNS` for HTML
elements ([#18262](https://github.com/sveltejs/svelte/pull/18262))

- perf: store `current_sources` as a `Set` for O(1) membership checks
([#18278](https://github.com/sveltejs/svelte/pull/18278))

- perf: deduplicate identical hoisted templates within a component
([#18320](https://github.com/sveltejs/svelte/pull/18320))

- perf: hoist `rest_props` exclude list as a module-scope `Set`
([#18252](https://github.com/sveltejs/svelte/pull/18252))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/18329/head svelte@5.56.0
github-actions[bot] 4 months ago committed by GitHub
parent 6d26dce265
commit 70afafe18e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: use `createElement` instead of `createElementNS` for HTML elements

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: store `current_sources` as a `Set` for O(1) membership checks

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: deduplicate identical hoisted templates within a component

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: allow declarations in the template

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: hoist `rest_props` exclude list as a module-scope `Set`

@ -1,5 +1,21 @@
# svelte
## 5.56.0
### Minor Changes
- feat: allow declarations in the template ([#18282](https://github.com/sveltejs/svelte/pull/18282))
### Patch Changes
- perf: use `createElement` instead of `createElementNS` for HTML elements ([#18262](https://github.com/sveltejs/svelte/pull/18262))
- perf: store `current_sources` as a `Set` for O(1) membership checks ([#18278](https://github.com/sveltejs/svelte/pull/18278))
- perf: deduplicate identical hoisted templates within a component ([#18320](https://github.com/sveltejs/svelte/pull/18320))
- perf: hoist `rest_props` exclude list as a module-scope `Set` ([#18252](https://github.com/sveltejs/svelte/pull/18252))
## 5.55.10
### Patch Changes

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

Loading…
Cancel
Save