summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2024-10-15 10:48:59 -0700
committerGravatar GitHub <noreply@github.com> 2024-10-15 19:48:59 +0200
commitc929e5d8c8e1443c64cbe1a29845930206ebff0e (patch)
treec2cb920df612609d33bb1d7daef44261b5985b6a
parent4ade067cef9a43919488da3d9c0c158147d9ac06 (diff)
downloadastro-c929e5d8c8e1443c64cbe1a29845930206ebff0e.tar.gz
astro-c929e5d8c8e1443c64cbe1a29845930206ebff0e.tar.zst
astro-c929e5d8c8e1443c64cbe1a29845930206ebff0e.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/pre.json4
-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/container-with-vitest/package.json2
-rw-r--r--examples/framework-alpine/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/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/starlog/package.json2
-rw-r--r--examples/toolbar-app/package.json2
-rw-r--r--examples/with-markdoc/package.json4
-rw-r--r--examples/with-mdx/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json4
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md29
-rw-r--r--packages/astro/package.json2
-rw-r--r--pnpm-lock.yaml113
27 files changed, 85 insertions, 113 deletions
diff --git a/.changeset/pre.json b/.changeset/pre.json
index dbc514123..f1be2a3ad 100644
--- a/.changeset/pre.json
+++ b/.changeset/pre.json
@@ -50,10 +50,12 @@
"eight-days-sort",
"eighty-bags-cross",
"eighty-boxes-applaud",
+ "eighty-donkeys-fly",
"eighty-ligers-punch",
"five-jars-hear",
"fluffy-jars-live",
"fresh-pandas-drive",
+ "funny-wolves-dream",
"fuzzy-pugs-live",
"giant-rocks-thank",
"healthy-ads-scream",
@@ -65,6 +67,7 @@
"hungry-jokes-try",
"itchy-toys-march",
"large-zebras-sniff",
+ "light-pears-accept",
"long-lions-do",
"long-months-rule",
"lovely-pianos-breathe",
@@ -99,6 +102,7 @@
"tame-pumpkins-swim",
"ten-students-repair",
"ten-walls-tap",
+ "three-days-cough",
"three-olives-reflect",
"twelve-comics-march",
"twenty-cobras-push",
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 8783fb4d5..5f78dd4ed 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 552163e87..b2fe1c488 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -13,6 +13,6 @@
"@astrojs/mdx": "^4.0.0-beta.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index d28ce97c9..938105fe4 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
},
"peerDependencies": {
"astro": "^4.0.0 || ^5.0.0"
diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json
index b2493841c..02dac3ca6 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest run"
},
"dependencies": {
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"@astrojs/react": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 21c71cb8c..408dabaae 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.0",
"@types/alpinejs": "^3.13.10",
"alpinejs": "^3.14.1",
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index fc3cda14e..2bad8ce3b 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -17,7 +17,7 @@
"@astrojs/vue": "^5.0.0-beta.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"preact": "^10.24.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 638895b02..f8b8de537 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^3.5.3",
"@preact/signals": "^1.3.0",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"preact": "^10.24.3"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 9fd305f37..4b4706d5b 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,7 +13,7 @@
"@astrojs/react": "^3.6.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index dde956960..0a4b303ef 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^4.4.2",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"solid-js": "^1.9.2"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 72e36c624..080518c6d 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^6.0.0-beta.1",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"svelte": "^4.2.19"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index c65758a1f..d501929b2 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.0.0-beta.0",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"vue": "^3.5.12"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 33605bb73..7f2fde105 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.0.0-alpha.1",
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index a9fbf4bca..eda3f2b64 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 6a237ca74..53d0cd22c 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index cba276d8c..9f4083401 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 3dc0d8e78..742325162 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/node": "^9.0.0-alpha.1",
"@astrojs/svelte": "^6.0.0-beta.1",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"svelte": "^4.2.19"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 3634f444d..d2d01541c 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"sass": "^1.79.5",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index c17e1e500..21afbcdd4 100644
--- a/examples/toolbar-app/package.json
+++ b/examples/toolbar-app/package.json
@@ -15,6 +15,6 @@
"./app": "./dist/app.js"
},
"devDependencies": {
- "astro": "^5.0.0-beta.4"
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index f60372349..658ea5160 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/markdoc": "0.11.5-beta.1",
- "astro": "^5.0.0-beta.4"
+ "@astrojs/markdoc": "^0.12.0-beta.0",
+ "astro": "^5.0.0-beta.5"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 7a9c30070..21a260a0b 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/mdx": "^4.0.0-beta.2",
"@astrojs/preact": "^3.5.3",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"preact": "^10.24.3"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 8eecebf37..ccf7253f7 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^3.5.3",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"nanostores": "^0.11.3",
"preact": "^10.24.3"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 7c80ddfe7..05e8c2b4b 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -11,9 +11,9 @@
},
"dependencies": {
"@astrojs/mdx": "^4.0.0-beta.2",
- "@astrojs/tailwind": "^5.1.1",
+ "@astrojs/tailwind": "^5.1.2",
"@types/canvas-confetti": "^1.6.4",
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"autoprefixer": "^10.4.20",
"canvas-confetti": "^1.9.3",
"postcss": "^8.4.47",
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 9595f6976..c732b6ae6 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.0.0-beta.4",
+ "astro": "^5.0.0-beta.5",
"vitest": "^2.1.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 018bae833..c8c5970c5 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,34 @@
# astro
+## 5.0.0-beta.5
+
+### Minor Changes
+
+- [#12226](https://github.com/withastro/astro/pull/12226) [`51d13e2`](https://github.com/withastro/astro/commit/51d13e2f6ce3a9e03c33d80af6716847f6a78061) Thanks [@ematipico](https://github.com/ematipico)! - The following renderer fields and integration fields now accept `URL` as a type:
+
+ **Renderers**:
+
+ - `AstroRenderer.clientEntrpoint`
+ - `AstroRenderer.serverEntrypoint`
+
+ **Integrations**:
+
+ - `InjectedRoute.entrypoint`
+ - `AstroIntegrationMiddleware.entrypoint`
+ - `DevToolbarAppEntry.entrypoint`
+
+### Patch Changes
+
+- [#12168](https://github.com/withastro/astro/pull/12168) [`1cd3085`](https://github.com/withastro/astro/commit/1cd30852a3bdae1847ad4e835e503598ca5fdf5c) Thanks [@ascorbic](https://github.com/ascorbic)! - Allows "slug" as a field in content layer data
+
+- [#12169](https://github.com/withastro/astro/pull/12169) [`15fa9ba`](https://github.com/withastro/astro/commit/15fa9babf31a9b8ab8fc8e611c931c178137e2f9) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where configured redirects were incorrectly constructed when reading the file system.
+
+ This caused an issue where configuring a redirect in `astro.config.mjs` like `{ /old: /new }`, failed to trigger the correct redirect in the dev server.
+
+- [#12169](https://github.com/withastro/astro/pull/12169) [`15fa9ba`](https://github.com/withastro/astro/commit/15fa9babf31a9b8ab8fc8e611c931c178137e2f9) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where the dev server was not providing a consistent user experience for configured redirects.
+
+ With the fix, when you configure a redirect in `astro.config.mjs` like this `{ /old: "/new" }`, the dev server return an HTML response that matches the one emitted by a static build.
+
## 5.0.0-beta.4
### Major Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index c14b52b78..89f73b777 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.0.0-beta.4",
+ "version": "5.0.0-beta.5",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bce223d47..3e2519e34 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -122,7 +122,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/blog:
@@ -137,13 +137,13 @@ importers:
specifier: ^3.2.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/container-with-vitest:
@@ -152,7 +152,7 @@ importers:
specifier: ^3.6.2
version: link:../../packages/integrations/react
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -183,7 +183,7 @@ importers:
specifier: ^3.14.1
version: 3.14.1
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/framework-multiple:
@@ -210,7 +210,7 @@ importers:
specifier: ^18.3.1
version: 18.3.1
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
preact:
specifier: ^10.24.3
@@ -240,7 +240,7 @@ importers:
specifier: ^1.3.0
version: 1.3.0(preact@10.24.3)
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
preact:
specifier: ^10.24.3
@@ -258,7 +258,7 @@ importers:
specifier: ^18.3.1
version: 18.3.1
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -273,7 +273,7 @@ importers:
specifier: ^4.4.2
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
solid-js:
specifier: ^1.9.2
@@ -285,7 +285,7 @@ importers:
specifier: ^6.0.0-beta.1
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
svelte:
specifier: ^4.2.19
@@ -297,7 +297,7 @@ importers:
specifier: ^5.0.0-beta.0
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
vue:
specifier: ^3.5.12
@@ -309,25 +309,25 @@ importers:
specifier: ^9.0.0-alpha.1
version: 9.0.0-alpha.1(astro@packages+astro)
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/ssr:
@@ -339,7 +339,7 @@ importers:
specifier: ^6.0.0-beta.1
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
svelte:
specifier: ^4.2.19
@@ -348,7 +348,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
sass:
specifier: ^1.79.5
@@ -360,16 +360,16 @@ importers:
examples/toolbar-app:
devDependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/with-markdoc:
dependencies:
'@astrojs/markdoc':
- specifier: 0.11.5-beta.1
- version: 0.11.5-beta.1(@types/react@18.3.11)(astro@packages+astro)(react@18.3.1)
+ specifier: ^0.12.0-beta.0
+ version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
examples/with-mdx:
@@ -381,7 +381,7 @@ importers:
specifier: ^3.5.3
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
preact:
specifier: ^10.24.3
@@ -396,7 +396,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.3)(preact@10.24.3)
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
nanostores:
specifier: ^0.11.3
@@ -411,13 +411,13 @@ importers:
specifier: ^4.0.0-beta.2
version: link:../../packages/integrations/mdx
'@astrojs/tailwind':
- specifier: ^5.1.1
+ specifier: ^5.1.2
version: link:../../packages/integrations/tailwind
'@types/canvas-confetti':
specifier: ^1.6.4
version: 1.6.4
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
autoprefixer:
specifier: ^10.4.20
@@ -435,7 +435,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.0.0-beta.4
+ specifier: ^5.0.0-beta.5
version: link:../../packages/astro
vitest:
specifier: ^2.1.3
@@ -5556,9 +5556,6 @@ packages:
'@astrojs/compiler@2.10.3':
resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==}
- '@astrojs/internal-helpers@0.4.1':
- resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==}
-
'@astrojs/language-server@2.15.0':
resolution: {integrity: sha512-wJHSjGApm5X8Rg1GvkevoatZBfvaFizY4kCPvuSYgs3jGCobuY3KstJGKC1yNLsRJlDweHruP+J54iKn9vEKoA==}
hasBin: true
@@ -5571,15 +5568,6 @@ packages:
prettier-plugin-astro:
optional: true
- '@astrojs/markdoc@0.11.5-beta.1':
- resolution: {integrity: sha512-YVvaD9WgBNZ3PNCGvlK/hs8zXrFzMoNqTsS1jhswkLpk0xTCRjliGeRRUYFLAj5Y+6sb9TwxklQC6lPw2UT6qA==}
- engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
- peerDependencies:
- astro: ^5.0.0-alpha.0
-
- '@astrojs/markdown-remark@6.0.0-beta.2':
- resolution: {integrity: sha512-XHadnf3c+hb2A0kWBuwKA3TqBKi7bIF3bpRt49DTnE3dVlsHDPmByn0Wj3CZij1HvXL/ODmPiOJt2JGXMeivuQ==}
-
'@astrojs/node@8.3.3':
resolution: {integrity: sha512-idrKhnnPSi0ABV+PCQsRQqVNwpOvVDF/+fkwcIiE8sr9J8EMvW9g/oyAt8T4X2OBJ8FUzYPL8klfCdG7r0eB5g==}
peerDependencies:
@@ -5595,10 +5583,6 @@ packages:
peerDependencies:
astro: ^5.0.0-alpha.0
- '@astrojs/prism@3.1.0':
- resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==}
- engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
-
'@astrojs/yaml2ts@0.2.1':
resolution: {integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==}
@@ -11046,8 +11030,6 @@ snapshots:
'@astrojs/compiler@2.10.3': {}
- '@astrojs/internal-helpers@0.4.1': {}
-
'@astrojs/language-server@2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.3)':
dependencies:
'@astrojs/compiler': 2.10.3
@@ -11074,45 +11056,6 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@astrojs/markdoc@0.11.5-beta.1(@types/react@18.3.11)(astro@packages+astro)(react@18.3.1)':
- dependencies:
- '@astrojs/internal-helpers': 0.4.1
- '@astrojs/markdown-remark': 6.0.0-beta.2
- '@astrojs/prism': 3.1.0
- '@markdoc/markdoc': 0.4.0(@types/react@18.3.11)(react@18.3.1)
- astro: link:packages/astro
- esbuild: 0.21.5
- github-slugger: 2.0.0
- htmlparser2: 9.1.0
- transitivePeerDependencies:
- - '@types/react'
- - react
- - supports-color
-
- '@astrojs/markdown-remark@6.0.0-beta.2':
- dependencies:
- '@astrojs/prism': 3.1.0
- github-slugger: 2.0.0
- hast-util-from-html: 2.0.3
- hast-util-to-text: 4.0.2
- import-meta-resolve: 4.1.0
- js-yaml: 4.1.0
- mdast-util-definitions: 6.0.0
- rehype-raw: 7.0.0
- rehype-stringify: 10.0.1
- remark-gfm: 4.0.0
- remark-parse: 11.0.0
- remark-rehype: 11.1.1
- remark-smartypants: 3.0.2
- shiki: 1.22.0
- unified: 11.0.5
- unist-util-remove-position: 5.0.0
- unist-util-visit: 5.0.0
- unist-util-visit-parents: 6.0.1
- vfile: 6.0.3
- transitivePeerDependencies:
- - supports-color
-
'@astrojs/node@8.3.3(astro@packages+astro)':
dependencies:
astro: link:packages/astro
@@ -11137,10 +11080,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/prism@3.1.0':
- dependencies:
- prismjs: 1.29.0
-
'@astrojs/yaml2ts@0.2.1':
dependencies:
yaml: 2.5.1