pull/1028/head v1.48.0
Rich Harris 7 years ago
parent 394dec9f11
commit 7d949a601c

@ -1,5 +1,13 @@
# Svelte changelog
## 1.48.0
* Added `<:Head>` component for injecting contents into document head ([#1013](https://github.com/sveltejs/svelte/issues/1013)))
* SSR `render(...)` method now returns a `{ html, css: { code, map }, head }` object ([#1013](https://github.com/sveltejs/svelte/issues/1013))
* SSR `renderCss(...)` method is deprecated ([#1013](https://github.com/sveltejs/svelte/issues/1013))
* Add a `preload` function to components ([#1015](https://github.com/sveltejs/svelte/issues/1015))
* Expose `this.root` on nested components ([#1023](https://github.com/sveltejs/svelte/pull/1023))
## 1.47.2
* Deconflict computed properties against arguments to `_recompute` ([#1012](https://github.com/sveltejs/svelte/issues/1012))

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "1.47.2",
"version": "1.48.0",
"description": "The magical disappearing UI framework",
"main": "compiler/svelte.js",
"files": [

Loading…
Cancel
Save