summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/curly-experts-think.md5
-rw-r--r--.changeset/fifty-olives-end.md5
-rw-r--r--.changeset/good-ghosts-attack.md5
-rw-r--r--.changeset/heavy-kangaroos-sin.md5
-rw-r--r--.changeset/hot-parrots-exist.md5
-rw-r--r--.changeset/plenty-eyes-develop.md7
-rw-r--r--.changeset/poor-eagles-melt.md5
-rw-r--r--.changeset/spotty-planes-fix.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json4
-rw-r--r--examples/component/package.json4
-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.json2
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-rw-r--r--examples/framework-solid/package.json2
-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.json4
-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.json4
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json4
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md18
-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/CHANGELOG.md6
-rw-r--r--packages/integrations/image/package.json2
-rw-r--r--packages/integrations/mdx/CHANGELOG.md6
-rw-r--r--packages/integrations/mdx/package.json2
-rw-r--r--packages/integrations/node/package.json2
-rw-r--r--pnpm-lock.yaml58
44 files changed, 96 insertions, 108 deletions
diff --git a/.changeset/curly-experts-think.md b/.changeset/curly-experts-think.md
deleted file mode 100644
index 8696703e7..000000000
--- a/.changeset/curly-experts-think.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Improved error messages descriptions and hints to be more informative
diff --git a/.changeset/fifty-olives-end.md b/.changeset/fifty-olives-end.md
deleted file mode 100644
index 393418e66..000000000
--- a/.changeset/fifty-olives-end.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/image': patch
----
-
-Share fallback img src with source of Picture component
diff --git a/.changeset/good-ghosts-attack.md b/.changeset/good-ghosts-attack.md
deleted file mode 100644
index c4a8404b2..000000000
--- a/.changeset/good-ghosts-attack.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Allow dynamic segments in injected routes
diff --git a/.changeset/heavy-kangaroos-sin.md b/.changeset/heavy-kangaroos-sin.md
deleted file mode 100644
index 65dce57a3..000000000
--- a/.changeset/heavy-kangaroos-sin.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/mdx': patch
----
-
-Preserve code element node `data.meta` in `properties.metastring` for rehype syntax highlighters, like `rehype-pretty-code``
diff --git a/.changeset/hot-parrots-exist.md b/.changeset/hot-parrots-exist.md
deleted file mode 100644
index f7c663987..000000000
--- a/.changeset/hot-parrots-exist.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Prevent jsx throws from hanging server
diff --git a/.changeset/plenty-eyes-develop.md b/.changeset/plenty-eyes-develop.md
deleted file mode 100644
index 74073721b..000000000
--- a/.changeset/plenty-eyes-develop.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'astro': patch
----
-
-404 when not using subpath for items in public in dev
-
-Previously if using a base like `base: '/subpath/` you could load things from the root, which would break in prod. Now you must include the subpath.
diff --git a/.changeset/poor-eagles-melt.md b/.changeset/poor-eagles-melt.md
deleted file mode 100644
index ae335265b..000000000
--- a/.changeset/poor-eagles-melt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Upgrade `@astrojs/compiler` to latest
diff --git a/.changeset/spotty-planes-fix.md b/.changeset/spotty-planes-fix.md
deleted file mode 100644
index c764a4860..000000000
--- a/.changeset/spotty-planes-fix.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Update Astro language-server to 0.28.3
diff --git a/examples/basics/package.json b/examples/basics/package.json
index c8389b9b3..bafe63d14 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 640e416a0..d00d246ed 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
- "@astrojs/mdx": "^0.11.5",
+ "astro": "^1.6.6",
+ "@astrojs/mdx": "^0.11.6",
"@astrojs/rss": "^1.0.3",
"@astrojs/sitemap": "^1.0.0"
}
diff --git a/examples/component/package.json b/examples/component/package.json
index ca7887ad0..a707db3a1 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
},
"peerDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/deno/package.json b/examples/deno/package.json
index e3ce7523b..711fb406c 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
},
"devDependencies": {
"@astrojs/deno": "^2.0.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index acb5d86b9..a2da5225e 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,7 +12,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.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 014266393..191475517 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.1.2",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index bf4a72957..d22634bb3 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"lit": "^2.2.5",
"@astrojs/lit": "^1.0.0",
"@webcomponents/template-shadowroot": "^0.1.0"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 7bbae4ff2..f51605035 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 0ed034b29..e0794214f 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index f375e7d75..c01ab4386 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^1.2.2",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 58341e3e5..c551d2726 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^1.2.2"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 2b0201fe3..fce20b00b 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 9442c0aa5..2ea033ce1 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"vue": "^3.2.37",
"@astrojs/vue": "^1.2.1"
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 5e5bd8176..a4c94fcca 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -13,6 +13,6 @@
},
"dependencies": {
"@astrojs/node": "^3.0.0",
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index e96199b4d..3a9c2400b 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
},
"peerDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 2d27f7e21..e78911c36 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index f77e0150e..9a39d7023 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 523ddfb6a..52edb388a 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index d50b9459e..0d84a555b 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
"@astrojs/node": "^3.0.0",
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 205e51497..8ec447c58 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"@astrojs/markdown-remark": "^1.1.3",
"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 d58bf44b7..9be67f60b 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 64467669f..092399af9 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"preact": "^10.6.5",
"@astrojs/preact": "^1.2.0",
- "@astrojs/mdx": "^0.11.5"
+ "@astrojs/mdx": "^0.11.6"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index f242f7d4a..01d40b9b7 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 1a8176cbb..dbb4c1f48 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -11,10 +11,10 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^0.11.5",
+ "@astrojs/mdx": "^0.11.6",
"@astrojs/tailwind": "^2.1.2",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^1.6.5",
+ "astro": "^1.6.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 0a47fdd75..3b6b315d8 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": "^1.6.5",
+ "astro": "^1.6.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 c67d6447c..6d179a5b9 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^1.6.5",
+ "astro": "^1.6.6",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 3fe64f0e4..ccf091808 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,23 @@
# astro
+## 1.6.6
+
+### Patch Changes
+
+- [#5316](https://github.com/withastro/astro/pull/5316) [`a780f2595`](https://github.com/withastro/astro/commit/a780f2595db86a773be0be1fefcbd9cbab2e8fc2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Improved error messages descriptions and hints to be more informative
+
+- [#5331](https://github.com/withastro/astro/pull/5331) [`688f8e4bc`](https://github.com/withastro/astro/commit/688f8e4bc1d8a284ee3d29f6122dbdebc02310ff) Thanks [@matthewp](https://github.com/matthewp)! - Allow dynamic segments in injected routes
+
+- [#5330](https://github.com/withastro/astro/pull/5330) [`7e19e8b30`](https://github.com/withastro/astro/commit/7e19e8b30d0b411d69eb7d9c1de9dc304f084b37) Thanks [@matthewp](https://github.com/matthewp)! - Prevent jsx throws from hanging server
+
+- [#5328](https://github.com/withastro/astro/pull/5328) [`bcd0f8f8c`](https://github.com/withastro/astro/commit/bcd0f8f8c4c27d19296ec08d7bf7d8f5047d583e) Thanks [@matthewp](https://github.com/matthewp)! - 404 when not using subpath for items in public in dev
+
+ Previously if using a base like `base: '/subpath/` you could load things from the root, which would break in prod. Now you must include the subpath.
+
+- [#5339](https://github.com/withastro/astro/pull/5339) [`03a8f89d5`](https://github.com/withastro/astro/commit/03a8f89d5ff79f43f4025fda0c93fd3c85482412) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Upgrade `@astrojs/compiler` to latest
+
+- [#5327](https://github.com/withastro/astro/pull/5327) [`0dcdc6fb1`](https://github.com/withastro/astro/commit/0dcdc6fb1e6160c8a225a65c4810f565e2b673b5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update Astro language-server to 0.28.3
+
## 1.6.5
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 4f5fbfeaf..fc584e7b3 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.6.5",
+ "version": "1.6.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 66c05bba1..c97963ed3 100644
--- a/packages/integrations/cloudflare/package.json
+++ b/packages/integrations/cloudflare/package.json
@@ -37,7 +37,7 @@
"esbuild": "^0.14.42"
},
"peerDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index 966b651ef..667b1a297 100644
--- a/packages/integrations/deno/package.json
+++ b/packages/integrations/deno/package.json
@@ -32,7 +32,7 @@
"esbuild": "^0.14.43"
},
"peerDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md
index 42256f146..e934a48dc 100644
--- a/packages/integrations/image/CHANGELOG.md
+++ b/packages/integrations/image/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/image
+## 0.11.3
+
+### Patch Changes
+
+- [#5324](https://github.com/withastro/astro/pull/5324) [`dc00ca464`](https://github.com/withastro/astro/commit/dc00ca464865feccd3760b54e0ccc58dbc1e804d) Thanks [@bluwy](https://github.com/bluwy)! - Share fallback img src with source of Picture component
+
## 0.11.2
### Patch Changes
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index 5e6ee1584..26c2d8caa 100644
--- a/packages/integrations/image/package.json
+++ b/packages/integrations/image/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/image",
"description": "Load and transform images in your Astro site.",
- "version": "0.11.2",
+ "version": "0.11.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md
index 62ecd2391..1ec6bf704 100644
--- a/packages/integrations/mdx/CHANGELOG.md
+++ b/packages/integrations/mdx/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/mdx
+## 0.11.6
+
+### Patch Changes
+
+- [#5335](https://github.com/withastro/astro/pull/5335) [`dca762cf7`](https://github.com/withastro/astro/commit/dca762cf734a657d8f126fd6958892b6163a4f67) Thanks [@bluwy](https://github.com/bluwy)! - Preserve code element node `data.meta` in `properties.metastring` for rehype syntax highlighters, like `rehype-pretty-code``
+
## 0.11.5
### Patch Changes
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index 44189f4e3..41ff139ce 100644
--- a/packages/integrations/mdx/package.json
+++ b/packages/integrations/mdx/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Use MDX within Astro",
- "version": "0.11.5",
+ "version": "0.11.6",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index bcf2c2403..990d15375 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -34,7 +34,7 @@
"send": "^0.18.0"
},
"peerDependencies": {
- "astro": "^1.6.5"
+ "astro": "^1.6.6"
},
"devDependencies": {
"@types/send": "^0.17.1",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a87288669..6054af20a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -61,16 +61,16 @@ importers:
examples/basics:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
- '@astrojs/mdx': ^0.11.5
+ '@astrojs/mdx': ^0.11.6
'@astrojs/rss': ^1.0.3
'@astrojs/sitemap': ^1.0.0
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -79,14 +79,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^2.0.0
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
astro: link:../../packages/astro
devDependencies:
@@ -102,7 +102,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
- astro: ^1.6.5
+ astro: ^1.6.6
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -125,7 +125,7 @@ importers:
'@astrojs/alpinejs': ^0.1.2
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@@ -136,7 +136,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.0.0
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.6.5
+ astro: ^1.6.6
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -151,7 +151,7 @@ importers:
'@astrojs/solid-js': ^1.2.2
'@astrojs/svelte': ^1.0.2
'@astrojs/vue': ^1.2.1
- astro: ^1.6.5
+ astro: ^1.6.6
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -176,7 +176,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@preact/signals': ^1.1.0
- astro: ^1.6.5
+ astro: ^1.6.6
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -189,7 +189,7 @@ importers:
'@astrojs/react': ^1.2.2
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^1.6.5
+ astro: ^1.6.6
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -203,7 +203,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^1.2.2
- astro: ^1.6.5
+ astro: ^1.6.6
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -213,7 +213,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^1.0.2
- astro: ^1.6.5
+ astro: ^1.6.6
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -223,7 +223,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^1.2.1
- astro: ^1.6.5
+ astro: ^1.6.6
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -233,32 +233,32 @@ importers:
examples/hackernews:
specifiers:
'@astrojs/node': ^3.0.0
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
astro: link:../../packages/astro
@@ -266,7 +266,7 @@ importers:
specifiers:
'@astrojs/node': ^3.0.0
'@astrojs/svelte': ^1.0.2
- astro: ^1.6.5
+ astro: ^1.6.6
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -283,7 +283,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^1.1.3
- astro: ^1.6.5
+ astro: ^1.6.6
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -300,15 +300,15 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
dependencies:
astro: link:../../packages/astro
examples/with-mdx:
specifiers:
- '@astrojs/mdx': ^0.11.5
+ '@astrojs/mdx': ^0.11.6
'@astrojs/preact': ^1.2.0
- astro: ^1.6.5
+ astro: ^1.6.6
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -320,7 +320,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@nanostores/preact': ^0.1.3
- astro: ^1.6.5
+ astro: ^1.6.6
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -332,10 +332,10 @@ importers:
examples/with-tailwindcss:
specifiers:
- '@astrojs/mdx': ^0.11.5
+ '@astrojs/mdx': ^0.11.6
'@astrojs/tailwind': ^2.1.2
'@types/canvas-confetti': ^1.4.3
- astro: ^1.6.5
+ astro: ^1.6.6
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -352,7 +352,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -362,7 +362,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^1.6.5
+ astro: ^1.6.6
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro