Version Packages (#16513)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/16518/head svelte@5.37.1
github-actions[bot] 1 month ago committed by GitHub
parent 48f2fa22c0
commit d82edf6b1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: remove some todos

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow await expressions inside `{#await ...}` argument

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: `append_styles` in an effect to make them available on mount

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: remove `parser.template_untrimmed`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: always inject styles when compiling as a custom element

@ -1,5 +1,19 @@
# svelte # svelte
## 5.37.1
### Patch Changes
- chore: remove some todos ([#16515](https://github.com/sveltejs/svelte/pull/16515))
- fix: allow await expressions inside `{#await ...}` argument ([#16514](https://github.com/sveltejs/svelte/pull/16514))
- fix: `append_styles` in an effect to make them available on mount ([#16509](https://github.com/sveltejs/svelte/pull/16509))
- chore: remove `parser.template_untrimmed` ([#16511](https://github.com/sveltejs/svelte/pull/16511))
- fix: always inject styles when compiling as a custom element ([#16509](https://github.com/sveltejs/svelte/pull/16509))
## 5.37.0 ## 5.37.0
### Minor Changes ### Minor Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.37.0", "version": "5.37.1",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -4,5 +4,5 @@
* The current version, as set in package.json. * The current version, as set in package.json.
* @type {string} * @type {string}
*/ */
export const VERSION = '5.37.0'; export const VERSION = '5.37.1';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save