summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/cuddly-suits-hunt.md5
-rw-r--r--.changeset/itchy-buttons-wait.md5
-rw-r--r--.changeset/long-buckets-end.md5
-rw-r--r--.changeset/mighty-peas-reply.md5
-rw-r--r--.changeset/sharp-flowers-ring.md5
-rw-r--r--.changeset/slow-rabbits-care.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/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.json2
-rw-r--r--examples/middleware/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/starlog/package.json2
-rw-r--r--examples/view-transitions/package.json4
-rw-r--r--examples/with-markdoc/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-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md10
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/db/CHANGELOG.md8
-rw-r--r--packages/db/package.json2
-rw-r--r--packages/integrations/node/CHANGELOG.md6
-rw-r--r--packages/integrations/node/package.json2
-rw-r--r--pnpm-lock.yaml94
40 files changed, 121 insertions, 95 deletions
diff --git a/.changeset/cuddly-suits-hunt.md b/.changeset/cuddly-suits-hunt.md
deleted file mode 100644
index 858c6529c..000000000
--- a/.changeset/cuddly-suits-hunt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"astro": patch
----
-
-Adds a helpful error message that will be shown when an endpoint does not return a `Response`.
diff --git a/.changeset/itchy-buttons-wait.md b/.changeset/itchy-buttons-wait.md
deleted file mode 100644
index 7f34b586a..000000000
--- a/.changeset/itchy-buttons-wait.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"astro": patch
----
-
-Fixes an issue with generating JSON schemas when the schema is a function
diff --git a/.changeset/long-buckets-end.md b/.changeset/long-buckets-end.md
deleted file mode 100644
index efeee9af9..000000000
--- a/.changeset/long-buckets-end.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/db": patch
----
-
-Fetch new app token when previous has expired
diff --git a/.changeset/mighty-peas-reply.md b/.changeset/mighty-peas-reply.md
deleted file mode 100644
index 408b43580..000000000
--- a/.changeset/mighty-peas-reply.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/db": patch
----
-
-Fix type error in db/seed.ts file before type generation is run.
diff --git a/.changeset/sharp-flowers-ring.md b/.changeset/sharp-flowers-ring.md
deleted file mode 100644
index c1a5891f3..000000000
--- a/.changeset/sharp-flowers-ring.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/node": patch
----
-
-Prevents crashes caused by rejections of offshoot promises.
diff --git a/.changeset/slow-rabbits-care.md b/.changeset/slow-rabbits-care.md
deleted file mode 100644
index c7e64bd33..000000000
--- a/.changeset/slow-rabbits-care.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"astro": patch
----
-
-Fixes an issue where multiple rendering errors resulted in a crash of the SSR app server.
diff --git a/examples/basics/package.json b/examples/basics/package.json
index d0cf4ef6d..4bb9230ec 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 2e9abc223..669b93388 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -14,6 +14,6 @@
"@astrojs/mdx": "^2.2.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.1",
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 60a0772d9..20c1404f8 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index d451d83a6..1cf43271e 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -14,6 +14,6 @@
"@astrojs/alpinejs": "^0.4.0",
"@types/alpinejs": "^3.13.5",
"alpinejs": "^3.13.3",
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 4eaa61d3c..fce7ca251 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/lit": "^4.0.1",
"@webcomponents/template-shadowroot": "^0.2.1",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"lit": "^3.1.2"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index dfb5f9239..0404adccc 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -18,7 +18,7 @@
"@astrojs/vue": "^4.0.9",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"preact": "^10.19.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 7e005d06f..451898de9 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/preact": "^3.1.1",
"@preact/signals": "^1.2.1",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"preact": "^10.19.2"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index c966e5362..d3dc4aefc 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -14,7 +14,7 @@
"@astrojs/react": "^3.1.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 2b23ae88d..e85820f74 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^4.0.1",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"solid-js": "^1.8.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index bff1b37a9..be4adffd4 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/svelte": "^5.2.0",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"svelte": "^4.2.5"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 81be9e0fc..08fe1b7f6 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/vue": "^4.0.9",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"vue": "^3.3.8"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index a3490ba74..fba1022ba 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/node": "^8.2.3",
- "astro": "^4.5.5"
+ "@astrojs/node": "^8.2.4",
+ "astro": "^4.5.6"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 1c8f5edc5..d6a7f5a09 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/middleware/package.json b/examples/middleware/package.json
index 75e6cfeab..f462f4f69 100644
--- a/examples/middleware/package.json
+++ b/examples/middleware/package.json
@@ -12,8 +12,8 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "@astrojs/node": "^8.2.3",
- "astro": "^4.5.5",
+ "@astrojs/node": "^8.2.4",
+ "astro": "^4.5.6",
"html-minifier": "^4.0.0"
},
"devDependencies": {
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index e7131f1e6..e96d7baba 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 8efdb6c13..4d1a4a54b 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 3075bb61a..5b9dd746d 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 11783b255..30bcd81a3 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,9 +12,9 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "@astrojs/node": "^8.2.3",
+ "@astrojs/node": "^8.2.4",
"@astrojs/svelte": "^5.2.0",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"svelte": "^4.2.5"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 52cf6237c..2bdd3d7e6 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"sass": "^1.69.5",
"sharp": "^0.32.6"
}
diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json
index 72469b9ab..7ecc40a92 100644
--- a/examples/view-transitions/package.json
+++ b/examples/view-transitions/package.json
@@ -11,7 +11,7 @@
},
"devDependencies": {
"@astrojs/tailwind": "^5.1.0",
- "@astrojs/node": "^8.2.3",
- "astro": "^4.5.5"
+ "@astrojs/node": "^8.2.4",
+ "astro": "^4.5.6"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index d776dfa31..b756f0ba9 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.9.2",
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 903c499dd..fef68b52c 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/markdown-remark": "^4.3.0",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"hast-util-select": "^6.0.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index 0e6511450..8b5308e4e 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.5.5"
+ "astro": "^4.5.6"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 1116c4e67..71f4cc049 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/mdx": "^2.2.0",
"@astrojs/preact": "^3.1.1",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"preact": "^10.19.2"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index f9fce33e5..0f4d0dcf3 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/preact": "^3.1.1",
"@nanostores/preact": "^0.5.0",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"nanostores": "^0.9.5",
"preact": "^10.19.2"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 61df00061..3c2c99022 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^2.2.0",
"@astrojs/tailwind": "^5.1.0",
"@types/canvas-confetti": "^1.6.3",
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"autoprefixer": "^10.4.15",
"canvas-confetti": "^1.9.1",
"postcss": "^8.4.28",
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 3ce014ec1..f89e2822b 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^4.5.5",
+ "astro": "^4.5.6",
"vitest": "^1.3.1"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index de26735fc..5deda2278 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,15 @@
# astro
+## 4.5.6
+
+### Patch Changes
+
+- [#10455](https://github.com/withastro/astro/pull/10455) [`c12666166db724915e42e37a048483c99f88e6d9`](https://github.com/withastro/astro/commit/c12666166db724915e42e37a048483c99f88e6d9) Thanks [@lilnasy](https://github.com/lilnasy)! - Adds a helpful error message that will be shown when an endpoint does not return a `Response`.
+
+- [#10426](https://github.com/withastro/astro/pull/10426) [`6a9a35ee15069541c3144012385366a3c689240a`](https://github.com/withastro/astro/commit/6a9a35ee15069541c3144012385366a3c689240a) Thanks [@markgaze](https://github.com/markgaze)! - Fixes an issue with generating JSON schemas when the schema is a function
+
+- [#10448](https://github.com/withastro/astro/pull/10448) [`fcece3658697248ab58f77b3d4a8b14d362f3c47`](https://github.com/withastro/astro/commit/fcece3658697248ab58f77b3d4a8b14d362f3c47) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where multiple rendering errors resulted in a crash of the SSR app server.
+
## 4.5.5
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 6c03b2fad..174ce33a0 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "4.5.5",
+ "version": "4.5.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/db/CHANGELOG.md b/packages/db/CHANGELOG.md
index c79c11eed..33f44bae1 100644
--- a/packages/db/CHANGELOG.md
+++ b/packages/db/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/db
+## 0.8.7
+
+### Patch Changes
+
+- [#10435](https://github.com/withastro/astro/pull/10435) [`37a485b4d1d4b7e60eee2067ffd86d0eea4f03e8`](https://github.com/withastro/astro/commit/37a485b4d1d4b7e60eee2067ffd86d0eea4f03e8) Thanks [@matthewp](https://github.com/matthewp)! - Fetch new app token when previous has expired
+
+- [#10457](https://github.com/withastro/astro/pull/10457) [`219c49473fe44d8df2b69444b2dce0f5bc971655`](https://github.com/withastro/astro/commit/219c49473fe44d8df2b69444b2dce0f5bc971655) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix type error in db/seed.ts file before type generation is run.
+
## 0.8.6
### Patch Changes
diff --git a/packages/db/package.json b/packages/db/package.json
index 90a2b67e2..511747948 100644
--- a/packages/db/package.json
+++ b/packages/db/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/db",
- "version": "0.8.6",
+ "version": "0.8.7",
"description": "",
"license": "MIT",
"type": "module",
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 5d4f27635..f70e24848 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/node
+## 8.2.4
+
+### Patch Changes
+
+- [#10454](https://github.com/withastro/astro/pull/10454) [`83f9105cd50e2756d02ca2be73ab84f9d582d3f8`](https://github.com/withastro/astro/commit/83f9105cd50e2756d02ca2be73ab84f9d582d3f8) Thanks [@lilnasy](https://github.com/lilnasy)! - Prevents crashes caused by rejections of offshoot promises.
+
## 8.2.3
### Patch Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 0f9d55cc7..2179bf363 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": "8.2.3",
+ "version": "8.2.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6ed2fefc1..b3d7ce44a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -134,7 +134,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/blog:
@@ -149,13 +149,13 @@ importers:
specifier: ^3.1.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/framework-alpine:
@@ -170,7 +170,7 @@ importers:
specifier: ^3.13.3
version: 3.13.7
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/framework-lit:
@@ -182,7 +182,7 @@ importers:
specifier: ^0.2.1
version: 0.2.1
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
lit:
specifier: ^3.1.2
@@ -212,7 +212,7 @@ importers:
specifier: ^18.2.15
version: 18.2.22
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
preact:
specifier: ^10.19.2
@@ -242,7 +242,7 @@ importers:
specifier: ^1.2.1
version: 1.2.1(preact@10.19.6)
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
preact:
specifier: ^10.19.2
@@ -260,7 +260,7 @@ importers:
specifier: ^18.2.15
version: 18.2.22
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
react:
specifier: ^18.2.0
@@ -275,7 +275,7 @@ importers:
specifier: ^4.0.1
version: link:../../packages/integrations/solid
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
solid-js:
specifier: ^1.8.5
@@ -287,7 +287,7 @@ importers:
specifier: ^5.2.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
svelte:
specifier: ^4.2.5
@@ -299,7 +299,7 @@ importers:
specifier: ^4.0.9
version: link:../../packages/integrations/vue
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
vue:
specifier: ^3.3.8
@@ -308,25 +308,25 @@ importers:
examples/hackernews:
dependencies:
'@astrojs/node':
- specifier: ^8.2.3
+ specifier: ^8.2.4
version: link:../../packages/integrations/node
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/middleware:
dependencies:
'@astrojs/node':
- specifier: ^8.2.3
+ specifier: ^8.2.4
version: link:../../packages/integrations/node
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
html-minifier:
specifier: ^4.0.0
@@ -339,31 +339,31 @@ importers:
examples/minimal:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/non-html-pages:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/ssr:
dependencies:
'@astrojs/node':
- specifier: ^8.2.3
+ specifier: ^8.2.4
version: link:../../packages/integrations/node
'@astrojs/svelte':
specifier: ^5.2.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
svelte:
specifier: ^4.2.5
@@ -372,7 +372,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
sass:
specifier: ^1.69.5
@@ -384,13 +384,13 @@ importers:
examples/view-transitions:
devDependencies:
'@astrojs/node':
- specifier: ^8.2.3
+ specifier: ^8.2.4
version: link:../../packages/integrations/node
'@astrojs/tailwind':
specifier: ^5.1.0
version: link:../../packages/integrations/tailwind
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/with-markdoc:
@@ -399,7 +399,7 @@ importers:
specifier: ^0.9.2
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/with-markdown-plugins:
@@ -408,7 +408,7 @@ importers:
specifier: ^4.3.0
version: link:../../packages/markdown/remark
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
hast-util-select:
specifier: ^6.0.2
@@ -429,7 +429,7 @@ importers:
examples/with-markdown-shiki:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
examples/with-mdx:
@@ -441,7 +441,7 @@ importers:
specifier: ^3.1.1
version: link:../../packages/integrations/preact
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
preact:
specifier: ^10.19.2
@@ -456,7 +456,7 @@ importers:
specifier: ^0.5.0
version: 0.5.1(nanostores@0.9.5)(preact@10.19.6)
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
nanostores:
specifier: ^0.9.5
@@ -477,7 +477,7 @@ importers:
specifier: ^1.6.3
version: 1.6.4
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
autoprefixer:
specifier: ^10.4.15
@@ -495,7 +495,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^4.5.5
+ specifier: ^4.5.6
version: link:../../packages/astro
vitest:
specifier: ^1.3.1
@@ -8945,6 +8945,7 @@ packages:
/b4a@1.6.6:
resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
+ requiresBuild: true
dev: false
/babel-plugin-jsx-dom-expressions@0.37.17(@babel/core@7.24.0):
@@ -9056,6 +9057,7 @@ packages:
/bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ requiresBuild: true
dependencies:
buffer: 5.7.1
inherits: 2.0.4
@@ -9347,6 +9349,7 @@ packages:
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+ requiresBuild: true
dev: false
/chownr@2.0.0:
@@ -9471,9 +9474,11 @@ packages:
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ requiresBuild: true
/color-string@1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ requiresBuild: true
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
@@ -9487,6 +9492,7 @@ packages:
/color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
+ requiresBuild: true
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
@@ -9828,6 +9834,7 @@ packages:
/decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
+ requiresBuild: true
dependencies:
mimic-response: 3.1.0
dev: false
@@ -9849,6 +9856,7 @@ packages:
/deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
+ requiresBuild: true
dev: false
/deep-is@0.1.4:
@@ -10170,6 +10178,7 @@ packages:
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ requiresBuild: true
dependencies:
once: 1.4.0
dev: false
@@ -10633,6 +10642,7 @@ packages:
/expand-template@2.0.3:
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
engines: {node: '>=6'}
+ requiresBuild: true
dev: false
/express@4.18.3:
@@ -10707,6 +10717,7 @@ packages:
/fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+ requiresBuild: true
dev: false
/fast-glob@3.3.2:
@@ -10869,6 +10880,7 @@ packages:
/fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
+ requiresBuild: true
dev: false
/fs-extra@10.1.0:
@@ -11022,6 +11034,7 @@ packages:
/github-from-package@0.0.0:
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
+ requiresBuild: true
dev: false
/github-slugger@2.0.0:
@@ -11607,6 +11620,7 @@ packages:
/ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+ requiresBuild: true
dev: false
/inline-style-parser@0.1.1:
@@ -11654,6 +11668,7 @@ packages:
/is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ requiresBuild: true
dev: false
/is-bigint@1.0.4:
@@ -13004,6 +13019,7 @@ packages:
/mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
+ requiresBuild: true
dev: false
/min-indent@1.0.1:
@@ -13084,6 +13100,7 @@ packages:
/mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
+ requiresBuild: true
dev: false
/mkdirp@1.0.4:
@@ -13181,6 +13198,7 @@ packages:
/napi-build-utils@1.0.2:
resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
+ requiresBuild: true
dev: false
/natural-compare@1.4.0:
@@ -13218,12 +13236,14 @@ packages:
/node-abi@3.56.0:
resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==}
engines: {node: '>=10'}
+ requiresBuild: true
dependencies:
semver: 7.6.0
dev: false
/node-addon-api@6.1.0:
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
+ requiresBuild: true
dev: false
/node-domexception@1.0.0:
@@ -14198,6 +14218,7 @@ packages:
resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
engines: {node: '>=10'}
hasBin: true
+ requiresBuild: true
dependencies:
detect-libc: 2.0.2
expand-template: 2.0.3
@@ -14315,6 +14336,7 @@ packages:
/pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ requiresBuild: true
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
@@ -14372,6 +14394,7 @@ packages:
/rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
+ requiresBuild: true
dependencies:
deep-extend: 0.6.0
ini: 1.3.8
@@ -15113,10 +15136,12 @@ packages:
/simple-concat@1.0.1:
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
+ requiresBuild: true
dev: false
/simple-get@4.0.1:
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
+ requiresBuild: true
dependencies:
decompress-response: 6.0.0
once: 1.4.0
@@ -15140,6 +15165,7 @@ packages:
/simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ requiresBuild: true
dependencies:
is-arrayish: 0.3.2
dev: false
@@ -15305,6 +15331,7 @@ packages:
/streamx@2.16.1:
resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
+ requiresBuild: true
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
@@ -15627,6 +15654,7 @@ packages:
/tar-fs@2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
+ requiresBuild: true
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
@@ -15636,6 +15664,7 @@ packages:
/tar-fs@3.0.5:
resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
+ requiresBuild: true
dependencies:
pump: 3.0.0
tar-stream: 3.1.7
@@ -15647,6 +15676,7 @@ packages:
/tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
bl: 4.1.0
end-of-stream: 1.4.4
@@ -15657,6 +15687,7 @@ packages:
/tar-stream@3.1.7:
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
+ requiresBuild: true
dependencies:
b4a: 1.6.6
fast-fifo: 1.3.2
@@ -15856,6 +15887,7 @@ packages:
/tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+ requiresBuild: true
dependencies:
safe-buffer: 5.2.1
dev: false