summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/afraid-vans-wonder.md5
-rw-r--r--.changeset/big-rice-rest.md13
-rw-r--r--.changeset/smart-wombats-peel.md5
-rw-r--r--.changeset/tender-hounds-juggle.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.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.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-markdoc/package.json4
-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.md22
-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/markdoc/CHANGELOG.md19
-rw-r--r--packages/integrations/markdoc/package.json2
-rw-r--r--packages/integrations/netlify/package.json2
-rw-r--r--packages/integrations/node/package.json2
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/integrations/tailwind/package.json2
-rw-r--r--packages/integrations/vercel/package.json2
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--pnpm-lock.yaml56
45 files changed, 108 insertions, 95 deletions
diff --git a/.changeset/afraid-vans-wonder.md b/.changeset/afraid-vans-wonder.md
deleted file mode 100644
index 1d54cb461..000000000
--- a/.changeset/afraid-vans-wonder.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Updated to fix the Node SSR fails on POST with Express JSON middleware
diff --git a/.changeset/big-rice-rest.md b/.changeset/big-rice-rest.md
deleted file mode 100644
index 2b7efbaa5..000000000
--- a/.changeset/big-rice-rest.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-'@astrojs/markdoc': patch
-'astro': patch
----
-
-Support automatic image optimization for Markdoc images when using `experimental.assets`. You can [follow our Assets guide](https://docs.astro.build/en/guides/assets/#enabling-assets-in-your-project) to enable this feature in your project. Then, start using relative or aliased image sources in your Markdoc files for automatic optimization:
-
-```md
-<!--Relative paths-->
-![The Milky Way Galaxy](../assets/galaxy.jpg)
-<!--Or configured aliases-->
-![Houston smiling and looking cute](~/assets/houston-smiling.jpg)
-```
diff --git a/.changeset/smart-wombats-peel.md b/.changeset/smart-wombats-peel.md
deleted file mode 100644
index 6e5715b3b..000000000
--- a/.changeset/smart-wombats-peel.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix --mode flag for builds
diff --git a/.changeset/tender-hounds-juggle.md b/.changeset/tender-hounds-juggle.md
deleted file mode 100644
index 8ea518f0d..000000000
--- a/.changeset/tender-hounds-juggle.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Avoid implicit head injection when a head is in the tree
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 8e7b55761..fdee84fbe 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 664f2cb25..4ae332117 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"@astrojs/mdx": "^0.18.2",
"@astrojs/rss": "^2.3.1",
"@astrojs/sitemap": "^1.2.1"
diff --git a/examples/component/package.json b/examples/component/package.json
index 60102ec32..51d48cd5a 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/deno/package.json b/examples/deno/package.json
index 1f065542a..1bb1ef552 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
},
"devDependencies": {
"@astrojs/deno": "^4.1.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index ec1fead4e..3d8030267 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"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 1c522b00f..2c51e7c56 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.2.1",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index ddc0a7a70..a0392efba 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"lit": "^2.2.5",
"@astrojs/lit": "^1.3.0",
"@webcomponents/template-shadowroot": "^0.1.0"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index af773261e..39d0b31ae 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"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 2545a6c2d..8f6d54a78 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"preact": "^10.7.3",
"@astrojs/preact": "^2.1.0",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 7d5291f6b..0ba04b740 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^2.1.0",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 9210458d8..af3e32197 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^2.1.0"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index ee614783b..ca6761c8f 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.1.0",
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 40dc78e1e..5916f2807 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"vue": "^3.2.37",
"@astrojs/vue": "^2.1.0"
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 129c05a42..e1dfbfa64 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^5.1.0",
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 23174c463..370647933 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index aa6d41d2c..216d0777f 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index d218f683a..46d15c8c7 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index ffb9ffcab..e8824e38b 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index a23acc3f1..1050654ae 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.1.0",
"@astrojs/node": "^5.1.0",
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index face74da0..9ca562fa3 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/markdoc": "^0.0.4",
- "astro": "^2.1.6"
+ "@astrojs/markdoc": "^0.0.5",
+ "astro": "^2.1.7"
}
}
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index a5ae1c3b9..9d956717a 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"@astrojs/markdown-remark": "^2.1.2",
"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 3f8c76951..78ac2f1d9 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6"
+ "astro": "^2.1.7"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index af1a82731..f740d624c 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"preact": "^10.6.5",
"@astrojs/preact": "^2.1.0",
"@astrojs/mdx": "^0.18.2"
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 4f0ef122d..145236caa 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"preact": "^10.7.3",
"@astrojs/preact": "^2.1.0",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index c6490440c..e35300d0e 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^0.18.2",
"@astrojs/tailwind": "^3.1.1",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"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 a516aaefe..9ad0e4eb3 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.1.6",
+ "astro": "^2.1.7",
"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 9efe304bf..72379b531 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^2.1.6",
+ "astro": "^2.1.7",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 01bbda984..8dd5e4fde 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,27 @@
# astro
+## 2.1.7
+
+### Patch Changes
+
+- [#6192](https://github.com/withastro/astro/pull/6192) [`b7194103e`](https://github.com/withastro/astro/commit/b7194103e39267bf59dcd6ba00f522e424219d16) Thanks [@erg208](https://github.com/erg208)! - Updated to fix the Node SSR fails on POST with Express JSON middleware
+
+- [#6630](https://github.com/withastro/astro/pull/6630) [`cfcf2e2ff`](https://github.com/withastro/astro/commit/cfcf2e2ffdaa68ace5c84329c05b83559a29d638) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support automatic image optimization for Markdoc images when using `experimental.assets`. You can [follow our Assets guide](https://docs.astro.build/en/guides/assets/#enabling-assets-in-your-project) to enable this feature in your project. Then, start using relative or aliased image sources in your Markdoc files for automatic optimization:
+
+ ```md
+ <!--Relative paths-->
+
+ ![The Milky Way Galaxy](../assets/galaxy.jpg)
+
+ <!--Or configured aliases-->
+
+ ![Houston smiling and looking cute](~/assets/houston-smiling.jpg)
+ ```
+
+- [#6647](https://github.com/withastro/astro/pull/6647) [`45da39a86`](https://github.com/withastro/astro/commit/45da39a8642d64eb318840b18dfc2b5ccc6561bc) Thanks [@bluwy](https://github.com/bluwy)! - Fix --mode flag for builds
+
+- [#6638](https://github.com/withastro/astro/pull/6638) [`7daef9a29`](https://github.com/withastro/astro/commit/7daef9a2993b5d457f3d243a1ebfd1dd383b3327) Thanks [@matthewp](https://github.com/matthewp)! - Avoid implicit head injection when a head is in the tree
+
## 2.1.6
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 246e360d3..73cc79c18 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "2.1.6",
+ "version": "2.1.7",
"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 33f5c6579..e97ba7140 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.1.6"
+ "astro": "workspace:^2.1.7"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index 31239a596..6f72bc614 100644
--- a/packages/integrations/deno/package.json
+++ b/packages/integrations/deno/package.json
@@ -33,7 +33,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6"
+ "astro": "workspace:^2.1.7"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index 79e7eb364..b4d80a83f 100644
--- a/packages/integrations/image/package.json
+++ b/packages/integrations/image/package.json
@@ -63,7 +63,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6",
+ "astro": "workspace:^2.1.7",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {
diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md
index 80ef9ae29..f73a9ecc4 100644
--- a/packages/integrations/markdoc/CHANGELOG.md
+++ b/packages/integrations/markdoc/CHANGELOG.md
@@ -1,5 +1,24 @@
# @astrojs/markdoc
+## 0.0.5
+
+### Patch Changes
+
+- [#6630](https://github.com/withastro/astro/pull/6630) [`cfcf2e2ff`](https://github.com/withastro/astro/commit/cfcf2e2ffdaa68ace5c84329c05b83559a29d638) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support automatic image optimization for Markdoc images when using `experimental.assets`. You can [follow our Assets guide](https://docs.astro.build/en/guides/assets/#enabling-assets-in-your-project) to enable this feature in your project. Then, start using relative or aliased image sources in your Markdoc files for automatic optimization:
+
+ ```md
+ <!--Relative paths-->
+
+ ![The Milky Way Galaxy](../assets/galaxy.jpg)
+
+ <!--Or configured aliases-->
+
+ ![Houston smiling and looking cute](~/assets/houston-smiling.jpg)
+ ```
+
+- Updated dependencies [[`b7194103e`](https://github.com/withastro/astro/commit/b7194103e39267bf59dcd6ba00f522e424219d16), [`cfcf2e2ff`](https://github.com/withastro/astro/commit/cfcf2e2ffdaa68ace5c84329c05b83559a29d638), [`45da39a86`](https://github.com/withastro/astro/commit/45da39a8642d64eb318840b18dfc2b5ccc6561bc), [`7daef9a29`](https://github.com/withastro/astro/commit/7daef9a2993b5d457f3d243a1ebfd1dd383b3327)]:
+ - astro@2.1.7
+
## 0.0.4
### Patch Changes
diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json
index 70c0eea99..67b311c65 100644
--- a/packages/integrations/markdoc/package.json
+++ b/packages/integrations/markdoc/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc pages in your Astro site",
- "version": "0.0.4",
+ "version": "0.0.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 865249e54..35538fa26 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.1.6"
+ "astro": "workspace:^2.1.7"
},
"devDependencies": {
"@netlify/edge-handler-types": "^0.34.1",
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index a9b041263..2f6893e39 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -35,7 +35,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6"
+ "astro": "workspace:^2.1.7"
},
"devDependencies": {
"@types/send": "^0.17.1",
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index e55093bad..8ddece204 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -43,7 +43,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6",
+ "astro": "workspace:^2.1.7",
"svelte": "^3.54.0"
},
"engines": {
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 18a956aa5..cfb94ac16 100644
--- a/packages/integrations/tailwind/package.json
+++ b/packages/integrations/tailwind/package.json
@@ -40,7 +40,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6",
+ "astro": "workspace:^2.1.7",
"tailwindcss": "^3.0.24"
},
"pnpm": {
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index a2c607b93..4ead67050 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -53,7 +53,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6"
+ "astro": "workspace:^2.1.7"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index 883a99fb4..b50712619 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -50,7 +50,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
- "astro": "workspace:^2.1.6",
+ "astro": "workspace:^2.1.7",
"vue": "^3.2.30"
},
"engines": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 63f82fce0..046e984bc 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -104,7 +104,7 @@ importers:
examples/basics:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
astro: link:../../packages/astro
@@ -113,7 +113,7 @@ importers:
'@astrojs/mdx': ^0.18.2
'@astrojs/rss': ^2.3.1
'@astrojs/sitemap': ^1.2.1
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -122,14 +122,14 @@ importers:
examples/component:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^4.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
astro: link:../../packages/astro
devDependencies:
@@ -145,7 +145,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
- astro: ^2.1.6
+ astro: ^2.1.7
html-escaper: ^3.0.3
preact: ^10.7.3
react: ^18.1.0
@@ -171,7 +171,7 @@ importers:
'@astrojs/alpinejs': ^0.2.1
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@@ -182,7 +182,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.3.0
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -197,7 +197,7 @@ importers:
'@astrojs/solid-js': ^2.1.0
'@astrojs/svelte': ^2.1.0
'@astrojs/vue': ^2.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -222,7 +222,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.1.0
'@preact/signals': ^1.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -235,7 +235,7 @@ importers:
'@astrojs/react': ^2.1.0
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^2.1.6
+ astro: ^2.1.7
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -249,7 +249,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^2.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -259,7 +259,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^2.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -269,7 +269,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^2.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -279,32 +279,32 @@ importers:
examples/hackernews:
specifiers:
'@astrojs/node': ^5.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
astro: link:../../packages/astro
@@ -312,7 +312,7 @@ importers:
specifiers:
'@astrojs/node': ^5.1.0
'@astrojs/svelte': ^2.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -328,8 +328,8 @@ importers:
examples/with-markdoc:
specifiers:
- '@astrojs/markdoc': ^0.0.4
- astro: ^2.1.6
+ '@astrojs/markdoc': ^0.0.5
+ astro: ^2.1.7
dependencies:
'@astrojs/markdoc': link:../../packages/integrations/markdoc
astro: link:../../packages/astro
@@ -337,7 +337,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^2.1.2
- astro: ^2.1.6
+ astro: ^2.1.7
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -354,7 +354,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
dependencies:
astro: link:../../packages/astro
@@ -362,7 +362,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.18.2
'@astrojs/preact': ^2.1.0
- astro: ^2.1.6
+ astro: ^2.1.7
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -374,7 +374,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.1.0
'@nanostores/preact': ^0.1.3
- astro: ^2.1.6
+ astro: ^2.1.7
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -389,7 +389,7 @@ importers:
'@astrojs/mdx': ^0.18.2
'@astrojs/tailwind': ^3.1.1
'@types/canvas-confetti': ^1.4.3
- astro: ^2.1.6
+ astro: ^2.1.7
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -406,7 +406,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -416,7 +416,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^2.1.6
+ astro: ^2.1.7
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro