0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] release (#13397)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2025-03-13 04:42:20 -07:00 committed by GitHub
parent 3b5196ddb8
commit 42772253fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
41 changed files with 363 additions and 212 deletions

View file

@ -1,52 +0,0 @@
---
'astro': minor
---
Adds a new experimental flag called `experimental.preserveScriptOrder` that renders `<script>` and `<style>` tags in the same order as they are defined.
When rendering multiple `<style>` and `<script>` tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built.
With the new `preserveScriptOrder` flag enabled, Astro will generate the styles in the order they are defined:
```js title="astro.config.mjs"
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
preserveScriptOrder: true,
},
});
```
For example, the following component has two `<style>` tags, and both define the same style for the `body` tag:
```html
<p>I am a component</p>
<style>
body {
background: red;
}
</style>
<style>
body {
background: yellow;
}
</style>
```
Once the project is compiled, Astro will create an inline style where `yellow` appears first, and then `red`. Ultimately, the `red` background is applied:
```css
body {background:#ff0} body {background:red}
```
When `experimental.preserveScriptOrder` is set to `true`, the order of the two styles is kept as it is, and in the style generated `red` appears first, and then `yellow`:
```css
body {background:red} body {background:#ff0}
```
This is a breaking change to how Astro renders project code that contains multiple `<style>` and `<script>` tags in the same component. If you were previously compensating for Astro's behavior by writing these out of order, you will need to update your code.
This will eventually become the new default Astro behavior, so we encourage you to add this experimental style and script ordering as soon as you are able! This will help us test the new behavior and ensure your code is ready when this becomes the new normal.
For more information as this feature develops, please see the [experimental script order docs](https://docs.astro.build/en/reference/experimental-flags/preserve-script-order/).

View file

@ -1,45 +0,0 @@
---
'@astrojs/markdoc': minor
'@astrojs/mdx': minor
'@astrojs/markdown-remark': minor
'astro': minor
---
Adds support for a new `experimental.headingIdCompat` flag
By default, Astro removes a trailing `-` from the end of IDs it generates for headings ending with
special characters. This differs from the behavior of common Markdown processors.
You can now disable this behavior with a new configuration flag:
```js
// astro.config.mjs
import { defineConfig } from "astro/config";
export default defineConfig({
experimental: {
headingIdCompat: true,
},
});
```
This can be useful when heading IDs and anchor links need to behave consistently across your site
and other platforms such as GitHub and npm.
If you are [using the `rehypeHeadingIds` plugin directly](https://docs.astro.build/en/guides/markdown-content/#heading-ids-and-plugins), you can also pass this new option:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
export default defineConfig({
markdown: {
rehypePlugins: [
[rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
otherPluginThatReliesOnHeadingIDs,
],
},
});
```

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes a bug in error handling that saving a content file with a schema error would display an "unhandled rejection" error instead of the correct schema error

View file

@ -1,27 +0,0 @@
---
'@astrojs/markdown-remark': minor
'astro': minor
---
Adds a new configuration option for Markdown syntax highlighting `excludeLangs`
This option provides better support for diagramming tools that rely on Markdown code blocks, such as Mermaid.js and D2 by allowing you to exclude specific languages from Astro's default syntax highlighting.
This option allows you to avoid rendering conflicts with tools that depend on the code not being highlighted without forcing you to disable syntax highlighting for other code blocks.
The following example configuration will exclude highlighting for `mermaid` and `math` code blocks:
```js
import { defineConfig } from 'astro/config';
export default defineConfig({
markdown: {
syntaxHighlight: {
type: 'shiki',
excludeLangs: ['mermaid', 'math'],
},
},
});
```
Read more about this new option in the [Markdown syntax highlighting configuration docs](https://docs.astro.build/en/reference/configuration-reference/#markdownsyntaxhighlight).

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes an edge case where the client router executed scripts twice when used with a custom swap function that only swaps parts of the DOM.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Updates `primsjs` to version 1.30.0, which adds support for more languages and fixes a security advisory which does not affect Astro.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes the documentation of the i18n configuration where `manual` was presented as a key of `routing` instead of an available value.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes an issue where astro:page-load fires before all scripts are executed

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Displays correct error message when sharp isn't installed

View file

@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.1.1",
"@astrojs/mdx": "^4.2.0",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^5.4.3"
"astro": "^5.5.0"
},
"peerDependencies": {
"astro": "^4.0.0 || ^5.0.0"

View file

@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/react": "^4.2.1",
"astro": "^5.4.3",
"astro": "^5.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^3.0.8"

View file

@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.3",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.8",
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -17,7 +17,7 @@
"@astrojs/vue": "^5.0.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"astro": "^5.4.3",
"astro": "^5.5.0",
"preact": "^10.26.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",

View file

@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.5",
"@preact/signals": "^2.0.1",
"astro": "^5.4.3",
"astro": "^5.5.0",
"preact": "^10.26.4"
}
}

View file

@ -13,7 +13,7 @@
"@astrojs/react": "^4.2.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"astro": "^5.4.3",
"astro": "^5.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}

View file

@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^5.0.5",
"astro": "^5.4.3",
"astro": "^5.5.0",
"solid-js": "^1.9.5"
}
}

View file

@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^7.0.6",
"astro": "^5.4.3",
"astro": "^5.5.0",
"svelte": "^5.22.6"
}
}

View file

@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.0.7",
"astro": "^5.4.3",
"astro": "^5.5.0",
"vue": "^3.5.13"
}
}

View file

@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.1.3",
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^5.4.3"
"astro": "^5.5.0"
},
"peerDependencies": {
"astro": "^4.0.0"

View file

@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/node": "^9.1.3",
"@astrojs/svelte": "^7.0.6",
"astro": "^5.4.3",
"astro": "^5.5.0",
"svelte": "^5.22.6"
}
}

View file

@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.4.3",
"astro": "^5.5.0",
"sass": "^1.85.1",
"sharp": "^0.33.3"
}

View file

@ -16,6 +16,6 @@
},
"devDependencies": {
"@types/node": "^18.17.8",
"astro": "^5.4.3"
"astro": "^5.5.0"
}
}

View file

@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/markdoc": "^0.12.11",
"astro": "^5.4.3"
"@astrojs/markdoc": "^0.13.0",
"astro": "^5.5.0"
}
}

View file

@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.1.1",
"@astrojs/mdx": "^4.2.0",
"@astrojs/preact": "^4.0.5",
"astro": "^5.4.3",
"astro": "^5.5.0",
"preact": "^10.26.4"
}
}

View file

@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.5",
"@nanostores/preact": "^0.5.2",
"astro": "^5.4.3",
"astro": "^5.5.0",
"nanostores": "^0.11.4",
"preact": "^10.26.4"
}

View file

@ -10,10 +10,10 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.1.1",
"@astrojs/mdx": "^4.2.0",
"@tailwindcss/vite": "^4.0.12",
"@types/canvas-confetti": "^1.9.0",
"astro": "^5.4.3",
"astro": "^5.5.0",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.0.12"
}

View file

@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
"astro": "^5.4.3",
"astro": "^5.5.0",
"vitest": "^3.0.8"
}
}

View file

@ -1,5 +1,148 @@
# astro
## 5.5.0
### Minor Changes
- [#13402](https://github.com/withastro/astro/pull/13402) [`3e7b498`](https://github.com/withastro/astro/commit/3e7b498dce52648484bb4deb04bf9e960c3d08e3) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new experimental flag called `experimental.preserveScriptOrder` that renders `<script>` and `<style>` tags in the same order as they are defined.
When rendering multiple `<style>` and `<script>` tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built.
With the new `preserveScriptOrder` flag enabled, Astro will generate the styles in the order they are defined:
```js title="astro.config.mjs"
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
preserveScriptOrder: true,
},
});
```
For example, the following component has two `<style>` tags, and both define the same style for the `body` tag:
```html
<p>I am a component</p>
<style>
body {
background: red;
}
</style>
<style>
body {
background: yellow;
}
</style>
```
Once the project is compiled, Astro will create an inline style where `yellow` appears first, and then `red`. Ultimately, the `red` background is applied:
```css
body {
background: #ff0;
}
body {
background: red;
}
```
When `experimental.preserveScriptOrder` is set to `true`, the order of the two styles is kept as it is, and in the style generated `red` appears first, and then `yellow`:
```css
body {
background: red;
}
body {
background: #ff0;
}
```
This is a breaking change to how Astro renders project code that contains multiple `<style>` and `<script>` tags in the same component. If you were previously compensating for Astro's behavior by writing these out of order, you will need to update your code.
This will eventually become the new default Astro behavior, so we encourage you to add this experimental style and script ordering as soon as you are able! This will help us test the new behavior and ensure your code is ready when this becomes the new normal.
For more information as this feature develops, please see the [experimental script order docs](https://docs.astro.build/en/reference/experimental-flags/preserve-script-order/).
- [#13352](https://github.com/withastro/astro/pull/13352) [`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7) Thanks [@delucis](https://github.com/delucis)! - Adds support for a new `experimental.headingIdCompat` flag
By default, Astro removes a trailing `-` from the end of IDs it generates for headings ending with
special characters. This differs from the behavior of common Markdown processors.
You can now disable this behavior with a new configuration flag:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
headingIdCompat: true,
},
});
```
This can be useful when heading IDs and anchor links need to behave consistently across your site
and other platforms such as GitHub and npm.
If you are [using the `rehypeHeadingIds` plugin directly](https://docs.astro.build/en/guides/markdown-content/#heading-ids-and-plugins), you can also pass this new option:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
export default defineConfig({
markdown: {
rehypePlugins: [
[rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
otherPluginThatReliesOnHeadingIDs,
],
},
});
```
- [#13311](https://github.com/withastro/astro/pull/13311) [`a3327ff`](https://github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e) Thanks [@chrisirhc](https://github.com/chrisirhc)! - Adds a new configuration option for Markdown syntax highlighting `excludeLangs`
This option provides better support for diagramming tools that rely on Markdown code blocks, such as Mermaid.js and D2 by allowing you to exclude specific languages from Astro's default syntax highlighting.
This option allows you to avoid rendering conflicts with tools that depend on the code not being highlighted without forcing you to disable syntax highlighting for other code blocks.
The following example configuration will exclude highlighting for `mermaid` and `math` code blocks:
```js
import { defineConfig } from 'astro/config';
export default defineConfig({
markdown: {
syntaxHighlight: {
type: 'shiki',
excludeLangs: ['mermaid', 'math'],
},
},
});
```
Read more about this new option in the [Markdown syntax highlighting configuration docs](https://docs.astro.build/en/reference/configuration-reference/#markdownsyntaxhighlight).
### Patch Changes
- [#13404](https://github.com/withastro/astro/pull/13404) [`4e78b4d`](https://github.com/withastro/astro/commit/4e78b4d10d2214c94752a1fef74db325053cf071) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug in error handling that saving a content file with a schema error would display an "unhandled rejection" error instead of the correct schema error
- [#13379](https://github.com/withastro/astro/pull/13379) [`d59eb22`](https://github.com/withastro/astro/commit/d59eb227334b788289533bac41f015b498179a2f) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an edge case where the client router executed scripts twice when used with a custom swap function that only swaps parts of the DOM.
- [#13393](https://github.com/withastro/astro/pull/13393) [`6b8fdb8`](https://github.com/withastro/astro/commit/6b8fdb8a113b6f76448b41beb990c33fafb09b3e) Thanks [@renovate](https://github.com/apps/renovate)! - Updates `primsjs` to version 1.30.0, which adds support for more languages and fixes a security advisory which does not affect Astro.
- [#13374](https://github.com/withastro/astro/pull/13374) [`7b75bc5`](https://github.com/withastro/astro/commit/7b75bc5c36bc338bcef5ef41502e87c184c117ec) Thanks [@ArmandPhilippot](https://github.com/ArmandPhilippot)! - Fixes the documentation of the i18n configuration where `manual` was presented as a key of `routing` instead of an available value.
- [#13380](https://github.com/withastro/astro/pull/13380) [`9bfa6e6`](https://github.com/withastro/astro/commit/9bfa6e6d8b95424436be405a80d5df3f2e2e72df) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue where astro:page-load fires before all scripts are executed
- [#13407](https://github.com/withastro/astro/pull/13407) [`0efdc22`](https://github.com/withastro/astro/commit/0efdc22b182f6cec4155a972f0dde1da686c5453) Thanks [@ascorbic](https://github.com/ascorbic)! - Displays correct error message when sharp isn't installed
- Updated dependencies [[`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7), [`a3327ff`](https://github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e)]:
- @astrojs/markdown-remark@6.3.0
## 5.4.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "5.4.3",
"version": "5.5.0",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",

View file

@ -1,5 +1,53 @@
# @astrojs/markdoc
## 0.13.0
### Minor Changes
- [#13352](https://github.com/withastro/astro/pull/13352) [`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7) Thanks [@delucis](https://github.com/delucis)! - Adds support for a new `experimental.headingIdCompat` flag
By default, Astro removes a trailing `-` from the end of IDs it generates for headings ending with
special characters. This differs from the behavior of common Markdown processors.
You can now disable this behavior with a new configuration flag:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
headingIdCompat: true,
},
});
```
This can be useful when heading IDs and anchor links need to behave consistently across your site
and other platforms such as GitHub and npm.
If you are [using the `rehypeHeadingIds` plugin directly](https://docs.astro.build/en/guides/markdown-content/#heading-ids-and-plugins), you can also pass this new option:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
export default defineConfig({
markdown: {
rehypePlugins: [
[rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
otherPluginThatReliesOnHeadingIDs,
],
},
});
```
### Patch Changes
- Updated dependencies [[`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7), [`a3327ff`](https://github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e)]:
- @astrojs/markdown-remark@6.3.0
## 0.12.11
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc in your Astro site",
"version": "0.12.11",
"version": "0.13.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -1,5 +1,53 @@
# @astrojs/mdx
## 4.2.0
### Minor Changes
- [#13352](https://github.com/withastro/astro/pull/13352) [`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7) Thanks [@delucis](https://github.com/delucis)! - Adds support for a new `experimental.headingIdCompat` flag
By default, Astro removes a trailing `-` from the end of IDs it generates for headings ending with
special characters. This differs from the behavior of common Markdown processors.
You can now disable this behavior with a new configuration flag:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
headingIdCompat: true,
},
});
```
This can be useful when heading IDs and anchor links need to behave consistently across your site
and other platforms such as GitHub and npm.
If you are [using the `rehypeHeadingIds` plugin directly](https://docs.astro.build/en/guides/markdown-content/#heading-ids-and-plugins), you can also pass this new option:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
export default defineConfig({
markdown: {
rehypePlugins: [
[rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
otherPluginThatReliesOnHeadingIDs,
],
},
});
```
### Patch Changes
- Updated dependencies [[`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7), [`a3327ff`](https://github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e)]:
- @astrojs/markdown-remark@6.3.0
## 4.1.1
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Add support for MDX pages in your Astro site",
"version": "4.1.1",
"version": "4.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -1,5 +1,71 @@
# @astrojs/markdown-remark
## 6.3.0
### Minor Changes
- [#13352](https://github.com/withastro/astro/pull/13352) [`cb886dc`](https://github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7) Thanks [@delucis](https://github.com/delucis)! - Adds support for a new `experimental.headingIdCompat` flag
By default, Astro removes a trailing `-` from the end of IDs it generates for headings ending with
special characters. This differs from the behavior of common Markdown processors.
You can now disable this behavior with a new configuration flag:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
headingIdCompat: true,
},
});
```
This can be useful when heading IDs and anchor links need to behave consistently across your site
and other platforms such as GitHub and npm.
If you are [using the `rehypeHeadingIds` plugin directly](https://docs.astro.build/en/guides/markdown-content/#heading-ids-and-plugins), you can also pass this new option:
```js
// astro.config.mjs
import { defineConfig } from 'astro/config';
import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
export default defineConfig({
markdown: {
rehypePlugins: [
[rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
otherPluginThatReliesOnHeadingIDs,
],
},
});
```
- [#13311](https://github.com/withastro/astro/pull/13311) [`a3327ff`](https://github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e) Thanks [@chrisirhc](https://github.com/chrisirhc)! - Adds a new configuration option for Markdown syntax highlighting `excludeLangs`
This option provides better support for diagramming tools that rely on Markdown code blocks, such as Mermaid.js and D2 by allowing you to exclude specific languages from Astro's default syntax highlighting.
This option allows you to avoid rendering conflicts with tools that depend on the code not being highlighted without forcing you to disable syntax highlighting for other code blocks.
The following example configuration will exclude highlighting for `mermaid` and `math` code blocks:
```js
import { defineConfig } from 'astro/config';
export default defineConfig({
markdown: {
syntaxHighlight: {
type: 'shiki',
excludeLangs: ['mermaid', 'math'],
},
},
});
```
Read more about this new option in the [Markdown syntax highlighting configuration docs](https://docs.astro.build/en/reference/configuration-reference/#markdownsyntaxhighlight).
## 6.2.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
"version": "6.2.1",
"version": "6.3.0",
"type": "module",
"author": "withastro",
"license": "MIT",

54
pnpm-lock.yaml generated
View file

@ -142,13 +142,13 @@ importers:
examples/basics:
dependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/blog:
dependencies:
'@astrojs/mdx':
specifier: ^4.1.1
specifier: ^4.2.0
version: link:../../packages/integrations/mdx
'@astrojs/rss':
specifier: ^4.0.11
@ -157,13 +157,13 @@ importers:
specifier: ^3.2.1
version: link:../../packages/integrations/sitemap
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/ssr:
@ -359,7 +359,7 @@ importers:
specifier: ^7.0.6
version: link:../../packages/integrations/svelte
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
svelte:
specifier: ^5.22.6
@ -368,7 +368,7 @@ importers:
examples/starlog:
dependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/with-markdoc:
dependencies:
'@astrojs/markdoc':
specifier: ^0.12.11
specifier: ^0.13.0
version: link:../../packages/integrations/markdoc
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
examples/with-mdx:
dependencies:
'@astrojs/mdx':
specifier: ^4.1.1
specifier: ^4.2.0
version: link:../../packages/integrations/mdx
'@astrojs/preact':
specifier: ^4.0.5
version: link:../../packages/integrations/preact
astro:
specifier: ^5.4.3
specifier: ^5.5.0
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.4.3
specifier: ^5.5.0
version: link:../../packages/astro
nanostores:
specifier: ^0.11.4
@ -431,7 +431,7 @@ importers:
examples/with-tailwindcss:
dependencies:
'@astrojs/mdx':
specifier: ^4.1.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.4.3
specifier: ^5.5.0
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@ -452,7 +452,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
specifier: ^5.4.3
specifier: ^5.5.0
version: link:../../packages/astro
vitest:
specifier: ^3.0.8