Version Packages (#8928)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9001/head svelte@4.1.0
github-actions[bot] 1 year ago committed by GitHub
parent f8283fbc77
commit 5d66f96d01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure `svelte:component` evaluates props once

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove `let:variable` slot bindings from select binding dependencies

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: add ability to extend custom element class

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: handle destructured primitive literals

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: optimize imports that are not mutated or reassigned

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't add accessor twice

@ -1,5 +1,23 @@
# svelte
## 4.1.0
### Minor Changes
- feat: add ability to extend custom element class ([#8991](https://github.com/sveltejs/svelte/pull/8991))
### Patch Changes
- fix: ensure `svelte:component` evaluates props once ([#8946](https://github.com/sveltejs/svelte/pull/8946))
- fix: remove `let:variable` slot bindings from select binding dependencies ([#8969](https://github.com/sveltejs/svelte/pull/8969))
- fix: handle destructured primitive literals ([#8871](https://github.com/sveltejs/svelte/pull/8871))
- perf: optimize imports that are not mutated or reassigned ([#8948](https://github.com/sveltejs/svelte/pull/8948))
- fix: don't add accessor twice ([#8996](https://github.com/sveltejs/svelte/pull/8996))
## 4.0.5
### Patch Changes

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "4.0.5",
"version": "4.1.0",
"description": "Cybernetically enhanced web apps",
"type": "module",
"module": "src/runtime/index.js",

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '4.0.5';
export const VERSION = '4.1.0';
export const PUBLIC_VERSION = '4';

Loading…
Cancel
Save