[ci] release (#6652)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2023-03-28 10:17:46 -07:00 committed by GitHub
parent 2e92e9aa97
commit af108e4b4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
56 changed files with 195 additions and 159 deletions

View file

@ -1,5 +0,0 @@
---
'create-astro': patch
---
Fix: Log an error when passing a `--template` that does not exist

View file

@ -1,5 +0,0 @@
---
'@astrojs/partytown': minor
---
Expose more partytown config properties

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Prevent frontmatter errors from crashing the dev server

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add a additional check for `null` on the `req.body` check in `NodeApp.render`.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
add new flag with open for dev and preview

View file

@ -1,6 +0,0 @@
---
'astro': patch
'@astrojs/image': patch
---
Invalidates cache when changing serviceEntryPoint

View file

@ -1,42 +0,0 @@
---
'@astrojs/markdoc': minor
'astro': patch
---
Simplify Markdoc configuration with a new `markdoc.config.mjs` file. This lets you import Astro components directly to render as Markdoc tags and nodes, without the need for the previous `components` property. This new configuration also unlocks passing variables to your Markdoc from the `Content` component ([see the new docs](https://docs.astro.build/en/guides/integrations-guide/markdoc/#pass-markdoc-variables)).
## Migration
Move any existing Markdoc config from your `astro.config` to a new `markdoc.config.mjs` file at the root of your project. This should be applied as a default export, with the optional `defineMarkdocConfig()` helper for autocomplete in your editor.
This example configures an `aside` Markdoc tag. Note that components should be imported and applied to the `render` attribute _directly,_ instead of passing the name as a string:
```js
// markdoc.config.mjs
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import Aside from './src/components/Aside.astro';
export default defineMarkdocConfig({
tags: {
aside: {
render: Aside,
}
}
});
```
You should also remove the `components` prop from your `Content` components. Since components are imported into your config directly, this is no longer needed.
```diff
---
- import Aside from '../components/Aside.astro';
import { getEntryBySlug } from 'astro:content';
const entry = await getEntryBySlug('docs', 'why-markdoc');
const { Content } = await entry.render();
---
<Content
- components={{ Aside }}
/>
```

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes an attribute naming mismatch in the definition for <link> elements in astro.JSX

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Throw better error when a dynamic endpoint without additional extensions is prerendered with `undefined` params.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix images not having the proper path when using `base`

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"@astrojs/mdx": "^0.18.2",
"@astrojs/rss": "^2.3.1",
"@astrojs/sitemap": "^1.2.1"

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"

View file

@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
},
"devDependencies": {
"@astrojs/deno": "^4.1.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.2.1",
"@types/alpinejs": "^3.7.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"lit": "^2.2.5",
"@astrojs/lit": "^1.3.0",
"@webcomponents/template-shadowroot": "^0.1.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"preact": "^10.7.3",
"@astrojs/preact": "^2.1.0",
"@preact/signals": "^1.1.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^2.1.0",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^2.1.0"
}

View file

@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.1.0",
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"vue": "^3.2.37",
"@astrojs/vue": "^2.1.0"
}

View file

@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^5.1.0",
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.1.0",
"@astrojs/node": "^5.1.0",

View file

@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/markdoc": "^0.0.5",
"astro": "^2.1.7",
"@astrojs/markdoc": "^0.1.0",
"astro": "^2.1.8",
"kleur": "^4.1.5"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"@astrojs/markdown-remark": "^2.1.2",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7"
"astro": "^2.1.8"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"preact": "^10.6.5",
"@astrojs/preact": "^2.1.0",
"@astrojs/mdx": "^0.18.2"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"preact": "^10.7.3",
"@astrojs/preact": "^2.1.0",
"nanostores": "^0.5.12",

View file

@ -14,7 +14,7 @@
"@astrojs/mdx": "^0.18.2",
"@astrojs/tailwind": "^3.1.1",
"@types/canvas-confetti": "^1.4.3",
"astro": "^2.1.7",
"astro": "^2.1.8",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}

View file

@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
"astro": "^2.1.7",
"astro": "^2.1.8",
"vitest": "^0.20.3"
}
}

View file

@ -1,5 +1,61 @@
# astro
## 2.1.8
### Patch Changes
- [#6675](https://github.com/withastro/astro/pull/6675) [`1f783e320`](https://github.com/withastro/astro/commit/1f783e32075c20b13063599696644f5d47b75d8d) Thanks [@matthewp](https://github.com/matthewp)! - Prevent frontmatter errors from crashing the dev server
- [#6688](https://github.com/withastro/astro/pull/6688) [`2e92e9aa9`](https://github.com/withastro/astro/commit/2e92e9aa976735c3ddb647152bb9c4850136e386) Thanks [@JohannesKlauss](https://github.com/JohannesKlauss)! - Add a additional check for `null` on the `req.body` check in `NodeApp.render`.
- [#6578](https://github.com/withastro/astro/pull/6578) [`adecda7d6`](https://github.com/withastro/astro/commit/adecda7d6009793c5d20519a997e3b7afb08ad57) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - add new flag with open for dev and preview
- [#6680](https://github.com/withastro/astro/pull/6680) [`386336441`](https://github.com/withastro/astro/commit/386336441ad70017eea22db0683591126131db21) Thanks [@koriwi](https://github.com/koriwi)! - Invalidates cache when changing serviceEntryPoint
- [#6653](https://github.com/withastro/astro/pull/6653) [`7c439868a`](https://github.com/withastro/astro/commit/7c439868a3bc7d466418da9af669966014f3d9fe) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Simplify Markdoc configuration with a new `markdoc.config.mjs` file. This lets you import Astro components directly to render as Markdoc tags and nodes, without the need for the previous `components` property. This new configuration also unlocks passing variables to your Markdoc from the `Content` component ([see the new docs](https://docs.astro.build/en/guides/integrations-guide/markdoc/#pass-markdoc-variables)).
## Migration
Move any existing Markdoc config from your `astro.config` to a new `markdoc.config.mjs` file at the root of your project. This should be applied as a default export, with the optional `defineMarkdocConfig()` helper for autocomplete in your editor.
This example configures an `aside` Markdoc tag. Note that components should be imported and applied to the `render` attribute _directly,_ instead of passing the name as a string:
```js
// markdoc.config.mjs
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import Aside from './src/components/Aside.astro';
export default defineMarkdocConfig({
tags: {
aside: {
render: Aside,
},
},
});
```
You should also remove the `components` prop from your `Content` components. Since components are imported into your config directly, this is no longer needed.
```diff
---
- import Aside from '../components/Aside.astro';
import { getEntryBySlug } from 'astro:content';
const entry = await getEntryBySlug('docs', 'why-markdoc');
const { Content } = await entry.render();
---
<Content
- components={{ Aside }}
/>
```
- [#6639](https://github.com/withastro/astro/pull/6639) [`25cd3e574`](https://github.com/withastro/astro/commit/25cd3e574999c1c7294a089ad8c39df27ccdbf17) Thanks [@tony-sull](https://github.com/tony-sull)! - Fixes an attribute naming mismatch in the definition for <link> elements in astro.JSX
- [#6353](https://github.com/withastro/astro/pull/6353) [`4bf87c64f`](https://github.com/withastro/astro/commit/4bf87c64ff7e9ca49e0f5c27e06bd49faaf60542) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Throw better error when a dynamic endpoint without additional extensions is prerendered with `undefined` params.
- [#6643](https://github.com/withastro/astro/pull/6643) [`fc0ed9c53`](https://github.com/withastro/astro/commit/fc0ed9c53cd374860bbdb2503318a55ca09a2662) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix images not having the proper path when using `base`
## 2.1.7
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "2.1.7",
"version": "2.1.8",
"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,11 @@
# create-astro
## 3.1.2
### Patch Changes
- [#6677](https://github.com/withastro/astro/pull/6677) [`4a3262060`](https://github.com/withastro/astro/commit/4a32620600966ea89ddb5e1669d89a53e85ccf9a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: Log an error when passing a `--template` that does not exist
## 3.1.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "create-astro",
"version": "3.1.1",
"version": "3.1.2",
"type": "module",
"author": "withastro",
"license": "MIT",

View file

@ -38,7 +38,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"astro": "workspace:^2.1.7"
"astro": "workspace:^2.1.8"
},
"devDependencies": {
"astro": "workspace:*",

View file

@ -33,7 +33,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.1.7"
"astro": "workspace:^2.1.8"
},
"devDependencies": {
"astro": "workspace:*",

View file

@ -1,5 +1,14 @@
# @astrojs/image
## 0.16.3
### Patch Changes
- [#6680](https://github.com/withastro/astro/pull/6680) [`386336441`](https://github.com/withastro/astro/commit/386336441ad70017eea22db0683591126131db21) Thanks [@koriwi](https://github.com/koriwi)! - Invalidates cache when changing serviceEntryPoint
- Updated dependencies [[`1f783e320`](https://github.com/withastro/astro/commit/1f783e32075c20b13063599696644f5d47b75d8d), [`2e92e9aa9`](https://github.com/withastro/astro/commit/2e92e9aa976735c3ddb647152bb9c4850136e386), [`adecda7d6`](https://github.com/withastro/astro/commit/adecda7d6009793c5d20519a997e3b7afb08ad57), [`386336441`](https://github.com/withastro/astro/commit/386336441ad70017eea22db0683591126131db21), [`7c439868a`](https://github.com/withastro/astro/commit/7c439868a3bc7d466418da9af669966014f3d9fe), [`25cd3e574`](https://github.com/withastro/astro/commit/25cd3e574999c1c7294a089ad8c39df27ccdbf17), [`4bf87c64f`](https://github.com/withastro/astro/commit/4bf87c64ff7e9ca49e0f5c27e06bd49faaf60542), [`fc0ed9c53`](https://github.com/withastro/astro/commit/fc0ed9c53cd374860bbdb2503318a55ca09a2662)]:
- astro@2.1.8
## 0.16.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/image",
"description": "Load and transform images in your Astro site",
"version": "0.16.2",
"version": "0.16.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -63,7 +63,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
"astro": "workspace:^2.1.7",
"astro": "workspace:^2.1.8",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {

View file

@ -1,5 +1,52 @@
# @astrojs/markdoc
## 0.1.0
### Minor Changes
- [#6653](https://github.com/withastro/astro/pull/6653) [`7c439868a`](https://github.com/withastro/astro/commit/7c439868a3bc7d466418da9af669966014f3d9fe) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Simplify Markdoc configuration with a new `markdoc.config.mjs` file. This lets you import Astro components directly to render as Markdoc tags and nodes, without the need for the previous `components` property. This new configuration also unlocks passing variables to your Markdoc from the `Content` component ([see the new docs](https://docs.astro.build/en/guides/integrations-guide/markdoc/#pass-markdoc-variables)).
## Migration
Move any existing Markdoc config from your `astro.config` to a new `markdoc.config.mjs` file at the root of your project. This should be applied as a default export, with the optional `defineMarkdocConfig()` helper for autocomplete in your editor.
This example configures an `aside` Markdoc tag. Note that components should be imported and applied to the `render` attribute _directly,_ instead of passing the name as a string:
```js
// markdoc.config.mjs
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import Aside from './src/components/Aside.astro';
export default defineMarkdocConfig({
tags: {
aside: {
render: Aside,
},
},
});
```
You should also remove the `components` prop from your `Content` components. Since components are imported into your config directly, this is no longer needed.
```diff
---
- import Aside from '../components/Aside.astro';
import { getEntryBySlug } from 'astro:content';
const entry = await getEntryBySlug('docs', 'why-markdoc');
const { Content } = await entry.render();
---
<Content
- components={{ Aside }}
/>
```
### Patch Changes
- Updated dependencies [[`1f783e320`](https://github.com/withastro/astro/commit/1f783e32075c20b13063599696644f5d47b75d8d), [`2e92e9aa9`](https://github.com/withastro/astro/commit/2e92e9aa976735c3ddb647152bb9c4850136e386), [`adecda7d6`](https://github.com/withastro/astro/commit/adecda7d6009793c5d20519a997e3b7afb08ad57), [`386336441`](https://github.com/withastro/astro/commit/386336441ad70017eea22db0683591126131db21), [`7c439868a`](https://github.com/withastro/astro/commit/7c439868a3bc7d466418da9af669966014f3d9fe), [`25cd3e574`](https://github.com/withastro/astro/commit/25cd3e574999c1c7294a089ad8c39df27ccdbf17), [`4bf87c64f`](https://github.com/withastro/astro/commit/4bf87c64ff7e9ca49e0f5c27e06bd49faaf60542), [`fc0ed9c53`](https://github.com/withastro/astro/commit/fc0ed9c53cd374860bbdb2503318a55ca09a2662)]:
- astro@2.1.8
## 0.0.5
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc pages in your Astro site",
"version": "0.0.5",
"version": "0.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -41,7 +41,7 @@
"zod": "^3.17.3"
},
"peerDependencies": {
"astro": "workspace:^2.1.0"
"astro": "workspace:^2.1.8"
},
"devDependencies": {
"@types/chai": "^4.3.1",

View file

@ -39,7 +39,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.1.7"
"astro": "workspace:^2.1.8"
},
"devDependencies": {
"@netlify/edge-handler-types": "^0.34.1",

View file

@ -35,7 +35,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "workspace:^2.1.7"
"astro": "workspace:^2.1.8"
},
"devDependencies": {
"@types/send": "^0.17.1",

View file

@ -1,5 +1,11 @@
# @astrojs/partytown
## 1.2.0
### Minor Changes
- [#6667](https://github.com/withastro/astro/pull/6667) [`aff53c109`](https://github.com/withastro/astro/commit/aff53c109c4f7b08b6b80e58e9ca5cb481131eb5) Thanks [@thebinarymutant](https://github.com/thebinarymutant)! - Expose more partytown config properties
## 1.1.1
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/partytown",
"description": "Use Partytown to move scripts into a web worker in your Astro project",
"version": "1.1.1",
"version": "1.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -43,7 +43,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
"astro": "workspace:^2.1.7",
"astro": "workspace:^2.1.8",
"svelte": "^3.54.0"
},
"engines": {

View file

@ -40,7 +40,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
"astro": "workspace:^2.1.7",
"astro": "workspace:^2.1.8",
"tailwindcss": "^3.0.24"
},
"pnpm": {

View file

@ -53,7 +53,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
"astro": "workspace:^2.1.7"
"astro": "workspace:^2.1.8"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",

View file

@ -50,7 +50,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
"astro": "workspace:^2.1.7",
"astro": "workspace:^2.1.8",
"vue": "^3.2.30"
},
"engines": {

View file

@ -104,7 +104,7 @@ importers:
examples/basics:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
dependencies:
astro: link:../../packages/astro
@ -113,7 +113,7 @@ importers:
'@astrojs/mdx': ^0.18.2
'@astrojs/rss': ^2.3.1
'@astrojs/sitemap': ^1.2.1
astro: ^2.1.7
astro: ^2.1.8
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@ -122,14 +122,14 @@ importers:
examples/component:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^4.1.0
astro: ^2.1.7
astro: ^2.1.8
dependencies:
astro: link:../../packages/astro
devDependencies:
@ -145,7 +145,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
astro: ^2.1.7
astro: ^2.1.8
html-escaper: ^3.0.3
preact: ^10.7.3
react: ^18.1.0
@ -171,7 +171,7 @@ importers:
'@astrojs/alpinejs': ^0.2.1
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
astro: ^2.1.7
astro: ^2.1.8
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@ -182,7 +182,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.3.0
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^2.1.7
astro: ^2.1.8
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@ -197,7 +197,7 @@ importers:
'@astrojs/solid-js': ^2.1.0
'@astrojs/svelte': ^2.1.0
'@astrojs/vue': ^2.1.0
astro: ^2.1.7
astro: ^2.1.8
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@ -222,7 +222,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.1.0
'@preact/signals': ^1.1.0
astro: ^2.1.7
astro: ^2.1.8
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@ -235,7 +235,7 @@ importers:
'@astrojs/react': ^2.1.0
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
astro: ^2.1.7
astro: ^2.1.8
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@ -249,7 +249,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^2.1.0
astro: ^2.1.7
astro: ^2.1.8
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@ -259,7 +259,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^2.1.0
astro: ^2.1.7
astro: ^2.1.8
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@ -269,7 +269,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^2.1.0
astro: ^2.1.7
astro: ^2.1.8
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@ -279,32 +279,32 @@ importers:
examples/hackernews:
specifiers:
'@astrojs/node': ^5.1.0
astro: ^2.1.7
astro: ^2.1.8
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
dependencies:
astro: link:../../packages/astro
@ -312,7 +312,7 @@ importers:
specifiers:
'@astrojs/node': ^5.1.0
'@astrojs/svelte': ^2.1.0
astro: ^2.1.7
astro: ^2.1.8
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@ -328,8 +328,8 @@ importers:
examples/with-markdoc:
specifiers:
'@astrojs/markdoc': ^0.0.5
astro: ^2.1.7
'@astrojs/markdoc': ^0.1.0
astro: ^2.1.8
kleur: ^4.1.5
dependencies:
'@astrojs/markdoc': link:../../packages/integrations/markdoc
@ -339,7 +339,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^2.1.2
astro: ^2.1.7
astro: ^2.1.8
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@ -356,7 +356,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
dependencies:
astro: link:../../packages/astro
@ -364,7 +364,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.18.2
'@astrojs/preact': ^2.1.0
astro: ^2.1.7
astro: ^2.1.8
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@ -376,7 +376,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.1.0
'@nanostores/preact': ^0.1.3
astro: ^2.1.7
astro: ^2.1.8
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@ -391,7 +391,7 @@ importers:
'@astrojs/mdx': ^0.18.2
'@astrojs/tailwind': ^3.1.1
'@types/canvas-confetti': ^1.4.3
astro: ^2.1.7
astro: ^2.1.8
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@ -408,7 +408,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@ -418,7 +418,7 @@ importers:
examples/with-vitest:
specifiers:
astro: ^2.1.7
astro: ^2.1.8
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro