summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-02-02 12:38:04 -0800
committerGravatar GitHub <noreply@github.com> 2023-02-02 15:38:04 -0500
commit81615c50047a8c815ea7211eaf8e6fd31eba16be (patch)
tree68898999d2022d90eb6cda1d5c7e62ea4fe48603
parent10550f5ee2f63fe0bba5a6f6533244a021b468ad (diff)
downloadastro-81615c50047a8c815ea7211eaf8e6fd31eba16be.tar.gz
astro-81615c50047a8c815ea7211eaf8e6fd31eba16be.tar.zst
astro-81615c50047a8c815ea7211eaf8e6fd31eba16be.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/cold-maps-wash.md5
-rw-r--r--.changeset/lucky-hounds-rhyme.md5
-rw-r--r--.changeset/wild-seas-happen.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/deno/package.json2
-rw-r--r--examples/docs/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json4
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-rw-r--r--examples/framework-solid/package.json4
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json2
-rw-r--r--examples/hackernews/package.json2
-rw-r--r--examples/integration/package.json2
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/non-html-pages/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/with-markdown-plugins/package.json2
-rw-r--r--examples/with-markdown-shiki/package.json2
-rw-r--r--examples/with-mdx/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md6
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/integrations/cloudflare/package.json2
-rw-r--r--packages/integrations/deno/package.json2
-rw-r--r--packages/integrations/image/package.json2
-rw-r--r--packages/integrations/netlify/package.json2
-rw-r--r--packages/integrations/node/package.json2
-rw-r--r--packages/integrations/solid/CHANGELOG.md6
-rw-r--r--packages/integrations/solid/package.json2
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/integrations/tailwind/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md9
-rw-r--r--packages/integrations/vercel/package.json4
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--pnpm-lock.yaml56
44 files changed, 89 insertions, 83 deletions
diff --git a/.changeset/cold-maps-wash.md b/.changeset/cold-maps-wash.md
deleted file mode 100644
index 406ce84f9..000000000
--- a/.changeset/cold-maps-wash.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/solid-js': patch
----
-
-Bump vitefu for peerDep warning with Vite 4
diff --git a/.changeset/lucky-hounds-rhyme.md b/.changeset/lucky-hounds-rhyme.md
deleted file mode 100644
index 51b1c012b..000000000
--- a/.changeset/lucky-hounds-rhyme.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes head contents being placed in body in MDX components
diff --git a/.changeset/wild-seas-happen.md b/.changeset/wild-seas-happen.md
deleted file mode 100644
index 8db21e433..000000000
--- a/.changeset/wild-seas-happen.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/vercel': patch
----
-
-Added second build step through esbuild, to allow framework defined build (vite build) and target defined bundling (esbuilt step)
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 9dffd8bd0..3b1ad504d 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 87758e519..05e470780 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"@astrojs/mdx": "^0.16.0",
"@astrojs/rss": "^2.1.0",
"@astrojs/sitemap": "^1.0.1"
diff --git a/examples/component/package.json b/examples/component/package.json
index 85a9226a0..7805f0d35 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/deno/package.json b/examples/deno/package.json
index 27413f456..b8ef2344f 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
},
"devDependencies": {
"@astrojs/deno": "^4.0.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index b04aa7adf..4f93b0ef7 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 1ce785196..d8c56040c 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.1.3",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 70c787dca..ee9c84e9d 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"lit": "^2.2.5",
"@astrojs/lit": "^1.1.2",
"@webcomponents/template-shadowroot": "^0.1.0"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 5896c198a..25cc08b83 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
@@ -20,7 +20,7 @@
"vue": "^3.2.37",
"@astrojs/preact": "^2.0.1",
"@astrojs/react": "^2.0.2",
- "@astrojs/solid-js": "^2.0.1",
+ "@astrojs/solid-js": "^2.0.2",
"@astrojs/svelte": "^2.0.1",
"@astrojs/vue": "^2.0.1"
}
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index e93413c48..e9056bca6 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"preact": "^10.7.3",
"@astrojs/preact": "^2.0.1",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 94cac639e..bd8f92499 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^2.0.2",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 81d474e6f..8c6531572 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"solid-js": "^1.4.3",
- "@astrojs/solid-js": "^2.0.1"
+ "@astrojs/solid-js": "^2.0.2"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index fcc6ae58f..7ead21391 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.0.1",
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index f0085d7d4..163ae9cd2 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"vue": "^3.2.37",
"@astrojs/vue": "^2.0.1"
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index b344dd59b..354490854 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^5.0.2",
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index f0139095a..456e057c8 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 8c42d3011..ac96c9421 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 12967c666..c71776849 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index c7b52087e..bc8919d2c 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 6b876c0ce..87a20eae0 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.0.1",
"@astrojs/node": "^5.0.2",
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 7f78949c7..1cd521f88 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"@astrojs/markdown-remark": "^2.0.1",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index 502397bf0..8d118f884 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5"
+ "astro": "^2.0.6"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index d7d98fded..fd46013e3 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"preact": "^10.6.5",
"@astrojs/preact": "^2.0.1",
"@astrojs/mdx": "^0.16.0"
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index feb42be03..931c51190 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"preact": "^10.7.3",
"@astrojs/preact": "^2.0.1",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 5a7872712..1b82fc4a9 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^0.16.0",
"@astrojs/tailwind": "^3.0.1",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index 7fe378a68..22d1e6f32 100644
--- a/examples/with-vite-plugin-pwa/package.json
+++ b/examples/with-vite-plugin-pwa/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 921404bbf..f5db2f873 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^2.0.5",
+ "astro": "^2.0.6",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index a301de2d6..c20c4e628 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,11 @@
# astro
+## 2.0.6
+
+### Patch Changes
+
+- [#6107](https://github.com/withastro/astro/pull/6107) [`9bec6bc41`](https://github.com/withastro/astro/commit/9bec6bc410f324a41c67e5d185fa86f78d7625f2) Thanks [@matthewp](https://github.com/matthewp)! - Fixes head contents being placed in body in MDX components
+
## 2.0.5
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 5284ba51c..9b189a73b 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "2.0.5",
+ "version": "2.0.6",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json
index a2e8ad1da..8f90141ac 100644
--- a/packages/integrations/cloudflare/package.json
+++ b/packages/integrations/cloudflare/package.json
@@ -38,7 +38,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index 528bc266f..f32b5d341 100644
--- a/packages/integrations/deno/package.json
+++ b/packages/integrations/deno/package.json
@@ -32,7 +32,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index 6c84fdcad..532ed0b9e 100644
--- a/packages/integrations/image/package.json
+++ b/packages/integrations/image/package.json
@@ -63,7 +63,7 @@
"vite": "^4.0.3"
},
"peerDependencies": {
- "astro": "workspace:^2.0.5",
+ "astro": "workspace:^2.0.6",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index bba5f7709..25695ea79 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -39,7 +39,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"devDependencies": {
"@netlify/edge-handler-types": "^0.34.1",
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 57ffc50ae..39060dcf3 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -34,7 +34,7 @@
"send": "^0.18.0"
},
"peerDependencies": {
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"devDependencies": {
"@types/send": "^0.17.1",
diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md
index 52ed6418c..b8c1c84da 100644
--- a/packages/integrations/solid/CHANGELOG.md
+++ b/packages/integrations/solid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/solid-js
+## 2.0.2
+
+### Patch Changes
+
+- [#6104](https://github.com/withastro/astro/pull/6104) [`8c80e78dd`](https://github.com/withastro/astro/commit/8c80e78dd5ebfe0528390f42222aadf4786a90fe) Thanks [@yasserhennawi](https://github.com/yasserhennawi)! - Bump vitefu for peerDep warning with Vite 4
+
## 2.0.1
### Patch Changes
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index 2faec55ea..b4c4595ea 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
- "version": "2.0.1",
+ "version": "2.0.2",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index 68184f838..fd0063d76 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -44,7 +44,7 @@
},
"peerDependencies": {
"svelte": "^3.54.0",
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"engines": {
"node": ">=16.12.0"
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 555a522f5..4ae57a28e 100644
--- a/packages/integrations/tailwind/package.json
+++ b/packages/integrations/tailwind/package.json
@@ -41,7 +41,7 @@
},
"peerDependencies": {
"tailwindcss": "^3.0.24",
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"pnpm": {
"peerDependencyRules": {
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index d50c0feac..66b72eb4b 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/vercel
+## 3.0.1
+
+### Patch Changes
+
+- [#6085](https://github.com/withastro/astro/pull/6085) [`b236b5cc8`](https://github.com/withastro/astro/commit/b236b5cc8eb9e078758d9c6cb77d88c39bb1fc3d) Thanks [@AirBorne04](https://github.com/AirBorne04)! - Added second build step through esbuild, to allow framework defined build (vite build) and target defined bundling (esbuilt step)
+
+- Updated dependencies [[`9bec6bc41`](https://github.com/withastro/astro/commit/9bec6bc410f324a41c67e5d185fa86f78d7625f2)]:
+ - astro@2.0.6
+
## 3.0.0
### Major Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index ca4c48346..99e55da68 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
- "version": "3.0.0",
+ "version": "3.0.1",
"type": "module",
"author": "withastro",
"license": "MIT",
@@ -50,7 +50,7 @@
"set-cookie-parser": "^2.5.1"
},
"peerDependencies": {
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index fe0d438e4..af4d4429e 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -51,7 +51,7 @@
},
"peerDependencies": {
"vue": "^3.2.30",
- "astro": "workspace:^2.0.5"
+ "astro": "workspace:^2.0.6"
},
"engines": {
"node": ">=16.12.0"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e3f8194aa..1c199181e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -63,7 +63,7 @@ importers:
examples/basics:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
astro: link:../../packages/astro
@@ -72,7 +72,7 @@ importers:
'@astrojs/mdx': ^0.16.0
'@astrojs/rss': ^2.1.0
'@astrojs/sitemap': ^1.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -81,14 +81,14 @@ importers:
examples/component:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^4.0.0
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
astro: link:../../packages/astro
devDependencies:
@@ -104,7 +104,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
- astro: ^2.0.5
+ astro: ^2.0.6
html-escaper: ^3.0.3
preact: ^10.7.3
react: ^18.1.0
@@ -130,7 +130,7 @@ importers:
'@astrojs/alpinejs': ^0.1.3
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@@ -141,7 +141,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.1.2
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^2.0.5
+ astro: ^2.0.6
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -153,10 +153,10 @@ importers:
specifiers:
'@astrojs/preact': ^2.0.1
'@astrojs/react': ^2.0.2
- '@astrojs/solid-js': ^2.0.1
+ '@astrojs/solid-js': ^2.0.2
'@astrojs/svelte': ^2.0.1
'@astrojs/vue': ^2.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -181,7 +181,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.0.1
'@preact/signals': ^1.1.0
- astro: ^2.0.5
+ astro: ^2.0.6
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -194,7 +194,7 @@ importers:
'@astrojs/react': ^2.0.2
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^2.0.5
+ astro: ^2.0.6
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -207,8 +207,8 @@ importers:
examples/framework-solid:
specifiers:
- '@astrojs/solid-js': ^2.0.1
- astro: ^2.0.5
+ '@astrojs/solid-js': ^2.0.2
+ astro: ^2.0.6
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -218,7 +218,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^2.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -228,7 +228,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^2.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -238,32 +238,32 @@ importers:
examples/hackernews:
specifiers:
'@astrojs/node': ^5.0.2
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
astro: link:../../packages/astro
@@ -271,7 +271,7 @@ importers:
specifiers:
'@astrojs/node': ^5.0.2
'@astrojs/svelte': ^2.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -288,7 +288,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^2.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -305,7 +305,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
dependencies:
astro: link:../../packages/astro
@@ -313,7 +313,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.16.0
'@astrojs/preact': ^2.0.1
- astro: ^2.0.5
+ astro: ^2.0.6
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -325,7 +325,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.0.1
'@nanostores/preact': ^0.1.3
- astro: ^2.0.5
+ astro: ^2.0.6
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -340,7 +340,7 @@ importers:
'@astrojs/mdx': ^0.16.0
'@astrojs/tailwind': ^3.0.1
'@types/canvas-confetti': ^1.4.3
- astro: ^2.0.5
+ astro: ^2.0.6
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -357,7 +357,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -367,7 +367,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^2.0.5
+ astro: ^2.0.6
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro