summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/all-suns-report.md7
-rw-r--r--.changeset/bitter-rockets-pull.md5
-rw-r--r--.changeset/empty-cloths-sort.md5
-rw-r--r--.changeset/free-icons-own.md5
-rw-r--r--.changeset/ninety-cups-decide.md22
-rw-r--r--.changeset/ten-tips-share.md5
-rw-r--r--.changeset/true-moose-report.md5
-rw-r--r--.changeset/wide-carrots-dream.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json6
-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.json4
-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.md40
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/integrations/markdoc/CHANGELOG.md7
-rw-r--r--packages/integrations/markdoc/package.json2
-rw-r--r--packages/integrations/mdx/CHANGELOG.md9
-rw-r--r--packages/integrations/mdx/package.json2
-rw-r--r--packages/integrations/sitemap/CHANGELOG.md6
-rw-r--r--packages/integrations/sitemap/package.json2
-rw-r--r--packages/markdown/remark/CHANGELOG.md6
-rw-r--r--packages/markdown/remark/package.json2
-rw-r--r--pnpm-lock.yaml62
42 files changed, 126 insertions, 129 deletions
diff --git a/.changeset/all-suns-report.md b/.changeset/all-suns-report.md
new file mode 100644
index 000000000..0d27188ad
--- /dev/null
+++ b/.changeset/all-suns-report.md
@@ -0,0 +1,7 @@
+---
+'@astrojs/mdx': patch
+'@astrojs/markdown-remark': patch
+'astro': patch
+---
+
+Upgrade to shiki v3
diff --git a/.changeset/bitter-rockets-pull.md b/.changeset/bitter-rockets-pull.md
new file mode 100644
index 000000000..3d606f649
--- /dev/null
+++ b/.changeset/bitter-rockets-pull.md
@@ -0,0 +1,5 @@
+---
+'astro': minor
+---
+
+Handle server.allowedHosts when the value is true without attempting to push it into an array.
diff --git a/.changeset/empty-cloths-sort.md b/.changeset/empty-cloths-sort.md
new file mode 100644
index 000000000..0368bc7fa
--- /dev/null
+++ b/.changeset/empty-cloths-sort.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fixes a bug that caused some very large data stores to save incomplete data.
diff --git a/.changeset/free-icons-own.md b/.changeset/free-icons-own.md
new file mode 100644
index 000000000..26991271f
--- /dev/null
+++ b/.changeset/free-icons-own.md
@@ -0,0 +1,5 @@
+---
+'@astrojs/sitemap': minor
+---
+
+Add support for XSL in sitemap-index.xml
diff --git a/.changeset/ninety-cups-decide.md b/.changeset/ninety-cups-decide.md
new file mode 100644
index 000000000..3a637fc86
--- /dev/null
+++ b/.changeset/ninety-cups-decide.md
@@ -0,0 +1,22 @@
+---
+'astro': patch
+---
+
+Adds a new function called `insertPageRoute` to the Astro Container API.
+
+The new function is useful when testing routes that, for some business logic, use `Astro.rewrite`.
+
+For example, if you have a route `/blog/post` and for some business decision there's a rewrite to `/generic-error`, the container API implementation will look like this:
+
+```js
+import Post from "../src/pages/Post.astro";
+import GenericError from "../src/pages/GenericError.astro";
+import { experimental_AstroContainer as AstroContainer } from "astro/container";
+
+const container = await AstroContainer.create();
+container.insertPageRoute("/generic-error", GenericError);
+const result = await container.renderToString(Post);
+console.log(result) // this should print the response from GenericError.astro
+```
+
+This new method only works for page routes, which means that endpoints aren't supported.
diff --git a/.changeset/ten-tips-share.md b/.changeset/ten-tips-share.md
new file mode 100644
index 000000000..9d8b5b40a
--- /dev/null
+++ b/.changeset/ten-tips-share.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fixes a bug that caused the `astro add` command to ignore the `--yes` flag for third-party integrations
diff --git a/.changeset/true-moose-report.md b/.changeset/true-moose-report.md
new file mode 100644
index 000000000..29c35526b
--- /dev/null
+++ b/.changeset/true-moose-report.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Prevent bad value in x-forwarded-host from crashing request
diff --git a/.changeset/wide-carrots-dream.md b/.changeset/wide-carrots-dream.md
new file mode 100644
index 000000000..b0e30081e
--- /dev/null
+++ b/.changeset/wide-carrots-dream.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fix an issue in the Container API, where the `renderToString` function doesn't render adequately nested slots when they are components.
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 9e72cedf4..0c58be45d 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 38138bc98..b06ae945a 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.2.1",
+ "@astrojs/mdx": "^4.2.0",
"@astrojs/rss": "^4.0.11",
- "@astrojs/sitemap": "^3.3.0",
- "astro": "^5.6.0"
+ "@astrojs/sitemap": "^3.2.1",
+ "astro": "^5.5.2"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 4e120fb12..540169ace 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
},
"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 c74206e89..7e3e1ba81 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/react": "^4.2.1",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^3.0.8"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 2a9eeeb19..c0688e028 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.3",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.8",
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 4f4877a46..acc1c9203 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -17,7 +17,7 @@
"@astrojs/vue": "^5.0.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"preact": "^10.26.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 0df6cb9ac..4da8b5cf2 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.5",
"@preact/signals": "^2.0.1",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"preact": "^10.26.4"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 879fab414..bd297802e 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,7 +13,7 @@
"@astrojs/react": "^4.2.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 8f1bc790a..5dae09ca0 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^5.0.5",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"solid-js": "^1.9.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 3871a2508..d8957a15e 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^7.0.6",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"svelte": "^5.22.6"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 218d6bbd6..96b680060 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.0.7",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"vue": "^3.5.13"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index f3d31c309..d98b861cb 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.1.3",
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 37344a14f..50549d255 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index e66c4c61b..e872bae71 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index d5b10c2f9..f3d739064 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 1e651ac87..0e4ee394d 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/node": "^9.1.3",
"@astrojs/svelte": "^7.0.6",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"svelte": "^5.22.6"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 48c575be7..fc5785901 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"sass": "^1.85.1",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index cbc23659d..3a1d357ca 100644
--- a/examples/toolbar-app/package.json
+++ b/examples/toolbar-app/package.json
@@ -16,6 +16,6 @@
},
"devDependencies": {
"@types/node": "^18.17.8",
- "astro": "^5.6.0"
+ "astro": "^5.5.2"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index ae90d7af0..b739043d0 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/markdoc": "^0.13.1",
- "astro": "^5.6.0"
+ "@astrojs/markdoc": "^0.13.0",
+ "astro": "^5.5.2"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index aae26aec1..80cd3a139 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.2.1",
+ "@astrojs/mdx": "^4.2.0",
"@astrojs/preact": "^4.0.5",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"preact": "^10.26.4"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index d2162d204..3ddc273a8 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.5",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"nanostores": "^0.11.4",
"preact": "^10.26.4"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 6410a36e4..6b367b9de 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -10,10 +10,10 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.2.1",
+ "@astrojs/mdx": "^4.2.0",
"@tailwindcss/vite": "^4.0.12",
"@types/canvas-confetti": "^1.9.0",
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.0.12"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 614d87430..de0cda80e 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.6.0",
+ "astro": "^5.5.2",
"vitest": "^3.0.8"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 6cb86f7fc..6b3c51c14 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,45 +1,5 @@
# astro
-## 5.6.0
-
-### Minor Changes
-
-- [#13437](https://github.com/withastro/astro/pull/13437) [`013fa87`](https://github.com/withastro/astro/commit/013fa87982ea92675e899d2f71a200e5298db608) Thanks [@Vardhaman619](https://github.com/Vardhaman619)! - Handle server.allowedHosts when the value is true without attempting to push it into an array.
-
-### Patch Changes
-
-- [#13324](https://github.com/withastro/astro/pull/13324) [`ea74336`](https://github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1) Thanks [@ematipico](https://github.com/ematipico)! - Upgrade to shiki v3
-
-- [#13372](https://github.com/withastro/astro/pull/13372) [`7783dbf`](https://github.com/withastro/astro/commit/7783dbf8117650c60d7633b43f0d42da487aa2b1) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused some very large data stores to save incomplete data.
-
-- [#13358](https://github.com/withastro/astro/pull/13358) [`8c21663`](https://github.com/withastro/astro/commit/8c21663c4a6363765f2caa5705a93a41492a95c9) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new function called `insertPageRoute` to the Astro Container API.
-
- The new function is useful when testing routes that, for some business logic, use `Astro.rewrite`.
-
- For example, if you have a route `/blog/post` and for some business decision there's a rewrite to `/generic-error`, the container API implementation will look like this:
-
- ```js
- import Post from '../src/pages/Post.astro';
- import GenericError from '../src/pages/GenericError.astro';
- import { experimental_AstroContainer as AstroContainer } from 'astro/container';
-
- const container = await AstroContainer.create();
- container.insertPageRoute('/generic-error', GenericError);
- const result = await container.renderToString(Post);
- console.log(result); // this should print the response from GenericError.astro
- ```
-
- This new method only works for page routes, which means that endpoints aren't supported.
-
-- [#13426](https://github.com/withastro/astro/pull/13426) [`565583b`](https://github.com/withastro/astro/commit/565583bd6c99163ce5d9475b26075149cc8c155b) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused the `astro add` command to ignore the `--yes` flag for third-party integrations
-
-- [#13428](https://github.com/withastro/astro/pull/13428) [`9cac9f3`](https://github.com/withastro/astro/commit/9cac9f314277def0ee584e45d4937bac0235738a) Thanks [@matthewp](https://github.com/matthewp)! - Prevent bad value in x-forwarded-host from crashing request
-
-- [#13432](https://github.com/withastro/astro/pull/13432) [`defad33`](https://github.com/withastro/astro/commit/defad33140dccde324b9357bc6331f7e5cdec266) Thanks [@P4tt4te](https://github.com/P4tt4te)! - Fix an issue in the Container API, where the `renderToString` function doesn't render adequately nested slots when they are components.
-
-- Updated dependencies [[`ea74336`](https://github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1)]:
- - @astrojs/markdown-remark@6.3.1
-
## 5.5.2
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 1214b7a87..0b216fd44 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.6.0",
+ "version": "5.5.2",
"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/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md
index 4c107a824..b38ec4b6c 100644
--- a/packages/integrations/markdoc/CHANGELOG.md
+++ b/packages/integrations/markdoc/CHANGELOG.md
@@ -1,12 +1,5 @@
# @astrojs/markdoc
-## 0.13.1
-
-### Patch Changes
-
-- Updated dependencies [[`ea74336`](https://github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1)]:
- - @astrojs/markdown-remark@6.3.1
-
## 0.13.0
### Minor Changes
diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json
index 24b49f96e..ce858e90a 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 in your Astro site",
- "version": "0.13.1",
+ "version": "0.13.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md
index 7538f4c82..a7cedf055 100644
--- a/packages/integrations/mdx/CHANGELOG.md
+++ b/packages/integrations/mdx/CHANGELOG.md
@@ -1,14 +1,5 @@
# @astrojs/mdx
-## 4.2.1
-
-### Patch Changes
-
-- [#13324](https://github.com/withastro/astro/pull/13324) [`ea74336`](https://github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1) Thanks [@ematipico](https://github.com/ematipico)! - Upgrade to shiki v3
-
-- Updated dependencies [[`ea74336`](https://github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1)]:
- - @astrojs/markdown-remark@6.3.1
-
## 4.2.0
### Minor Changes
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index 440246d4d..db4d22366 100644
--- a/packages/integrations/mdx/package.json
+++ b/packages/integrations/mdx/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Add support for MDX pages in your Astro site",
- "version": "4.2.1",
+ "version": "4.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md
index 3daecf2b1..f344d3f06 100644
--- a/packages/integrations/sitemap/CHANGELOG.md
+++ b/packages/integrations/sitemap/CHANGELOG.md
@@ -1,11 +1,5 @@
# @astrojs/sitemap
-## 3.3.0
-
-### Minor Changes
-
-- [#13421](https://github.com/withastro/astro/pull/13421) [`382f5db`](https://github.com/withastro/astro/commit/382f5db9a956d056258b3495a4f77326bc1a5cc4) Thanks [@sweeneytr](https://github.com/sweeneytr)! - Add support for XSL in sitemap-index.xml
-
## 3.2.1
### Patch Changes
diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json
index 9aaf546bf..aee268e6d 100644
--- a/packages/integrations/sitemap/package.json
+++ b/packages/integrations/sitemap/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/sitemap",
"description": "Generate a sitemap for your Astro site",
- "version": "3.3.0",
+ "version": "3.2.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md
index 174be70f8..79871a4e7 100644
--- a/packages/markdown/remark/CHANGELOG.md
+++ b/packages/markdown/remark/CHANGELOG.md
@@ -1,11 +1,5 @@
# @astrojs/markdown-remark
-## 6.3.1
-
-### Patch Changes
-
-- [#13324](https://github.com/withastro/astro/pull/13324) [`ea74336`](https://github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1) Thanks [@ematipico](https://github.com/ematipico)! - Upgrade to shiki v3
-
## 6.3.0
### Minor Changes
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index 1d47154f9..78341aeab 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
- "version": "6.3.1",
+ "version": "6.3.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0fb6bc80c..a12d7a737 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -142,28 +142,28 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/blog:
dependencies:
'@astrojs/mdx':
- specifier: ^4.2.1
+ specifier: ^4.2.0
version: link:../../packages/integrations/mdx
'@astrojs/rss':
specifier: ^4.0.11
version: link:../../packages/astro-rss
'@astrojs/sitemap':
- specifier: ^3.3.0
+ specifier: ^3.2.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/container-with-vitest:
@@ -172,7 +172,7 @@ importers:
specifier: ^4.2.1
version: link:../../packages/integrations/react
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -203,7 +203,7 @@ importers:
specifier: ^3.14.8
version: 3.14.8
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/framework-multiple:
@@ -230,7 +230,7 @@ importers:
specifier: ^18.3.5
version: 18.3.5(@types/react@18.3.18)
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -260,7 +260,7 @@ importers:
specifier: ^2.0.1
version: 2.0.1(preact@10.26.4)
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -278,7 +278,7 @@ importers:
specifier: ^18.3.5
version: 18.3.5(@types/react@18.3.18)
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -293,7 +293,7 @@ importers:
specifier: ^5.0.5
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
solid-js:
specifier: ^1.9.5
@@ -305,7 +305,7 @@ importers:
specifier: ^7.0.6
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
svelte:
specifier: ^5.22.6
@@ -317,7 +317,7 @@ importers:
specifier: ^5.0.7
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
vue:
specifier: ^3.5.13
@@ -329,25 +329,25 @@ importers:
specifier: ^9.1.3
version: link:../../packages/integrations/node
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/ssr:
@@ -359,7 +359,7 @@ importers:
specifier: ^7.0.6
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
svelte:
specifier: ^5.22.6
@@ -368,7 +368,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
sass:
specifier: ^1.85.1
@@ -383,28 +383,28 @@ importers:
specifier: ^18.17.8
version: 18.19.50
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/with-markdoc:
dependencies:
'@astrojs/markdoc':
- specifier: ^0.13.1
+ specifier: ^0.13.0
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
examples/with-mdx:
dependencies:
'@astrojs/mdx':
- specifier: ^4.2.1
+ specifier: ^4.2.0
version: link:../../packages/integrations/mdx
'@astrojs/preact':
specifier: ^4.0.5
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -419,7 +419,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.4)(preact@10.26.4)
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
nanostores:
specifier: ^0.11.4
@@ -431,7 +431,7 @@ importers:
examples/with-tailwindcss:
dependencies:
'@astrojs/mdx':
- specifier: ^4.2.1
+ specifier: ^4.2.0
version: link:../../packages/integrations/mdx
'@tailwindcss/vite':
specifier: ^4.0.12
@@ -440,7 +440,7 @@ importers:
specifier: ^1.9.0
version: 1.9.0
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@@ -452,7 +452,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.6.0
+ specifier: ^5.5.2
version: link:../../packages/astro
vitest:
specifier: ^3.0.8
@@ -2514,6 +2514,12 @@ importers:
specifier: workspace:*
version: link:../../..
+ packages/astro/test/fixtures/container:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+
packages/astro/test/fixtures/container-custom-renderers:
dependencies:
'@astrojs/react':