Skip to content

Commit 7a45647

Browse files
committed
Merge branch 'main' of github.com:sveltejs/svelte into swc-parser
2 parents 54a8c6d + 687d9db commit 7a45647

File tree

45 files changed

+985
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+985
-115
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
feat: add types for the search element

.changeset/great-dots-wonder.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
feat: support migration of single assignment labeled statements

.changeset/neat-ways-allow.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
feat: enable snippets to fill slots

.changeset/nine-kids-whisper.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
fix: correctly migrate `$$slots` with bracket member expressions & slots with static props

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@
495495
"neat-ducks-jam",
496496
"neat-files-rescue",
497497
"neat-jokes-beam",
498+
"neat-ways-allow",
498499
"nervous-adults-sell",
499500
"nervous-berries-boil",
500501
"nervous-chefs-exist",
@@ -758,6 +759,7 @@
758759
"sour-forks-stare",
759760
"sour-geese-listen",
760761
"sour-jeans-collect",
762+
"sour-poems-trade",
761763
"sour-rules-march",
762764
"sour-tomatoes-knock",
763765
"sour-weeks-fix",
@@ -961,6 +963,7 @@
961963
"yellow-taxis-double",
962964
"yellow-trees-juggle",
963965
"young-ads-roll",
966+
"young-ducks-punch",
964967
"young-feet-double",
965968
"young-masks-refuse",
966969
"young-peaches-agree"

.changeset/small-suns-lie.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
feat: migrate slot usages

.changeset/sour-poems-trade.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
fix: strip internal properties from rest props during SSR

packages/svelte/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# svelte
22

3+
## 5.0.0-next.262
4+
5+
### Patch Changes
6+
7+
- feat: enable snippets to fill slots ([#13427](https://github.com/sveltejs/svelte/pull/13427))
8+
9+
- fix: strip internal properties from rest props during SSR ([#13492](https://github.com/sveltejs/svelte/pull/13492))
10+
11+
- fix: allow combinator at start of nested CSS selector ([#13440](https://github.com/sveltejs/svelte/pull/13440))
12+
313
## 5.0.0-next.261
414

515
### Patch Changes

packages/svelte/elements.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1846,6 +1846,7 @@ export interface SvelteHTMLElements {
18461846
samp: HTMLAttributes<HTMLElement>;
18471847
slot: HTMLSlotAttributes;
18481848
script: HTMLScriptAttributes;
1849+
search: HTMLAttributes<HTMLElement>;
18491850
section: HTMLAttributes<HTMLElement>;
18501851
select: HTMLSelectAttributes;
18511852
small: HTMLAttributes<HTMLElement>;

packages/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svelte",
33
"description": "Cybernetically enhanced web apps",
44
"license": "MIT",
5-
"version": "5.0.0-next.261",
5+
"version": "5.0.0-next.262",
66
"type": "module",
77
"types": "./types/index.d.ts",
88
"engines": {

0 commit comments

Comments
 (0)