diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro/CHANGELOG.md | 19 | ||||
-rw-r--r-- | packages/astro/package.json | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 1e57da45a..007a2cc08 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,24 @@ # astro +## 0.15.5 + +### Patch Changes + +- 7b4c97c: Adds support for `hydrationPolyfills` in renderers + + Renderers can not specify polyfills that must run before the component code runs for hydration: + + ```js + export default { + name: '@matthewp/my-renderer', + server: './server.js', + client: './client.js', + hydrationPolyfills: ['./my-polyfill.js'], + }; + ``` + + These will still wait for hydration to occur, but will run before the component script does. + ## 0.15.4 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 0e029b99b..28b3b3f56 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.15.4", + "version": "0.15.5", "author": "Skypack", "license": "MIT", "type": "module", |