diff options
author | 2021-07-08 14:14:55 -0400 | |
---|---|---|
committer | 2021-07-08 14:14:55 -0400 | |
commit | b2428b399918bac582b1bc757740726d64d4e0da (patch) | |
tree | 6ce4e8426c0510e8a2f8bd253c0b6906b043f0ee | |
parent | c0d4e8430f7a751556eec0c1466dc4327f2ec4ee (diff) | |
download | astro-b2428b399918bac582b1bc757740726d64d4e0da.tar.gz astro-b2428b399918bac582b1bc757740726d64d4e0da.tar.zst astro-b2428b399918bac582b1bc757740726d64d4e0da.zip |
Version Packages (#632)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r-- | .changeset/famous-years-bow.md | 15 | ||||
-rw-r--r-- | examples/blog-multiple-authors/package.json | 2 | ||||
-rw-r--r-- | examples/blog/package.json | 2 | ||||
-rw-r--r-- | examples/docs/package.json | 2 | ||||
-rw-r--r-- | examples/framework-multiple/package.json | 2 | ||||
-rw-r--r-- | examples/framework-preact/package.json | 2 | ||||
-rw-r--r-- | examples/framework-react/package.json | 2 | ||||
-rw-r--r-- | examples/framework-svelte/package.json | 2 | ||||
-rw-r--r-- | examples/framework-vue/package.json | 2 | ||||
-rw-r--r-- | examples/portfolio/package.json | 2 | ||||
-rw-r--r-- | examples/snowpack/package.json | 4 | ||||
-rw-r--r-- | examples/starter/package.json | 2 | ||||
-rw-r--r-- | examples/with-markdown-plugins/package.json | 2 | ||||
-rw-r--r-- | examples/with-markdown/package.json | 2 | ||||
-rw-r--r-- | examples/with-nanostores/package.json | 2 | ||||
-rw-r--r-- | examples/with-tailwindcss/package.json | 2 | ||||
-rw-r--r-- | packages/astro/CHANGELOG.md | 16 | ||||
-rw-r--r-- | packages/astro/package.json | 2 | ||||
-rw-r--r-- | tools/language-server/package.json | 2 | ||||
-rw-r--r-- | www/package.json | 2 |
20 files changed, 35 insertions, 34 deletions
diff --git a/.changeset/famous-years-bow.md b/.changeset/famous-years-bow.md deleted file mode 100644 index 77bf5d2c7..000000000 --- a/.changeset/famous-years-bow.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'astro': minor ---- - -## Adds directive syntax for component hydration - -This change updates the syntax for partial hydration from `<Button:load />` to `<Button client:load />`. - -**Why?** - -Partial hydration is about to get super powers! This clears the way for more dynamic partial hydration, i.e. `<MobileMenu client:media="(max-width: 40em)" />`. - -**How to upgrade** - -Just update `:load`, `:idle`, and `:visible` to match the `client:load` format, thats it! Don't worry, the original syntax is still supported but it's recommended to future-proof your project by updating to the newer syntax. diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 31f7212e3..d391849b1 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/blog/package.json b/examples/blog/package.json index 72e439b82..760d12eed 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/docs/package.json b/examples/docs/package.json index 48f983b81..8ef94f8da 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 0bff3c745..86a92fc75 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 83e819578..3492b823f 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 2bb969ef8..46663f114 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index bb9ed1097..bf2f9b1cf 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 73e2d0d38..d6ea6a1f6 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index bb9b8b4e8..e09a79662 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index 087a09ecf..15567602b 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -11,7 +11,7 @@ "lint": "prettier --check \"src/**/*.js\"" }, "dependencies": { - "astro": "^0.16.3", + "astro": "^0.17.0", "date-fns": "^2.19.0", "deepmerge": "^4.2.2", "docsearch.js": "^2.6.3", @@ -25,7 +25,7 @@ "@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4", "@contentful/rich-text-html-renderer": "^14.1.2", "@contentful/rich-text-types": "^14.1.2", - "astro": "^0.16.3", + "astro": "^0.17.0", "eleventy-plugin-nesting-toc": "^1.2.0", "luxon": "^1.25.0", "markdown-it": "^12.0.2", diff --git a/examples/starter/package.json b/examples/starter/package.json index 73a2d7321..34d4ce470 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index d2c8ba854..1bb39d6d4 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3", + "astro": "^0.17.0", "rehype-add-classes": "^1.0.0", "rehype-toc": "^3.0.2", "remark-autolink-headings": "^6.0.1", diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index ceac92446..dabc52358 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 57c0b70a0..3fa3aea08 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" }, "dependencies": { "nanostores": "^0.3.3" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 29e32132b..52d947ad8 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -8,7 +8,7 @@ }, "devDependencies": { "tailwindcss": "^2.1.2", - "astro": "^0.16.3" + "astro": "^0.17.0" }, "snowpack": { "workspaceRoot": "../.." diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index af6a2294c..660669acb 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,21 @@ # astro +## 0.17.0 + +### Minor Changes + +- 0a7b6de: ## Adds directive syntax for component hydration + + This change updates the syntax for partial hydration from `<Button:load />` to `<Button client:load />`. + + **Why?** + + Partial hydration is about to get super powers! This clears the way for more dynamic partial hydration, i.e. `<MobileMenu client:media="(max-width: 40em)" />`. + + **How to upgrade** + + Just update `:load`, `:idle`, and `:visible` to match the `client:load` format, thats it! Don't worry, the original syntax is still supported but it's recommended to future-proof your project by updating to the newer syntax. + ## 0.16.3 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 1989b1f0d..7af5c3065 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.16.3", + "version": "0.17.0", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/tools/language-server/package.json b/tools/language-server/package.json index af5b34e9f..3ae123c8f 100644 --- a/tools/language-server/package.json +++ b/tools/language-server/package.json @@ -28,7 +28,7 @@ "vscode-languageserver-textdocument": "^1.0.1" }, "devDependencies": { - "astro": "^0.16.0", + "astro": "^0.17.0", "astro-scripts": "0.0.1" } } diff --git a/www/package.json b/www/package.json index fb901323f..9b5b6c73a 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.3" + "astro": "^0.17.0" } } |