diff --git a/.changeset/curly-queens-pay.md b/.changeset/curly-queens-pay.md deleted file mode 100644 index 9199a6d02..000000000 --- a/.changeset/curly-queens-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -- Allow Markdown with scoped styles to coexist happily with code syntax highlighting via Prism diff --git a/.changeset/fair-dogs-tie.md b/.changeset/fair-dogs-tie.md deleted file mode 100644 index caf00c755..000000000 --- a/.changeset/fair-dogs-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Properly escapes script tags with nested client:load directives when passing Astro components into framework components via props. Browsers interpret script end tags in strings as script end tags, resulting in syntax errors. diff --git a/.changeset/few-carpets-sing.md b/.changeset/few-carpets-sing.md deleted file mode 100644 index 3b938a3b2..000000000 --- a/.changeset/few-carpets-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Allow dev server port to be set by `PORT` environment variable diff --git a/.changeset/strong-pets-turn.md b/.changeset/strong-pets-turn.md deleted file mode 100644 index 9912a07b3..000000000 --- a/.changeset/strong-pets-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'docs': patch ---- - -change Spanish translations for Getting Started page diff --git a/.changeset/wild-suits-raise.md b/.changeset/wild-suits-raise.md deleted file mode 100644 index a9ef96acb..000000000 --- a/.changeset/wild-suits-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/renderer-vue": patch ---- - -Bump Vue version to latest stable diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fb4c1afd5..dc735847c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # docs +## 0.0.4 + +### Patch Changes + +- adc767c5: change Spanish translations for Getting Started page + ## 0.0.3 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index a1d587953..08801b590 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.0.3", + "version": "0.0.4", "private": true, "scripts": { "start": "astro dev", @@ -15,7 +15,7 @@ }, "devDependencies": { "@snowpack/plugin-dotenv": "^2.1.0", - "astro": "^0.18.2", + "astro": "^0.18.10", "broken-link-checker": "^0.7.8", "npm-run-all": "^4.1.5", "pa11y-ci": "^2.4.2", diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index a05265203..c5fc98c18 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.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/blog/package.json b/examples/blog/package.json index e1dbaec2d..940270957 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/docs/package.json b/examples/docs/package.json index a023d75c5..f58d9cea3 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index f7aacb52e..41ff85474 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -8,7 +8,7 @@ }, "devDependencies": { "@astrojs/renderer-lit": "^0.1.0", - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 9227ccbe7..b88237388 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 8bc4cf6f1..e43d98472 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 1a8386ddd..b5e7d7ac6 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index a079bcce0..375bb4ade 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9", + "astro": "^0.18.10", "@astrojs/renderer-solid": "0.1.0" }, "snowpack": { diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 9c484b5ae..afbc47642 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 4c7130fcc..4fd303edf 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 875d3a73c..51886a785 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index 105aa88a2..0741fee7a 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@contentful/rich-text-html-renderer": "^14.1.2", "@contentful/rich-text-types": "^14.1.2", - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/starter/package.json b/examples/starter/package.json index 3f874e0f4..aee0b6c08 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index a43b3d461..25879bc80 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.18.9", + "astro": "^0.18.10", "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 b7339336a..158f2e281 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index c5a035144..948c14860 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" }, "dependencies": { "nanostores": "^0.3.3" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 47ff99fa1..30be8dde6 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -8,7 +8,7 @@ }, "devDependencies": { "tailwindcss": "^2.1.2", - "astro": "^0.18.9" + "astro": "^0.18.10" }, "snowpack": { "workspaceRoot": "../.." diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index edfd2de0a..6a084d7e2 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,15 @@ # astro +## 0.18.10 + +### Patch Changes + +- 2321b577: - Allow Markdown with scoped styles to coexist happily with code syntax highlighting via Prism +- 618ea3a8: Properly escapes script tags with nested client:load directives when passing Astro components into framework components via props. Browsers interpret script end tags in strings as script end tags, resulting in syntax errors. +- 939b9d01: Allow dev server port to be set by `PORT` environment variable +- Updated dependencies [1339d5e3] + - @astrojs/renderer-vue@0.1.7 + ## 0.18.9 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 7f9201d2a..130f49041 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.18.9", + "version": "0.18.10", "author": "Skypack", "license": "MIT", "type": "module", @@ -49,7 +49,7 @@ "@astrojs/renderer-preact": "0.2.1", "@astrojs/renderer-react": "0.2.0", "@astrojs/renderer-svelte": "0.1.1", - "@astrojs/renderer-vue": "0.1.6", + "@astrojs/renderer-vue": "0.1.7", "@babel/code-frame": "^7.12.13", "@babel/core": "^7.14.6", "@babel/generator": "^7.13.9", diff --git a/packages/renderers/renderer-vue/CHANGELOG.md b/packages/renderers/renderer-vue/CHANGELOG.md index 6c8a20e95..ef1d57c18 100644 --- a/packages/renderers/renderer-vue/CHANGELOG.md +++ b/packages/renderers/renderer-vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-vue +## 0.1.7 + +### Patch Changes + +- 1339d5e3: Bump Vue version to latest stable + ## 0.1.6 ### Patch Changes diff --git a/packages/renderers/renderer-vue/package.json b/packages/renderers/renderer-vue/package.json index 1851e62a9..97d06f6f1 100644 --- a/packages/renderers/renderer-vue/package.json +++ b/packages/renderers/renderer-vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/renderer-vue", - "version": "0.1.6", + "version": "0.1.7", "type": "module", "exports": { ".": "./index.js", diff --git a/tools/language-server/package.json b/tools/language-server/package.json index 2ff324583..b12a862c4 100644 --- a/tools/language-server/package.json +++ b/tools/language-server/package.json @@ -29,7 +29,7 @@ "vscode-languageserver-textdocument": "^1.0.1" }, "devDependencies": { - "astro": "0.18.9", + "astro": "0.18.10", "astro-scripts": "0.0.1" } } diff --git a/www/package.json b/www/package.json index 39ae75dc2..40577c392 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.18.9" + "astro": "^0.18.10" } }