mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] release (#13513)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
ff9d69e344
commit
ddc98eb2ad
54 changed files with 238 additions and 178 deletions
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
The `ActionAPIContext.rewrite` method is deprecated and will be removed in a future major version of Astro
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixes a bug where the functions `Astro.preferredLocale` and `Astro.preferredLocaleList` would return the incorrect locales
|
||||
when the Astro configuration specifies a list of `codes`. Before, the functions would return the `path`, instead now the functions
|
||||
return a list built from `codes`.
|
|
@ -1,17 +0,0 @@
|
|||
---
|
||||
'@astrojs/cloudflare': patch
|
||||
'@astrojs/alpinejs': patch
|
||||
'@astrojs/markdoc': patch
|
||||
'@astrojs/netlify': patch
|
||||
'@astrojs/preact': patch
|
||||
'@astrojs/svelte': patch
|
||||
'@astrojs/react': patch
|
||||
'@astrojs/solid-js': patch
|
||||
'@astrojs/mdx': patch
|
||||
'@astrojs/vue': patch
|
||||
'@astrojs/studio': patch
|
||||
'astro': patch
|
||||
'@astrojs/db': patch
|
||||
---
|
||||
|
||||
update `vite` to the latest version
|
|
@ -1,51 +0,0 @@
|
|||
---
|
||||
'@astrojs/cloudflare': minor
|
||||
---
|
||||
|
||||
Automatically configures Cloudflare KV storage when experimental sessions are enabled
|
||||
|
||||
|
||||
If the `experimental.session` flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI:
|
||||
|
||||
```sh
|
||||
npx wrangler kv namespace create SESSION
|
||||
```
|
||||
|
||||
This will log the id of the created namespace. You can then add it to your `wrangler.json`/`wrangler.toml` file like this:
|
||||
|
||||
```jsonc
|
||||
// wrangler.json
|
||||
{
|
||||
"kv_namespaces": [
|
||||
{
|
||||
"binding": "SESSION",
|
||||
"id": "<your kv namespace id here>"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
By default it uses the binding name `SESSION`, but if you want to use a different binding name you can do so by passing the `sessionKVBindingName` option to the adapter. For example:
|
||||
|
||||
```js
|
||||
import { defineConfig } from 'astro/config';
|
||||
import cloudflare from '@astrojs/cloudflare';
|
||||
export default defineConfig({
|
||||
output: 'server',
|
||||
site: `http://example.com`,
|
||||
adapter: cloudflare({
|
||||
platformProxy: {
|
||||
enabled: true,
|
||||
},
|
||||
sessionKVBindingName: 'MY_SESSION',
|
||||
}),
|
||||
experimental: {
|
||||
session: true,
|
||||
}
|
||||
});
|
||||
|
||||
```
|
||||
|
||||
See [the Cloudflare KV docs](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) for more details on setting up KV namespaces.
|
||||
|
||||
See [the experimental session docs](https://docs.astro.build/en/reference/experimental-flags/sessions/) for more information on configuring session storage.
|
|
@ -10,6 +10,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.2.2",
|
||||
"@astrojs/mdx": "^4.2.3",
|
||||
"@astrojs/rss": "^4.0.11",
|
||||
"@astrojs/sitemap": "^3.3.0",
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
],
|
||||
"scripts": {},
|
||||
"devDependencies": {
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "^4.0.0 || ^5.0.0"
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"test": "vitest run"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/react": "^4.2.2",
|
||||
"astro": "^5.5.5",
|
||||
"@astrojs/react": "^4.2.3",
|
||||
"astro": "^5.5.6",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"vitest": "^3.0.9"
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/alpinejs": "^0.4.4",
|
||||
"@astrojs/alpinejs": "^0.4.5",
|
||||
"@types/alpinejs": "^3.13.11",
|
||||
"alpinejs": "^3.14.9",
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,14 +10,14 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/preact": "^4.0.7",
|
||||
"@astrojs/react": "^4.2.2",
|
||||
"@astrojs/solid-js": "^5.0.6",
|
||||
"@astrojs/svelte": "^7.0.8",
|
||||
"@astrojs/vue": "^5.0.8",
|
||||
"@astrojs/preact": "^4.0.8",
|
||||
"@astrojs/react": "^4.2.3",
|
||||
"@astrojs/solid-js": "^5.0.7",
|
||||
"@astrojs/svelte": "^7.0.9",
|
||||
"@astrojs/vue": "^5.0.9",
|
||||
"@types/react": "^18.3.20",
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"preact": "^10.26.4",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/preact": "^4.0.7",
|
||||
"@astrojs/preact": "^4.0.8",
|
||||
"@preact/signals": "^2.0.2",
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"preact": "^10.26.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/react": "^4.2.2",
|
||||
"@astrojs/react": "^4.2.3",
|
||||
"@types/react": "^18.3.20",
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1"
|
||||
}
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/solid-js": "^5.0.6",
|
||||
"astro": "^5.5.5",
|
||||
"@astrojs/solid-js": "^5.0.7",
|
||||
"astro": "^5.5.6",
|
||||
"solid-js": "^1.9.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/svelte": "^7.0.8",
|
||||
"astro": "^5.5.5",
|
||||
"@astrojs/svelte": "^7.0.9",
|
||||
"astro": "^5.5.6",
|
||||
"svelte": "^5.25.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/vue": "^5.0.8",
|
||||
"astro": "^5.5.5",
|
||||
"@astrojs/vue": "^5.0.9",
|
||||
"astro": "^5.5.6",
|
||||
"vue": "^3.5.13"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/node": "^9.1.3",
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
],
|
||||
"scripts": {},
|
||||
"devDependencies": {
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "^4.0.0"
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/node": "^9.1.3",
|
||||
"@astrojs/svelte": "^7.0.8",
|
||||
"astro": "^5.5.5",
|
||||
"@astrojs/svelte": "^7.0.9",
|
||||
"astro": "^5.5.6",
|
||||
"svelte": "^5.25.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"sass": "^1.86.0",
|
||||
"sharp": "^0.33.3"
|
||||
}
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.17.8",
|
||||
"astro": "^5.5.5"
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/markdoc": "^0.13.2",
|
||||
"astro": "^5.5.5"
|
||||
"@astrojs/markdoc": "^0.13.3",
|
||||
"astro": "^5.5.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.2.2",
|
||||
"@astrojs/preact": "^4.0.7",
|
||||
"astro": "^5.5.5",
|
||||
"@astrojs/mdx": "^4.2.3",
|
||||
"@astrojs/preact": "^4.0.8",
|
||||
"astro": "^5.5.6",
|
||||
"preact": "^10.26.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/preact": "^4.0.7",
|
||||
"@astrojs/preact": "^4.0.8",
|
||||
"@nanostores/preact": "^0.5.2",
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"nanostores": "^0.11.4",
|
||||
"preact": "^10.26.4"
|
||||
}
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.2.2",
|
||||
"@astrojs/mdx": "^4.2.3",
|
||||
"@tailwindcss/vite": "^4.0.17",
|
||||
"@types/canvas-confetti": "^1.9.0",
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"canvas-confetti": "^1.9.3",
|
||||
"tailwindcss": "^4.0.17"
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"test": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.5",
|
||||
"astro": "^5.5.6",
|
||||
"vitest": "^3.0.9"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
# astro
|
||||
|
||||
## 5.5.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13429](https://github.com/withastro/astro/pull/13429) [`06de673`](https://github.com/withastro/astro/commit/06de673375f2339eb1bf8eda03d79177598979a9) Thanks [@ematipico](https://github.com/ematipico)! - The `ActionAPIContext.rewrite` method is deprecated and will be removed in a future major version of Astro
|
||||
|
||||
- [#13524](https://github.com/withastro/astro/pull/13524) [`82cd583`](https://github.com/withastro/astro/commit/82cd5832860d70ea7524473ae927db0cc2682b12) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where the functions `Astro.preferredLocale` and `Astro.preferredLocaleList` would return the incorrect locales
|
||||
when the Astro configuration specifies a list of `codes`. Before, the functions would return the `path`, instead now the functions
|
||||
return a list built from `codes`.
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 5.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "astro",
|
||||
"version": "5.5.5",
|
||||
"version": "5.5.6",
|
||||
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
||||
"type": "module",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
# @astrojs/db
|
||||
|
||||
## 0.14.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
- Updated dependencies [[`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3)]:
|
||||
- @astrojs/studio@0.1.6
|
||||
|
||||
## 0.14.9
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/db",
|
||||
"version": "0.14.9",
|
||||
"version": "0.14.10",
|
||||
"description": "Add libSQL and Astro Studio support to your Astro site",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/alpinejs
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 0.4.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/alpinejs",
|
||||
"description": "Use Alpine within Astro",
|
||||
"version": "0.4.4",
|
||||
"version": "0.4.5",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,62 @@
|
|||
# @astrojs/cloudflare
|
||||
|
||||
## 12.4.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#13514](https://github.com/withastro/astro/pull/13514) [`a9aafec`](https://github.com/withastro/astro/commit/a9aafec47a4d8a92c826663dca2f9850643651ec) Thanks [@ascorbic](https://github.com/ascorbic)! - Automatically configures Cloudflare KV storage when experimental sessions are enabled
|
||||
|
||||
If the `experimental.session` flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI:
|
||||
|
||||
```sh
|
||||
npx wrangler kv namespace create SESSION
|
||||
```
|
||||
|
||||
This will log the id of the created namespace. You can then add it to your `wrangler.json`/`wrangler.toml` file like this:
|
||||
|
||||
```jsonc
|
||||
// wrangler.json
|
||||
{
|
||||
"kv_namespaces": [
|
||||
{
|
||||
"binding": "SESSION",
|
||||
"id": "<your kv namespace id here>",
|
||||
},
|
||||
],
|
||||
}
|
||||
```
|
||||
|
||||
By default it uses the binding name `SESSION`, but if you want to use a different binding name you can do so by passing the `sessionKVBindingName` option to the adapter. For example:
|
||||
|
||||
```js
|
||||
import { defineConfig } from 'astro/config';
|
||||
import cloudflare from '@astrojs/cloudflare';
|
||||
export default defineConfig({
|
||||
output: 'server',
|
||||
site: `http://example.com`,
|
||||
adapter: cloudflare({
|
||||
platformProxy: {
|
||||
enabled: true,
|
||||
},
|
||||
sessionKVBindingName: 'MY_SESSION',
|
||||
}),
|
||||
experimental: {
|
||||
session: true,
|
||||
},
|
||||
});
|
||||
```
|
||||
|
||||
See [the Cloudflare KV docs](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) for more details on setting up KV namespaces.
|
||||
|
||||
See [the experimental session docs](https://docs.astro.build/en/reference/experimental-flags/sessions/) for more information on configuring session storage.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
- Updated dependencies []:
|
||||
- @astrojs/underscore-redirects@0.6.0
|
||||
|
||||
## 12.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/cloudflare",
|
||||
"description": "Deploy your site to Cloudflare Workers/Pages",
|
||||
"version": "12.3.1",
|
||||
"version": "12.4.0",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/markdoc
|
||||
|
||||
## 0.13.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 0.13.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/markdoc",
|
||||
"description": "Add support for Markdoc in your Astro site",
|
||||
"version": "0.13.2",
|
||||
"version": "0.13.3",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/mdx
|
||||
|
||||
## 4.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 4.2.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/mdx",
|
||||
"description": "Add support for MDX pages in your Astro site",
|
||||
"version": "4.2.2",
|
||||
"version": "4.2.3",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
# @astrojs/netlify
|
||||
|
||||
## 6.2.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
- Updated dependencies []:
|
||||
- @astrojs/underscore-redirects@0.6.0
|
||||
|
||||
## 6.2.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/netlify",
|
||||
"description": "Deploy your site to Netlify",
|
||||
"version": "6.2.4",
|
||||
"version": "6.2.5",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/preact
|
||||
|
||||
## 4.0.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 4.0.7
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/preact",
|
||||
"description": "Use Preact components within Astro",
|
||||
"version": "4.0.7",
|
||||
"version": "4.0.8",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/react
|
||||
|
||||
## 4.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 4.2.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/react",
|
||||
"description": "Use React components within Astro",
|
||||
"version": "4.2.2",
|
||||
"version": "4.2.3",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/solid-js
|
||||
|
||||
## 5.0.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 5.0.6
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/solid-js",
|
||||
"version": "5.0.6",
|
||||
"version": "5.0.7",
|
||||
"description": "Use Solid components within Astro",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/svelte
|
||||
|
||||
## 7.0.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 7.0.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/svelte",
|
||||
"version": "7.0.8",
|
||||
"version": "7.0.9",
|
||||
"description": "Use Svelte components within Astro",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/vue
|
||||
|
||||
## 5.0.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 5.0.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/vue",
|
||||
"version": "5.0.8",
|
||||
"version": "5.0.9",
|
||||
"description": "Use Vue components within Astro",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/studio
|
||||
|
||||
## 0.1.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
|
||||
|
||||
## 0.1.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/studio",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"description": "Internal package powering integrations between Astro projects and Astro Studio",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
85
pnpm-lock.yaml
generated
85
pnpm-lock.yaml
generated
|
@ -142,13 +142,13 @@ importers:
|
|||
examples/basics:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/blog:
|
||||
dependencies:
|
||||
'@astrojs/mdx':
|
||||
specifier: ^4.2.2
|
||||
specifier: ^4.2.3
|
||||
version: link:../../packages/integrations/mdx
|
||||
'@astrojs/rss':
|
||||
specifier: ^4.0.11
|
||||
|
@ -157,22 +157,22 @@ importers:
|
|||
specifier: ^3.3.0
|
||||
version: link:../../packages/integrations/sitemap
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/component:
|
||||
devDependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/container-with-vitest:
|
||||
dependencies:
|
||||
'@astrojs/react':
|
||||
specifier: ^4.2.2
|
||||
specifier: ^4.2.3
|
||||
version: link:../../packages/integrations/react
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
react:
|
||||
specifier: ^18.3.1
|
||||
|
@ -194,7 +194,7 @@ importers:
|
|||
examples/framework-alpine:
|
||||
dependencies:
|
||||
'@astrojs/alpinejs':
|
||||
specifier: ^0.4.4
|
||||
specifier: ^0.4.5
|
||||
version: link:../../packages/integrations/alpinejs
|
||||
'@types/alpinejs':
|
||||
specifier: ^3.13.11
|
||||
|
@ -203,25 +203,25 @@ importers:
|
|||
specifier: ^3.14.9
|
||||
version: 3.14.9
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/framework-multiple:
|
||||
dependencies:
|
||||
'@astrojs/preact':
|
||||
specifier: ^4.0.7
|
||||
specifier: ^4.0.8
|
||||
version: link:../../packages/integrations/preact
|
||||
'@astrojs/react':
|
||||
specifier: ^4.2.2
|
||||
specifier: ^4.2.3
|
||||
version: link:../../packages/integrations/react
|
||||
'@astrojs/solid-js':
|
||||
specifier: ^5.0.6
|
||||
specifier: ^5.0.7
|
||||
version: link:../../packages/integrations/solid
|
||||
'@astrojs/svelte':
|
||||
specifier: ^7.0.8
|
||||
specifier: ^7.0.9
|
||||
version: link:../../packages/integrations/svelte
|
||||
'@astrojs/vue':
|
||||
specifier: ^5.0.8
|
||||
specifier: ^5.0.9
|
||||
version: link:../../packages/integrations/vue
|
||||
'@types/react':
|
||||
specifier: ^18.3.20
|
||||
|
@ -230,7 +230,7 @@ importers:
|
|||
specifier: ^18.3.5
|
||||
version: 18.3.5(@types/react@18.3.20)
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.26.4
|
||||
|
@ -254,13 +254,13 @@ importers:
|
|||
examples/framework-preact:
|
||||
dependencies:
|
||||
'@astrojs/preact':
|
||||
specifier: ^4.0.7
|
||||
specifier: ^4.0.8
|
||||
version: link:../../packages/integrations/preact
|
||||
'@preact/signals':
|
||||
specifier: ^2.0.2
|
||||
version: 2.0.2(preact@10.26.4)
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.26.4
|
||||
|
@ -269,7 +269,7 @@ importers:
|
|||
examples/framework-react:
|
||||
dependencies:
|
||||
'@astrojs/react':
|
||||
specifier: ^4.2.2
|
||||
specifier: ^4.2.3
|
||||
version: link:../../packages/integrations/react
|
||||
'@types/react':
|
||||
specifier: ^18.3.20
|
||||
|
@ -278,7 +278,7 @@ importers:
|
|||
specifier: ^18.3.5
|
||||
version: 18.3.5(@types/react@18.3.20)
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
react:
|
||||
specifier: ^18.3.1
|
||||
|
@ -290,10 +290,10 @@ importers:
|
|||
examples/framework-solid:
|
||||
dependencies:
|
||||
'@astrojs/solid-js':
|
||||
specifier: ^5.0.6
|
||||
specifier: ^5.0.7
|
||||
version: link:../../packages/integrations/solid
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
solid-js:
|
||||
specifier: ^1.9.5
|
||||
|
@ -302,10 +302,10 @@ importers:
|
|||
examples/framework-svelte:
|
||||
dependencies:
|
||||
'@astrojs/svelte':
|
||||
specifier: ^7.0.8
|
||||
specifier: ^7.0.9
|
||||
version: link:../../packages/integrations/svelte
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
svelte:
|
||||
specifier: ^5.25.3
|
||||
|
@ -314,10 +314,10 @@ importers:
|
|||
examples/framework-vue:
|
||||
dependencies:
|
||||
'@astrojs/vue':
|
||||
specifier: ^5.0.8
|
||||
specifier: ^5.0.9
|
||||
version: link:../../packages/integrations/vue
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
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.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/integration:
|
||||
devDependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/minimal:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/portfolio:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/ssr:
|
||||
|
@ -356,10 +356,10 @@ importers:
|
|||
specifier: ^9.1.3
|
||||
version: link:../../packages/integrations/node
|
||||
'@astrojs/svelte':
|
||||
specifier: ^7.0.8
|
||||
specifier: ^7.0.9
|
||||
version: link:../../packages/integrations/svelte
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
svelte:
|
||||
specifier: ^5.25.3
|
||||
|
@ -368,7 +368,7 @@ importers:
|
|||
examples/starlog:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
sass:
|
||||
specifier: ^1.86.0
|
||||
|
@ -383,28 +383,28 @@ importers:
|
|||
specifier: ^18.17.8
|
||||
version: 18.19.50
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/with-markdoc:
|
||||
dependencies:
|
||||
'@astrojs/markdoc':
|
||||
specifier: ^0.13.2
|
||||
specifier: ^0.13.3
|
||||
version: link:../../packages/integrations/markdoc
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/with-mdx:
|
||||
dependencies:
|
||||
'@astrojs/mdx':
|
||||
specifier: ^4.2.2
|
||||
specifier: ^4.2.3
|
||||
version: link:../../packages/integrations/mdx
|
||||
'@astrojs/preact':
|
||||
specifier: ^4.0.7
|
||||
specifier: ^4.0.8
|
||||
version: link:../../packages/integrations/preact
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.26.4
|
||||
|
@ -413,13 +413,13 @@ importers:
|
|||
examples/with-nanostores:
|
||||
dependencies:
|
||||
'@astrojs/preact':
|
||||
specifier: ^4.0.7
|
||||
specifier: ^4.0.8
|
||||
version: link:../../packages/integrations/preact
|
||||
'@nanostores/preact':
|
||||
specifier: ^0.5.2
|
||||
version: 0.5.2(nanostores@0.11.4)(preact@10.26.4)
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
nanostores:
|
||||
specifier: ^0.11.4
|
||||
|
@ -431,7 +431,7 @@ importers:
|
|||
examples/with-tailwindcss:
|
||||
dependencies:
|
||||
'@astrojs/mdx':
|
||||
specifier: ^4.2.2
|
||||
specifier: ^4.2.3
|
||||
version: link:../../packages/integrations/mdx
|
||||
'@tailwindcss/vite':
|
||||
specifier: ^4.0.17
|
||||
|
@ -440,7 +440,7 @@ importers:
|
|||
specifier: ^1.9.0
|
||||
version: 1.9.0
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
canvas-confetti:
|
||||
specifier: ^1.9.3
|
||||
|
@ -452,7 +452,7 @@ importers:
|
|||
examples/with-vitest:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.5
|
||||
specifier: ^5.5.6
|
||||
version: link:../../packages/astro
|
||||
vitest:
|
||||
specifier: ^3.0.9
|
||||
|
@ -9947,7 +9947,6 @@ packages:
|
|||
|
||||
libsql@0.5.3:
|
||||
resolution: {integrity: sha512-S3WR8WNCJV1VXraBFUKjDA6+8LcNDJMLm+83qohm1O3YM1iVqV2+/XN3SXOxpxVjuL4g/rLrjO5kzygkPefCFQ==}
|
||||
cpu: [x64, arm64, wasm32]
|
||||
os: [darwin, linux, win32]
|
||||
|
||||
lightningcss-darwin-arm64@1.29.2:
|
||||
|
|
Loading…
Add table
Reference in a new issue