Skip to content

Commit 82cc483

Browse files
Version Packages (next) (#8772)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ef1b98f commit 82cc483

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

.changeset/pre.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@
88
},
99
"changesets": [
1010
"beige-boxes-rhyme",
11+
"eighty-tigers-rhyme",
1112
"fair-geese-repeat",
1213
"gentle-pumas-chew",
1314
"green-sheep-learn",
1415
"mighty-suns-occur",
16+
"odd-wasps-smoke",
17+
"silly-ladybugs-marry",
18+
"smart-kangaroos-tell",
1519
"stale-cougars-wink",
16-
"tame-peaches-destroy"
20+
"tame-peaches-destroy",
21+
"yellow-squids-explain"
1722
]
1823
}

packages/svelte/CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# svelte
22

3+
## 4.0.0-next.3
4+
5+
### Patch Changes
6+
7+
- feat: smaller minified output for destructor chunks ([#8763](https://github.com/sveltejs/svelte/pull/8763))
8+
9+
- breaking: use `CustomEvent` constructor instead of deprecated `createEvent` method ([#8775](https://github.com/sveltejs/svelte/pull/8775))
10+
11+
- fix: account for preprocessor source maps when calculating meta info ([#8778](https://github.com/sveltejs/svelte/pull/8778))
12+
13+
- chore: deindent cjs output for compiler ([#8785](https://github.com/sveltejs/svelte/pull/8785))
14+
15+
- feat: add version info to `window`. You can opt out by setting `discloseVersion` to `false` in the compiler options ([#8761](https://github.com/sveltejs/svelte/pull/8761))
16+
317
## 4.0.0-next.2
418

519
### Patch Changes
@@ -69,7 +83,7 @@
6983

7084
## 3.59.2
7185

72-
* Fix escaping `<textarea bind:value={...}>` values in SSR
86+
- Fix escaping `<textarea bind:value={...}>` values in SSR
7387

7488
## 3.59.1
7589

packages/svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte",
3-
"version": "4.0.0-next.2",
3+
"version": "4.0.0-next.3",
44
"description": "Cybernetically enhanced web apps",
55
"type": "module",
66
"module": "src/runtime/index.js",

packages/svelte/src/shared/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 = '4.0.0-next.2';
9+
export const VERSION = '4.0.0-next.3';
1010
export const PUBLIC_VERSION = '4';

0 commit comments

Comments
 (0)