Skip to content

Commit f552a4b

Browse files
authoredDec 5, 2023
Version Packages (next) (#9771)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent e6b5ccd commit f552a4b

File tree

4 files changed

+39
-2
lines changed

4 files changed

+39
-2
lines changed
 

‎.changeset/pre.json

+11
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@
1010
},
1111
"changesets": [
1212
"afraid-moose-matter",
13+
"beige-flies-wash",
1314
"brave-walls-destroy",
1415
"brown-spoons-boil",
1516
"chatty-taxis-juggle",
1617
"chilled-pumas-invite",
1718
"chilly-dolphins-lick",
1819
"clean-eels-beg",
1920
"cold-birds-own",
21+
"cool-ants-leave",
2022
"cuddly-pianos-drop",
2123
"curly-lizards-dream",
2224
"dirty-garlics-design",
@@ -41,12 +43,15 @@
4143
"honest-icons-change",
4244
"hungry-dots-fry",
4345
"hungry-tips-unite",
46+
"itchy-beans-melt",
4447
"itchy-lions-wash",
4548
"khaki-mails-draw",
4649
"khaki-moose-arrive",
4750
"kind-deers-lay",
4851
"kind-eagles-join",
4952
"large-clouds-carry",
53+
"lazy-masks-sit",
54+
"lazy-months-knock",
5055
"lazy-spiders-think",
5156
"lemon-geese-drum",
5257
"light-pens-watch",
@@ -56,12 +61,15 @@
5661
"lucky-schools-hang",
5762
"moody-frogs-exist",
5863
"moody-owls-cry",
64+
"neat-dingos-clap",
5965
"new-boats-wait",
6066
"ninety-dingos-walk",
6167
"odd-needles-joke",
6268
"odd-schools-wait",
6369
"odd-shoes-cheat",
70+
"old-flies-jog",
6471
"polite-pumpkins-guess",
72+
"polite-ravens-study",
6573
"poor-eggs-enjoy",
6674
"popular-mangos-rest",
6775
"quiet-camels-mate",
@@ -81,9 +89,12 @@
8189
"soft-geese-learn",
8290
"sour-forks-stare",
8391
"sour-rules-march",
92+
"spicy-plums-admire",
8493
"stale-comics-look",
8594
"strong-lemons-provide",
95+
"sweet-mangos-beg",
8696
"swift-ravens-hunt",
97+
"swift-seahorses-deliver",
8798
"tall-shrimps-worry",
8899
"tall-tigers-wait",
89100
"ten-worms-reflect",

‎packages/svelte/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# svelte
22

3+
## 5.0.0-next.19
4+
5+
### Patch Changes
6+
7+
- feat: add unstate utility function ([#9776](https://github.com/sveltejs/svelte/pull/9776))
8+
9+
- fix: ensure proxied array length is updated ([#9782](https://github.com/sveltejs/svelte/pull/9782))
10+
11+
- chore: fix compiler errors test suite ([#9754](https://github.com/sveltejs/svelte/pull/9754))
12+
13+
- fix: ensure transitions properly cancel on completion ([#9778](https://github.com/sveltejs/svelte/pull/9778))
14+
15+
- feat: make fallback prop values readonly ([#9789](https://github.com/sveltejs/svelte/pull/9789))
16+
17+
- fix: tweak invalid dollar prefix rules around function args ([#9792](https://github.com/sveltejs/svelte/pull/9792))
18+
19+
- fix: ensure generated code does not use keywords as variable names ([#9790](https://github.com/sveltejs/svelte/pull/9790))
20+
21+
- feat: disallow fallback values with bindings in runes mode ([#9784](https://github.com/sveltejs/svelte/pull/9784))
22+
23+
- fix: apply event attribute validation to elements only ([#9772](https://github.com/sveltejs/svelte/pull/9772))
24+
25+
- fix: handle css nth-selector syntax ([#9754](https://github.com/sveltejs/svelte/pull/9754))
26+
27+
- feat: throw descriptive error for using runes globals outside of Svelte-compiled files ([#9773](https://github.com/sveltejs/svelte/pull/9773))
28+
329
## 5.0.0-next.18
430

531
### Patch Changes

‎packages/svelte/package.json

+1-1
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.18",
5+
"version": "5.0.0-next.19",
66
"type": "module",
77
"types": "./types/index.d.ts",
88
"engines": {

‎packages/svelte/src/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
* https://svelte.dev/docs/svelte-compiler#svelte-version
77
* @type {string}
88
*/
9-
export const VERSION = '5.0.0-next.18';
9+
export const VERSION = '5.0.0-next.19';
1010
export const PUBLIC_VERSION = '5';

1 commit comments

Comments
 (1)

vercel[bot] commented on Dec 5, 2023

@vercel[bot]

Successfully deployed to the following URLs:

svelte-5-preview – ./sites/svelte-5-preview

svelte-5-preview-svelte.vercel.app
svelte-octane.vercel.app
svelte-5-preview-git-main-svelte.vercel.app
svelte-5-preview.vercel.app

Please sign in to comment.