Version Packages

pull/16667/head
github-actions[bot] 2 weeks ago
parent 967431c1a7
commit c4a0500acb

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: place instance-level snippets inside async body

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: Add check for builtin custom elements in `set_custom_element_data`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: restore batch along with effect context

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: wait until changes propagate before updating input selection state

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: add "Accept-CH" as valid value for `http-equiv`

@ -1,5 +1,19 @@
# svelte # svelte
## 5.38.4
### Patch Changes
- fix: place instance-level snippets inside async body ([#16666](https://github.com/sveltejs/svelte/pull/16666))
- fix: Add check for builtin custom elements in `set_custom_element_data` ([#16592](https://github.com/sveltejs/svelte/pull/16592))
- fix: restore batch along with effect context ([#16668](https://github.com/sveltejs/svelte/pull/16668))
- fix: wait until changes propagate before updating input selection state ([#16649](https://github.com/sveltejs/svelte/pull/16649))
- fix: add "Accept-CH" as valid value for `http-equiv` ([#16671](https://github.com/sveltejs/svelte/pull/16671))
## 5.38.3 ## 5.38.3
### Patch Changes ### Patch 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.38.3", "version": "5.38.4",
"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.38.3'; export const VERSION = '5.38.4';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save