summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/blue-rabbits-hear.md9
-rw-r--r--.changeset/purple-tips-flash.md5
-rw-r--r--.changeset/sixty-apricots-drum.md5
-rw-r--r--.changeset/sixty-chicken-obey.md5
-rw-r--r--.changeset/tough-doors-shop.md5
-rw-r--r--.changeset/violet-buckets-repeat.md5
-rw-r--r--.changeset/wild-falcons-sparkle.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json2
-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.json4
-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.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.md12
-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/node/CHANGELOG.md17
-rw-r--r--packages/integrations/node/package.json4
-rw-r--r--pnpm-lock.yaml56
42 files changed, 99 insertions, 103 deletions
diff --git a/.changeset/blue-rabbits-hear.md b/.changeset/blue-rabbits-hear.md
deleted file mode 100644
index dfe33a863..000000000
--- a/.changeset/blue-rabbits-hear.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'@astrojs/node': minor
----
-
-Sometimes Astro sends a ReadableStream as a response and it raise an error **TypeError: body is not async iterable.**
-
-I added a function to get a response iterator from different response types (sourced from apollo-client).
-
-With this, node adapter can handle all the Astro response types.
diff --git a/.changeset/purple-tips-flash.md b/.changeset/purple-tips-flash.md
deleted file mode 100644
index 9d706cfbc..000000000
--- a/.changeset/purple-tips-flash.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix regression with loading .ts in .mjs config
diff --git a/.changeset/sixty-apricots-drum.md b/.changeset/sixty-apricots-drum.md
deleted file mode 100644
index 2fc407ee6..000000000
--- a/.changeset/sixty-apricots-drum.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix JSX tagging for anonymous higher-order components default export
diff --git a/.changeset/sixty-chicken-obey.md b/.changeset/sixty-chicken-obey.md
deleted file mode 100644
index be19baace..000000000
--- a/.changeset/sixty-chicken-obey.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix preview --host in Node.js 18
diff --git a/.changeset/tough-doors-shop.md b/.changeset/tough-doors-shop.md
deleted file mode 100644
index 738561466..000000000
--- a/.changeset/tough-doors-shop.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/image': patch
----
-
-Log error if failed to fetch remote image
diff --git a/.changeset/violet-buckets-repeat.md b/.changeset/violet-buckets-repeat.md
deleted file mode 100644
index ed68113e1..000000000
--- a/.changeset/violet-buckets-repeat.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': minor
----
-
-Allow HOST env variable to be provided at runtime
diff --git a/.changeset/wild-falcons-sparkle.md b/.changeset/wild-falcons-sparkle.md
deleted file mode 100644
index a6ad3290b..000000000
--- a/.changeset/wild-falcons-sparkle.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Prevent dev from crashing when there are errors in template
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 5350599db..63ff8fba8 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 3d2c691a4..760c58d59 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"@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 1ca88c10d..c0f10899f 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
},
"peerDependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/deno/package.json b/examples/deno/package.json
index 277980f40..262913c99 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
},
"devDependencies": {
"@astrojs/deno": "^2.0.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 34de13c2a..e344e8342 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,7 +12,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 1d0bcb39a..c8a9ffe09 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 79e2748d7..9c8aaa686 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 2fa39841a..3f62c73d8 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 e5227af56..81f94d5a1 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 38dfc5296..729dea236 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 9f7e96462..fc5611874 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^1.2.3"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 0ab907cbc..ff1017f11 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.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index f61a1fae3..df9b0ef9e 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"vue": "^3.2.37",
"@astrojs/vue": "^1.2.1"
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 465911695..7e0871f01 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -12,7 +12,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/node": "^3.0.0",
- "astro": "^1.6.9"
+ "@astrojs/node": "^3.1.0",
+ "astro": "^1.6.10"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 42faf8882..a5fe45d9f 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
},
"peerDependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 340692aeb..d8767a83a 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 37b48986f..8e34afa28 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.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index eabf77edc..6c04982ec 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 6c140327c..c2d45a46f 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,10 +12,10 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
- "@astrojs/node": "^3.0.0",
+ "@astrojs/node": "^3.1.0",
"concurrently": "^7.2.1",
"unocss": "^0.15.6",
"vite-imagetools": "^4.0.4"
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 0adc4e8a6..e1e9a2a70 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.9",
+ "astro": "^1.6.10",
"@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 3774dd8a4..105eebfb5 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.9"
+ "astro": "^1.6.10"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index bf8f02b8c..ec2c4e1eb 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"preact": "^10.6.5",
"@astrojs/preact": "^1.2.0",
"@astrojs/mdx": "^0.11.6"
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index ae1f4db90..3f096b3d9 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 2b588fb86..bccbf4926 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^0.11.6",
"@astrojs/tailwind": "^2.1.2",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"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 3ba3432f0..c657833c6 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.9",
+ "astro": "^1.6.10",
"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 f5156e95b..b52431cba 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^1.6.9",
+ "astro": "^1.6.10",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 3241523bc..87cfd54b4 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,17 @@
# astro
+## 1.6.10
+
+### Patch Changes
+
+- [#5431](https://github.com/withastro/astro/pull/5431) [`1ab505855`](https://github.com/withastro/astro/commit/1ab505855f9942659e3d23cb1ac668f04b98889d) Thanks [@matthewp](https://github.com/matthewp)! - Fix regression with loading .ts in .mjs config
+
+- [#5426](https://github.com/withastro/astro/pull/5426) [`ff35b4759`](https://github.com/withastro/astro/commit/ff35b4759bd0fecfee6c99bf510c2e32d2574992) Thanks [@bluwy](https://github.com/bluwy)! - Fix JSX tagging for anonymous higher-order components default export
+
+- [#5430](https://github.com/withastro/astro/pull/5430) [`b22ba1c03`](https://github.com/withastro/astro/commit/b22ba1c03a3e384dad569feb38fa34ecf7ec3b93) Thanks [@bluwy](https://github.com/bluwy)! - Fix preview --host in Node.js 18
+
+- [#5417](https://github.com/withastro/astro/pull/5417) [`a9f7ff966`](https://github.com/withastro/astro/commit/a9f7ff96676a40b78e22379edc8eb9ce60a29fb8) Thanks [@matthewp](https://github.com/matthewp)! - Prevent dev from crashing when there are errors in template
+
## 1.6.9
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index f2ab90444..e42d13db4 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.6.9",
+ "version": "1.6.10",
"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 3874bd544..82110c7ef 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.9"
+ "astro": "^1.6.10"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index 39fba145c..df55ad6ba 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.9"
+ "astro": "^1.6.10"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md
index aa328f551..8d7ea3d5c 100644
--- a/packages/integrations/image/CHANGELOG.md
+++ b/packages/integrations/image/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/image
+## 0.11.6
+
+### Patch Changes
+
+- [#5393](https://github.com/withastro/astro/pull/5393) [`e2fb0c4ff`](https://github.com/withastro/astro/commit/e2fb0c4ff29d27bbd39193127c64fd4f312129e3) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Log error if failed to fetch remote image
+
## 0.11.5
### Patch Changes
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index 17043044e..71c9498cc 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.5",
+ "version": "0.11.6",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index f3f3dfbc6..863df9341 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,22 @@
# @astrojs/node
+## 3.1.0
+
+### Minor Changes
+
+- [#5418](https://github.com/withastro/astro/pull/5418) [`aa16b6ceb`](https://github.com/withastro/astro/commit/aa16b6cebc08e0a10a17024d31ee7d2319258a34) Thanks [@jbanety](https://github.com/jbanety)! - Sometimes Astro sends a ReadableStream as a response and it raise an error **TypeError: body is not async iterable.**
+
+ I added a function to get a response iterator from different response types (sourced from apollo-client).
+
+ With this, node adapter can handle all the Astro response types.
+
+- [#5421](https://github.com/withastro/astro/pull/5421) [`12236dbc0`](https://github.com/withastro/astro/commit/12236dbc06e1e43618b61d180020a67cb31499f8) Thanks [@Scttpr](https://github.com/Scttpr)! - Allow HOST env variable to be provided at runtime
+
+### Patch Changes
+
+- Updated dependencies [[`1ab505855`](https://github.com/withastro/astro/commit/1ab505855f9942659e3d23cb1ac668f04b98889d), [`ff35b4759`](https://github.com/withastro/astro/commit/ff35b4759bd0fecfee6c99bf510c2e32d2574992), [`b22ba1c03`](https://github.com/withastro/astro/commit/b22ba1c03a3e384dad569feb38fa34ecf7ec3b93), [`a9f7ff966`](https://github.com/withastro/astro/commit/a9f7ff96676a40b78e22379edc8eb9ce60a29fb8)]:
+ - astro@1.6.10
+
## 3.0.0
### Major Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index c236937a7..be57cd804 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/node",
"description": "Deploy your site to a Node.js server",
- "version": "3.0.0",
+ "version": "3.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@@ -34,7 +34,7 @@
"send": "^0.18.0"
},
"peerDependencies": {
- "astro": "^1.6.9"
+ "astro": "^1.6.10"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index aae9d0060..c372bdbd8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -61,7 +61,7 @@ importers:
examples/basics:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
astro: link:../../packages/astro
@@ -70,7 +70,7 @@ importers:
'@astrojs/mdx': ^0.11.6
'@astrojs/rss': ^1.0.3
'@astrojs/sitemap': ^1.0.0
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -79,14 +79,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^2.0.0
- astro: ^1.6.9
+ astro: ^1.6.10
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.9
+ astro: ^1.6.10
html-escaper: ^3.0.3
preact: ^10.7.3
react: ^18.1.0
@@ -128,7 +128,7 @@ importers:
'@astrojs/alpinejs': ^0.1.2
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@@ -139,7 +139,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.0.0
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.6.9
+ astro: ^1.6.10
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -154,7 +154,7 @@ importers:
'@astrojs/solid-js': ^1.2.3
'@astrojs/svelte': ^1.0.2
'@astrojs/vue': ^1.2.1
- astro: ^1.6.9
+ astro: ^1.6.10
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -179,7 +179,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@preact/signals': ^1.1.0
- astro: ^1.6.9
+ astro: ^1.6.10
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -192,7 +192,7 @@ importers:
'@astrojs/react': ^1.2.2
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^1.6.9
+ astro: ^1.6.10
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -206,7 +206,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^1.2.3
- astro: ^1.6.9
+ astro: ^1.6.10
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -216,7 +216,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^1.0.2
- astro: ^1.6.9
+ astro: ^1.6.10
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -226,7 +226,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^1.2.1
- astro: ^1.6.9
+ astro: ^1.6.10
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -235,41 +235,41 @@ importers:
examples/hackernews:
specifiers:
- '@astrojs/node': ^3.0.0
- astro: ^1.6.9
+ '@astrojs/node': ^3.1.0
+ astro: ^1.6.10
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
astro: link:../../packages/astro
examples/ssr:
specifiers:
- '@astrojs/node': ^3.0.0
+ '@astrojs/node': ^3.1.0
'@astrojs/svelte': ^1.0.2
- astro: ^1.6.9
+ astro: ^1.6.10
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -286,7 +286,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^1.1.3
- astro: ^1.6.9
+ astro: ^1.6.10
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -303,7 +303,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
dependencies:
astro: link:../../packages/astro
@@ -311,7 +311,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.11.6
'@astrojs/preact': ^1.2.0
- astro: ^1.6.9
+ astro: ^1.6.10
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -323,7 +323,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@nanostores/preact': ^0.1.3
- astro: ^1.6.9
+ astro: ^1.6.10
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -338,7 +338,7 @@ importers:
'@astrojs/mdx': ^0.11.6
'@astrojs/tailwind': ^2.1.2
'@types/canvas-confetti': ^1.4.3
- astro: ^1.6.9
+ astro: ^1.6.10
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -355,7 +355,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -365,7 +365,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^1.6.9
+ astro: ^1.6.10
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro