Version Packages (#16848)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/16876/head svelte@5.39.7
github-actions[bot] 3 days ago committed by GitHub
parent 46c10d0476
commit e9cd45a2da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: simplify batch logic

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: rebase pending batches when other batches are committed

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: wrap async `children` in `$$renderer.async`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: silence label warning for buttons and anchor tags with title attributes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: coerce nullish `<title>` to empty string

@ -1,5 +1,19 @@
# svelte # svelte
## 5.39.7
### Patch Changes
- chore: simplify batch logic ([#16847](https://github.com/sveltejs/svelte/pull/16847))
- fix: rebase pending batches when other batches are committed ([#16866](https://github.com/sveltejs/svelte/pull/16866))
- fix: wrap async `children` in `$$renderer.async` ([#16862](https://github.com/sveltejs/svelte/pull/16862))
- fix: silence label warning for buttons and anchor tags with title attributes ([#16872](https://github.com/sveltejs/svelte/pull/16872))
- fix: coerce nullish `<title>` to empty string ([#16863](https://github.com/sveltejs/svelte/pull/16863))
## 5.39.6 ## 5.39.6
### 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.39.6", "version": "5.39.7",
"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.39.6'; export const VERSION = '5.39.7';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save