Merge branch 'main' into svelte-custom-renderer

pull/18317/head
Paolo Ricciuti 2 months ago committed by GitHub
commit 078a77c9ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't unset batch when calling `{#await ...}` promise

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: promise-ify `{#await await ...}` expressions on the server and correctly hydrate them on the client

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: deduplicate dependencies that are added outside the init/update cycle

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid false-positive batch invariant error

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: inline primitive constants in attribute values during SSR

@ -1,5 +1,19 @@
# svelte
## 5.55.9
### Patch Changes
- fix: don't unset batch when calling `{#await ...}` promise ([#18243](https://github.com/sveltejs/svelte/pull/18243))
- fix: promise-ify `{#await await ...}` expressions on the server and correctly hydrate them on the client ([#18243](https://github.com/sveltejs/svelte/pull/18243))
- fix: deduplicate dependencies that are added outside the init/update cycle ([#18243](https://github.com/sveltejs/svelte/pull/18243))
- fix: avoid false-positive batch invariant error ([#18246](https://github.com/sveltejs/svelte/pull/18246))
- fix: inline primitive constants in attribute values during SSR ([#18232](https://github.com/sveltejs/svelte/pull/18232))
## 5.55.8
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.55.8",
"version": "5.55.9",
"type": "module",
"types": "./types/index.d.ts",
"engines": {
@ -176,7 +176,7 @@
"dependencies": {
"@jridgewell/remapping": "^2.3.4",
"@jridgewell/sourcemap-codec": "^1.5.0",
"@sveltejs/acorn-typescript": "^1.0.5",
"@sveltejs/acorn-typescript": "^1.0.10",
"@types/estree": "^1.0.5",
"@types/trusted-types": "^2.0.7",
"acorn": "^8.12.1",
@ -185,7 +185,7 @@
"clsx": "^2.1.1",
"devalue": "^5.8.1",
"esm-env": "^1.2.1",
"esrap": "^2.2.4",
"esrap": "^2.2.9",
"is-reference": "^3.0.3",
"locate-character": "^3.0.0",
"magic-string": "^0.30.11",

@ -378,7 +378,6 @@ function run() {
};
const block = esrap.print(
// @ts-expect-error some bullshit
/** @type {ESTree.Program} */ ({ ...ast, body: [clone] }),
ts({ comments: [jsdoc_clone] })
).code;

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

@ -75,8 +75,8 @@ importers:
specifier: ^1.5.0
version: 1.5.0
'@sveltejs/acorn-typescript':
specifier: ^1.0.5
version: 1.0.5(acorn@8.16.0)
specifier: ^1.0.10
version: 1.0.10(acorn@8.16.0)
'@types/estree':
specifier: ^1.0.5
version: 1.0.8
@ -102,8 +102,8 @@ importers:
specifier: ^1.2.1
version: 1.2.1
esrap:
specifier: ^2.2.4
version: 2.2.4
specifier: ^2.2.9
version: 2.2.9(@typescript-eslint/types@8.56.0)
is-reference:
specifier: ^3.0.3
version: 3.0.3
@ -1042,8 +1042,8 @@ packages:
peerDependencies:
eslint: '>=8.40.0'
'@sveltejs/acorn-typescript@1.0.5':
resolution: {integrity: sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==}
'@sveltejs/acorn-typescript@1.0.10':
resolution: {integrity: sha512-4WfKk68eTih+MiJD4fSbxN7E8kVBmTMPWHUPYjvl2N0rMs53YLTT8/YjKU5Dtnz5LqDjl7LEw4U7lXR2W3J5WA==}
peerDependencies:
acorn: ^8.9.0
@ -1574,8 +1574,13 @@ packages:
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
engines: {node: '>=0.10'}
esrap@2.2.4:
resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==}
esrap@2.2.9:
resolution: {integrity: sha512-4KijP+NxCWthMCUC3qHbE6n4vCjqgJS1uAYKhuT/GWfFTf1Qyive2TgOjep+gzbSzRfnNyaN/UU9YmdOt8Eg0A==}
peerDependencies:
'@typescript-eslint/types': ^8.2.0
peerDependenciesMeta:
'@typescript-eslint/types':
optional: true
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
@ -3392,7 +3397,7 @@ snapshots:
eslint-visitor-keys: 3.4.3
espree: 9.6.1
'@sveltejs/acorn-typescript@1.0.5(acorn@8.16.0)':
'@sveltejs/acorn-typescript@1.0.10(acorn@8.16.0)':
dependencies:
acorn: 8.16.0
@ -4046,9 +4051,10 @@ snapshots:
dependencies:
estraverse: 5.3.0
esrap@2.2.4:
esrap@2.2.9(@typescript-eslint/types@8.56.0):
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
optionalDependencies:
'@typescript-eslint/types': 8.56.0
esrecurse@4.3.0:

Loading…
Cancel
Save