summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/four-ads-clap.md5
-rw-r--r--.changeset/giant-squids-pull.md6
-rw-r--r--.changeset/metal-guests-tickle.md5
-rw-r--r--.changeset/moody-points-reflect.md5
-rw-r--r--.changeset/sweet-cows-eat.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json4
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/deno/package.json2
-rw-r--r--examples/docs/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json2
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json2
-rw-r--r--examples/hackernews/package.json2
-rw-r--r--examples/integration/package.json2
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/non-html-pages/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/with-markdoc/package.json2
-rw-r--r--examples/with-markdown-plugins/package.json4
-rw-r--r--examples/with-markdown-shiki/package.json2
-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-vite-plugin-pwa/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md15
-rw-r--r--packages/astro/package.json4
-rw-r--r--packages/create-astro/CHANGELOG.md6
-rw-r--r--packages/create-astro/package.json2
-rw-r--r--packages/integrations/cloudflare/package.json2
-rw-r--r--packages/integrations/deno/package.json2
-rw-r--r--packages/integrations/image/package.json2
-rw-r--r--packages/integrations/markdoc/package.json2
-rw-r--r--packages/integrations/mdx/CHANGELOG.md11
-rw-r--r--packages/integrations/mdx/package.json4
-rw-r--r--packages/integrations/netlify/package.json2
-rw-r--r--packages/integrations/node/package.json2
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/integrations/tailwind/package.json2
-rw-r--r--packages/integrations/vercel/package.json2
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--packages/markdown/remark/CHANGELOG.md9
-rw-r--r--packages/markdown/remark/package.json4
-rw-r--r--pnpm-lock.yaml66
51 files changed, 122 insertions, 107 deletions
diff --git a/.changeset/four-ads-clap.md b/.changeset/four-ads-clap.md
deleted file mode 100644
index 23e4c55a8..000000000
--- a/.changeset/four-ads-clap.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'create-astro': patch
----
-
-add validation for non-printable characters
diff --git a/.changeset/giant-squids-pull.md b/.changeset/giant-squids-pull.md
deleted file mode 100644
index 795bb6359..000000000
--- a/.changeset/giant-squids-pull.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@astrojs/mdx': minor
-'@astrojs/markdown-remark': patch
----
-
-Add support for using optimized and relative images in MDX files with `experimental.assets`
diff --git a/.changeset/metal-guests-tickle.md b/.changeset/metal-guests-tickle.md
deleted file mode 100644
index 545742583..000000000
--- a/.changeset/metal-guests-tickle.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': minor
----
-
-Support tsconfig aliases in CSS `@import`
diff --git a/.changeset/moody-points-reflect.md b/.changeset/moody-points-reflect.md
deleted file mode 100644
index 44b16a18f..000000000
--- a/.changeset/moody-points-reflect.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Correctly generate directories for assets when users customise the output via rollup options.
diff --git a/.changeset/sweet-cows-eat.md b/.changeset/sweet-cows-eat.md
deleted file mode 100644
index c71c91835..000000000
--- a/.changeset/sweet-cows-eat.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix unnecessary warning when using images inside the `src/content` folder with `experimental.assets`
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 06c9fe70c..4ccc9e555 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 64c12cf91..47d0ec77d 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
- "@astrojs/mdx": "^0.18.4",
+ "astro": "^2.3.0",
+ "@astrojs/mdx": "^0.19.0",
"@astrojs/rss": "^2.3.2",
"@astrojs/sitemap": "^1.2.2"
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 37d408fbc..98c766d33 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/deno/package.json b/examples/deno/package.json
index 897619fa6..5be7a5cdf 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
},
"devDependencies": {
"@astrojs/deno": "^4.1.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 6eb2ca23b..1982d4385 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"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 9baaf895e..acc28a6d2 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.2.1",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index b6c57d764..9ca9645fe 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"lit": "^2.7.0",
"@astrojs/lit": "^2.0.1",
"@webcomponents/template-shadowroot": "^0.2.1"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 20b8dbe0a..bddb6b6b7 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"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 575bb7647..4865d0cc0 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"preact": "^10.7.3",
"@astrojs/preact": "^2.1.0",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 0b4dca6fd..dec3d9702 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^2.1.1",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 0d3f46be3..d587e338d 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^2.1.0"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 1288f828a..480f7e0cf 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.1.0",
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index ce9933cf0..908821b66 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"vue": "^3.2.37",
"@astrojs/vue": "^2.1.1"
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 3efa4e0f2..29029c237 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^5.1.1",
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 3f43f5954..ca4ef9870 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index d2ae739b5..d634fc429 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 18f217ab7..2190ab9b6 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 89949f875..1c96a6598 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index c4b0fdc87..d13985803 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.1.0",
"@astrojs/node": "^5.1.1",
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index 2ef95570a..100893ff1 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.1.1",
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"kleur": "^4.1.5"
}
}
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 9c2b56eed..5b206608a 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
- "@astrojs/markdown-remark": "^2.1.3",
+ "astro": "^2.3.0",
+ "@astrojs/markdown-remark": "^2.1.4",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index bd1cb4731..943239010 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3"
+ "astro": "^2.3.0"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 3f33394bb..4634cf4bc 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"preact": "^10.6.5",
"@astrojs/preact": "^2.1.0",
- "@astrojs/mdx": "^0.18.4"
+ "@astrojs/mdx": "^0.19.0"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index b093e1742..b26b9b55e 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"preact": "^10.7.3",
"@astrojs/preact": "^2.1.0",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index cd09c7a5f..ae45429c9 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -11,10 +11,10 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^0.18.4",
+ "@astrojs/mdx": "^0.19.0",
"@astrojs/tailwind": "^3.1.1",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"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 dcee8ed87..56077bbe8 100644
--- a/examples/with-vite-plugin-pwa/package.json
+++ b/examples/with-vite-plugin-pwa/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"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 c0222d47b..04ffdd099 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^2.2.3",
+ "astro": "^2.3.0",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 8c9140ae8..216ec9daa 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,20 @@
# astro
+## 2.3.0
+
+### Minor Changes
+
+- [#6816](https://github.com/withastro/astro/pull/6816) [`8539eb164`](https://github.com/withastro/astro/commit/8539eb1643864ae7e0f5a080915cd75535f7101b) Thanks [@bluwy](https://github.com/bluwy)! - Support tsconfig aliases in CSS `@import`
+
+### Patch Changes
+
+- [#6544](https://github.com/withastro/astro/pull/6544) [`a9c22994e`](https://github.com/withastro/astro/commit/a9c22994e41f92a586d8946988d29e3c62148778) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Correctly generate directories for assets when users customise the output via rollup options.
+
+- [#6825](https://github.com/withastro/astro/pull/6825) [`948a6d7be`](https://github.com/withastro/astro/commit/948a6d7be0c76fd1dd8550270bd29821075f799c) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix unnecessary warning when using images inside the `src/content` folder with `experimental.assets`
+
+- Updated dependencies [[`2511d58d5`](https://github.com/withastro/astro/commit/2511d58d586af080a78e5ef8a63020b3e17770db)]:
+ - @astrojs/markdown-remark@2.1.4
+
## 2.2.3
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 00fa21412..d0e07af52 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "2.2.3",
+ "version": "2.3.0",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@@ -108,7 +108,7 @@
"dependencies": {
"@astrojs/compiler": "^1.3.1",
"@astrojs/language-server": "^0.28.3",
- "@astrojs/markdown-remark": "^2.1.3",
+ "@astrojs/markdown-remark": "^2.1.4",
"@astrojs/telemetry": "^2.1.0",
"@astrojs/webapi": "^2.1.0",
"@babel/core": "^7.18.2",
diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md
index 2e8ca4308..561f76af0 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,11 @@
# create-astro
+## 3.1.3
+
+### Patch Changes
+
+- [#6682](https://github.com/withastro/astro/pull/6682) [`335602344`](https://github.com/withastro/astro/commit/33560234437647f2d768578e7b285c858bff7898) Thanks [@andremralves](https://github.com/andremralves)! - add validation for non-printable characters
+
## 3.1.2
### Patch Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index 3f1f4b736..a361ccf21 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "3.1.2",
+ "version": "3.1.3",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json
index 9f5e4de05..a96df103b 100644
--- a/packages/integrations/cloudflare/package.json
+++ b/packages/integrations/cloudflare/package.json
@@ -38,7 +38,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3"
+ "astro": "workspace:^2.3.0"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index 20a6410e6..770e32230 100644
--- a/packages/integrations/deno/package.json
+++ b/packages/integrations/deno/package.json
@@ -33,7 +33,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3"
+ "astro": "workspace:^2.3.0"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index edce9522a..0a417ec79 100644
--- a/packages/integrations/image/package.json
+++ b/packages/integrations/image/package.json
@@ -63,7 +63,7 @@
"vite": "^4.2.1"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3",
+ "astro": "workspace:^2.3.0",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {
diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json
index 14d4e5c36..5f93da06c 100644
--- a/packages/integrations/markdoc/package.json
+++ b/packages/integrations/markdoc/package.json
@@ -41,7 +41,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3"
+ "astro": "workspace:^2.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md
index 9add94482..1640e0579 100644
--- a/packages/integrations/mdx/CHANGELOG.md
+++ b/packages/integrations/mdx/CHANGELOG.md
@@ -1,5 +1,16 @@
# @astrojs/mdx
+## 0.19.0
+
+### Minor Changes
+
+- [#6824](https://github.com/withastro/astro/pull/6824) [`2511d58d5`](https://github.com/withastro/astro/commit/2511d58d586af080a78e5ef8a63020b3e17770db) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add support for using optimized and relative images in MDX files with `experimental.assets`
+
+### Patch Changes
+
+- Updated dependencies [[`2511d58d5`](https://github.com/withastro/astro/commit/2511d58d586af080a78e5ef8a63020b3e17770db)]:
+ - @astrojs/markdown-remark@2.1.4
+
## 0.18.4
### Patch Changes
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index 9834b4d4d..96a1f94c5 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": "0.18.4",
+ "version": "0.19.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@@ -30,7 +30,7 @@
"test:match": "mocha --timeout 20000 -g"
},
"dependencies": {
- "@astrojs/markdown-remark": "^2.1.3",
+ "@astrojs/markdown-remark": "^2.1.4",
"@astrojs/prism": "^2.1.1",
"@mdx-js/mdx": "^2.3.0",
"@mdx-js/rollup": "^2.3.0",
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 0be736f8b..31f2fd7e2 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -39,7 +39,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3"
+ "astro": "workspace:^2.3.0"
},
"devDependencies": {
"@netlify/edge-functions": "^2.0.0",
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 391555dcf..161da3e3e 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -35,7 +35,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3"
+ "astro": "workspace:^2.3.0"
},
"devDependencies": {
"@types/send": "^0.17.1",
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index 4e8cb3a18..4aed92b65 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -43,7 +43,7 @@
"vite": "^4.2.1"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3",
+ "astro": "workspace:^2.3.0",
"svelte": "^3.54.0"
},
"engines": {
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 05fa70f19..199703d3e 100644
--- a/packages/integrations/tailwind/package.json
+++ b/packages/integrations/tailwind/package.json
@@ -40,7 +40,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3",
+ "astro": "workspace:^2.3.0",
"tailwindcss": "^3.0.24"
},
"pnpm": {
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index 006d0a93b..1ea60ef23 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -53,7 +53,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3"
+ "astro": "workspace:^2.3.0"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index 188804e00..15588deac 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -50,7 +50,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
- "astro": "workspace:^2.2.3",
+ "astro": "workspace:^2.3.0",
"vue": "^3.2.30"
},
"engines": {
diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md
index c0db9355e..cacfca845 100644
--- a/packages/markdown/remark/CHANGELOG.md
+++ b/packages/markdown/remark/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/markdown-remark
+## 2.1.4
+
+### Patch Changes
+
+- [#6824](https://github.com/withastro/astro/pull/6824) [`2511d58d5`](https://github.com/withastro/astro/commit/2511d58d586af080a78e5ef8a63020b3e17770db) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add support for using optimized and relative images in MDX files with `experimental.assets`
+
+- Updated dependencies [[`8539eb164`](https://github.com/withastro/astro/commit/8539eb1643864ae7e0f5a080915cd75535f7101b), [`a9c22994e`](https://github.com/withastro/astro/commit/a9c22994e41f92a586d8946988d29e3c62148778), [`948a6d7be`](https://github.com/withastro/astro/commit/948a6d7be0c76fd1dd8550270bd29821075f799c)]:
+ - astro@2.3.0
+
## 2.1.3
### Patch Changes
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index 4554b9c46..82ae5bbb8 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
- "version": "2.1.3",
+ "version": "2.1.4",
"type": "module",
"author": "withastro",
"license": "MIT",
@@ -25,7 +25,7 @@
"test": "mocha --exit --timeout 20000"
},
"peerDependencies": {
- "astro": "workspace:^2.2.0"
+ "astro": "workspace:^2.3.0"
},
"dependencies": {
"@astrojs/prism": "^2.1.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 308aa2ff1..69f5c1cff 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -140,13 +140,13 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/blog:
dependencies:
'@astrojs/mdx':
- specifier: ^0.18.4
+ specifier: ^0.19.0
version: link:../../packages/integrations/mdx
'@astrojs/rss':
specifier: ^2.3.2
@@ -155,19 +155,19 @@ importers:
specifier: ^1.2.2
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/deno:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
devDependencies:
'@astrojs/deno':
@@ -201,7 +201,7 @@ importers:
specifier: ^18.0.0
version: 18.0.6
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
preact:
specifier: ^10.7.3
@@ -229,7 +229,7 @@ importers:
specifier: ^3.10.2
version: 3.10.2
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/framework-lit:
@@ -241,7 +241,7 @@ importers:
specifier: ^0.2.1
version: 0.2.1
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
lit:
specifier: ^2.7.0
@@ -265,7 +265,7 @@ importers:
specifier: ^2.1.1
version: link:../../packages/integrations/vue
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
preact:
specifier: ^10.7.3
@@ -295,7 +295,7 @@ importers:
specifier: ^1.1.0
version: 1.1.1(preact@10.11.0)
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
preact:
specifier: ^10.7.3
@@ -313,7 +313,7 @@ importers:
specifier: ^18.0.5
version: 18.0.6
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
react:
specifier: ^18.1.0
@@ -328,7 +328,7 @@ importers:
specifier: ^2.1.0
version: link:../../packages/integrations/solid
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
solid-js:
specifier: ^1.4.3
@@ -340,7 +340,7 @@ importers:
specifier: ^2.1.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
svelte:
specifier: ^3.48.0
@@ -352,7 +352,7 @@ importers:
specifier: ^2.1.1
version: link:../../packages/integrations/vue
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
vue:
specifier: ^3.2.37
@@ -364,31 +364,31 @@ importers:
specifier: ^5.1.1
version: link:../../packages/integrations/node
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/non-html-pages:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/ssr:
@@ -400,7 +400,7 @@ importers:
specifier: ^2.1.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
concurrently:
specifier: ^7.2.1
@@ -421,7 +421,7 @@ importers:
specifier: ^0.1.1
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
kleur:
specifier: ^4.1.5
@@ -430,10 +430,10 @@ importers:
examples/with-markdown-plugins:
dependencies:
'@astrojs/markdown-remark':
- specifier: ^2.1.3
+ specifier: ^2.1.4
version: link:../../packages/markdown/remark
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
hast-util-select:
specifier: 5.0.1
@@ -454,19 +454,19 @@ importers:
examples/with-markdown-shiki:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
examples/with-mdx:
dependencies:
'@astrojs/mdx':
- specifier: ^0.18.4
+ specifier: ^0.19.0
version: link:../../packages/integrations/mdx
'@astrojs/preact':
specifier: ^2.1.0
version: link:../../packages/integrations/preact
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
preact:
specifier: ^10.6.5
@@ -481,7 +481,7 @@ importers:
specifier: ^0.1.3
version: 0.1.3(nanostores@0.5.12)(preact@10.11.0)
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
nanostores:
specifier: ^0.5.12
@@ -493,7 +493,7 @@ importers:
examples/with-tailwindcss:
dependencies:
'@astrojs/mdx':
- specifier: ^0.18.4
+ specifier: ^0.19.0
version: link:../../packages/integrations/mdx
'@astrojs/tailwind':
specifier: ^3.1.1
@@ -502,7 +502,7 @@ importers:
specifier: ^1.4.3
version: 1.4.3
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
autoprefixer:
specifier: ^10.4.7
@@ -520,7 +520,7 @@ importers:
examples/with-vite-plugin-pwa:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
vite-plugin-pwa:
specifier: 0.11.11
@@ -532,7 +532,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^2.2.3
+ specifier: ^2.3.0
version: link:../../packages/astro
vitest:
specifier: ^0.20.3
@@ -547,7 +547,7 @@ importers:
specifier: ^0.28.3
version: 0.28.3
'@astrojs/markdown-remark':
- specifier: ^2.1.3
+ specifier: ^2.1.4
version: link:../markdown/remark
'@astrojs/telemetry':
specifier: ^2.1.0
@@ -3934,7 +3934,7 @@ importers:
packages/integrations/mdx:
dependencies:
'@astrojs/markdown-remark':
- specifier: ^2.1.3
+ specifier: ^2.1.4
version: link:../../markdown/remark
'@astrojs/prism':
specifier: ^2.1.1