Version Packages (next) (#8772)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/8795/head svelte@4.0.0-next.3
github-actions[bot] 2 years ago committed by GitHub
parent ef1b98f9d9
commit 82cc48390c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,11 +8,16 @@
},
"changesets": [
"beige-boxes-rhyme",
"eighty-tigers-rhyme",
"fair-geese-repeat",
"gentle-pumas-chew",
"green-sheep-learn",
"mighty-suns-occur",
"odd-wasps-smoke",
"silly-ladybugs-marry",
"smart-kangaroos-tell",
"stale-cougars-wink",
"tame-peaches-destroy"
"tame-peaches-destroy",
"yellow-squids-explain"
]
}

@ -1,5 +1,19 @@
# svelte
## 4.0.0-next.3
### Patch Changes
- feat: smaller minified output for destructor chunks ([#8763](https://github.com/sveltejs/svelte/pull/8763))
- breaking: use `CustomEvent` constructor instead of deprecated `createEvent` method ([#8775](https://github.com/sveltejs/svelte/pull/8775))
- fix: account for preprocessor source maps when calculating meta info ([#8778](https://github.com/sveltejs/svelte/pull/8778))
- chore: deindent cjs output for compiler ([#8785](https://github.com/sveltejs/svelte/pull/8785))
- 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))
## 4.0.0-next.2
### Patch Changes
@ -69,7 +83,7 @@
## 3.59.2
* Fix escaping `<textarea bind:value={...}>` values in SSR
- Fix escaping `<textarea bind:value={...}>` values in SSR
## 3.59.1

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "4.0.0-next.2",
"version": "4.0.0-next.3",
"description": "Cybernetically enhanced web apps",
"type": "module",
"module": "src/runtime/index.js",

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '4.0.0-next.2';
export const VERSION = '4.0.0-next.3';
export const PUBLIC_VERSION = '4';

Loading…
Cancel
Save