summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2024-11-21 06:47:58 -0800
committerGravatar GitHub <noreply@github.com> 2024-11-21 09:47:58 -0500
commit3bed8050b9a19bd56416d4a6b8cebfe819c97bc7 (patch)
tree382716c6fa36aadc5cfed91018a7aecff3d845e3
parentb9c05f45b2c9780d7b5518adb4a545cf69f075a6 (diff)
downloadastro-3bed8050b9a19bd56416d4a6b8cebfe819c97bc7.tar.gz
astro-3bed8050b9a19bd56416d4a6b8cebfe819c97bc7.tar.zst
astro-3bed8050b9a19bd56416d4a6b8cebfe819c97bc7.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/strong-stingrays-provide.md9
-rw-r--r--examples/container-with-vitest/package.json2
-rw-r--r--examples/framework-multiple/package.json10
-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/ssr/package.json2
-rw-r--r--examples/with-mdx/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--packages/integrations/preact/CHANGELOG.md6
-rw-r--r--packages/integrations/preact/package.json2
-rw-r--r--packages/integrations/react/CHANGELOG.md6
-rw-r--r--packages/integrations/react/package.json2
-rw-r--r--packages/integrations/solid/CHANGELOG.md6
-rw-r--r--packages/integrations/solid/package.json2
-rw-r--r--packages/integrations/svelte/CHANGELOG.md6
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/integrations/vue/CHANGELOG.md6
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--pnpm-lock.yaml28
22 files changed, 63 insertions, 42 deletions
diff --git a/.changeset/strong-stingrays-provide.md b/.changeset/strong-stingrays-provide.md
deleted file mode 100644
index a98fea0f8..000000000
--- a/.changeset/strong-stingrays-provide.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'@astrojs/solid-js': patch
-'@astrojs/vue': patch
-'@astrojs/svelte': patch
-'@astrojs/react': patch
-'@astrojs/preact': patch
----
-
-Resolve `vite` peer dependency problem for strict package managers like **Yarn in PnP mode**.
diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json
index ab3a295aa..9525e9627 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -13,7 +13,7 @@
},
"dependencies": {
"astro": "^4.16.14",
- "@astrojs/react": "^3.6.2",
+ "@astrojs/react": "^3.6.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^2.1.4"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index d6900fff3..fddfe3a6e 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,11 +11,11 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/preact": "^3.5.3",
- "@astrojs/react": "^3.6.2",
- "@astrojs/solid-js": "^4.4.3",
- "@astrojs/svelte": "^6.0.1",
- "@astrojs/vue": "^4.5.2",
+ "@astrojs/preact": "^3.5.4",
+ "@astrojs/react": "^3.6.3",
+ "@astrojs/solid-js": "^4.4.4",
+ "@astrojs/svelte": "^6.0.2",
+ "@astrojs/vue": "^4.5.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.14",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 6c822be2e..13196eda3 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/preact": "^3.5.3",
+ "@astrojs/preact": "^3.5.4",
"@preact/signals": "^1.3.0",
"astro": "^4.16.14",
"preact": "^10.24.3"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 158f03dbd..eaa28be2c 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/react": "^3.6.2",
+ "@astrojs/react": "^3.6.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.14",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index dc9efdb80..839f263da 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/solid-js": "^4.4.3",
+ "@astrojs/solid-js": "^4.4.4",
"astro": "^4.16.14",
"solid-js": "^1.9.3"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 2b3ea1791..b367c9588 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/svelte": "^6.0.1",
+ "@astrojs/svelte": "^6.0.2",
"astro": "^4.16.14",
"svelte": "^5.1.16"
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index d7afee280..72b1eae2d 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/vue": "^4.5.2",
+ "@astrojs/vue": "^4.5.3",
"astro": "^4.16.14",
"vue": "^3.5.12"
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 97bb22f2f..1401a29b7 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -13,7 +13,7 @@
},
"dependencies": {
"@astrojs/node": "^8.3.4",
- "@astrojs/svelte": "^6.0.1",
+ "@astrojs/svelte": "^6.0.2",
"astro": "^4.16.14",
"svelte": "^5.1.16"
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index cd3fd5fec..12cb89631 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/mdx": "^3.1.9",
- "@astrojs/preact": "^3.5.3",
+ "@astrojs/preact": "^3.5.4",
"astro": "^4.16.14",
"preact": "^10.24.3"
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 66cd59afb..36260fd8b 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/preact": "^3.5.3",
+ "@astrojs/preact": "^3.5.4",
"@nanostores/preact": "^0.5.2",
"astro": "^4.16.14",
"nanostores": "^0.11.3",
diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md
index b7138a78d..e99ca01e3 100644
--- a/packages/integrations/preact/CHANGELOG.md
+++ b/packages/integrations/preact/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/preact
+## 3.5.4
+
+### Patch Changes
+
+- [#12481](https://github.com/withastro/astro/pull/12481) [`8a46e80`](https://github.com/withastro/astro/commit/8a46e8074d6afb4a23badbd59ed239d526294e8c) Thanks [@marbrex](https://github.com/marbrex)! - Resolve `vite` peer dependency problem for strict package managers like **Yarn in PnP mode**.
+
## 3.5.3
### Patch Changes
diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json
index b441bca21..7cea651ac 100644
--- a/packages/integrations/preact/package.json
+++ b/packages/integrations/preact/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/preact",
"description": "Use Preact components within Astro",
- "version": "3.5.3",
+ "version": "3.5.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md
index 65eb7056c..45f9ffaeb 100644
--- a/packages/integrations/react/CHANGELOG.md
+++ b/packages/integrations/react/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/react
+## 3.6.3
+
+### Patch Changes
+
+- [#12481](https://github.com/withastro/astro/pull/12481) [`8a46e80`](https://github.com/withastro/astro/commit/8a46e8074d6afb4a23badbd59ed239d526294e8c) Thanks [@marbrex](https://github.com/marbrex)! - Resolve `vite` peer dependency problem for strict package managers like **Yarn in PnP mode**.
+
## 3.6.2
### Patch Changes
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
index 40749c76d..3c899620c 100644
--- a/packages/integrations/react/package.json
+++ b/packages/integrations/react/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/react",
"description": "Use React components within Astro",
- "version": "3.6.2",
+ "version": "3.6.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md
index 2ded2af1e..3cca25757 100644
--- a/packages/integrations/solid/CHANGELOG.md
+++ b/packages/integrations/solid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/solid-js
+## 4.4.4
+
+### Patch Changes
+
+- [#12481](https://github.com/withastro/astro/pull/12481) [`8a46e80`](https://github.com/withastro/astro/commit/8a46e8074d6afb4a23badbd59ed239d526294e8c) Thanks [@marbrex](https://github.com/marbrex)! - Resolve `vite` peer dependency problem for strict package managers like **Yarn in PnP mode**.
+
## 4.4.3
### Patch Changes
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index e41bca6f6..d2a13529f 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
- "version": "4.4.3",
+ "version": "4.4.4",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md
index 81985044c..36da20e51 100644
--- a/packages/integrations/svelte/CHANGELOG.md
+++ b/packages/integrations/svelte/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/svelte
+## 6.0.2
+
+### Patch Changes
+
+- [#12481](https://github.com/withastro/astro/pull/12481) [`8a46e80`](https://github.com/withastro/astro/commit/8a46e8074d6afb4a23badbd59ed239d526294e8c) Thanks [@marbrex](https://github.com/marbrex)! - Resolve `vite` peer dependency problem for strict package managers like **Yarn in PnP mode**.
+
## 6.0.1
### Patch Changes
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index 3a212a87c..d46b6d311 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/svelte",
- "version": "6.0.1",
+ "version": "6.0.2",
"description": "Use Svelte components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md
index e27cfa885..daad7f51b 100644
--- a/packages/integrations/vue/CHANGELOG.md
+++ b/packages/integrations/vue/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vue
+## 4.5.3
+
+### Patch Changes
+
+- [#12481](https://github.com/withastro/astro/pull/12481) [`8a46e80`](https://github.com/withastro/astro/commit/8a46e8074d6afb4a23badbd59ed239d526294e8c) Thanks [@marbrex](https://github.com/marbrex)! - Resolve `vite` peer dependency problem for strict package managers like **Yarn in PnP mode**.
+
## 4.5.2
### Patch Changes
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index ce658b6a8..56b04b1ae 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/vue",
- "version": "4.5.2",
+ "version": "4.5.3",
"description": "Use Vue components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index dd7b3f647..54420b131 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -169,7 +169,7 @@ importers:
examples/container-with-vitest:
dependencies:
'@astrojs/react':
- specifier: ^3.6.2
+ specifier: ^3.6.3
version: link:../../packages/integrations/react
astro:
specifier: ^4.16.14
@@ -224,19 +224,19 @@ importers:
examples/framework-multiple:
dependencies:
'@astrojs/preact':
- specifier: ^3.5.3
+ specifier: ^3.5.4
version: link:../../packages/integrations/preact
'@astrojs/react':
- specifier: ^3.6.2
+ specifier: ^3.6.3
version: link:../../packages/integrations/react
'@astrojs/solid-js':
- specifier: ^4.4.3
+ specifier: ^4.4.4
version: link:../../packages/integrations/solid
'@astrojs/svelte':
- specifier: ^6.0.1
+ specifier: ^6.0.2
version: link:../../packages/integrations/svelte
'@astrojs/vue':
- specifier: ^4.5.2
+ specifier: ^4.5.3
version: link:../../packages/integrations/vue
'@types/react':
specifier: ^18.3.12
@@ -269,7 +269,7 @@ importers:
examples/framework-preact:
dependencies:
'@astrojs/preact':
- specifier: ^3.5.3
+ specifier: ^3.5.4
version: link:../../packages/integrations/preact
'@preact/signals':
specifier: ^1.3.0
@@ -284,7 +284,7 @@ importers:
examples/framework-react:
dependencies:
'@astrojs/react':
- specifier: ^3.6.2
+ specifier: ^3.6.3
version: link:../../packages/integrations/react
'@types/react':
specifier: ^18.3.12
@@ -305,7 +305,7 @@ importers:
examples/framework-solid:
dependencies:
'@astrojs/solid-js':
- specifier: ^4.4.3
+ specifier: ^4.4.4
version: link:../../packages/integrations/solid
astro:
specifier: ^4.16.14
@@ -317,7 +317,7 @@ importers:
examples/framework-svelte:
dependencies:
'@astrojs/svelte':
- specifier: ^6.0.1
+ specifier: ^6.0.2
version: link:../../packages/integrations/svelte
astro:
specifier: ^4.16.14
@@ -329,7 +329,7 @@ importers:
examples/framework-vue:
dependencies:
'@astrojs/vue':
- specifier: ^4.5.2
+ specifier: ^4.5.3
version: link:../../packages/integrations/vue
astro:
specifier: ^4.16.14
@@ -371,7 +371,7 @@ importers:
specifier: ^8.3.4
version: 8.3.4(astro@packages+astro)
'@astrojs/svelte':
- specifier: ^6.0.1
+ specifier: ^6.0.2
version: link:../../packages/integrations/svelte
astro:
specifier: ^4.16.14
@@ -413,7 +413,7 @@ importers:
specifier: ^3.1.9
version: link:../../packages/integrations/mdx
'@astrojs/preact':
- specifier: ^3.5.3
+ specifier: ^3.5.4
version: link:../../packages/integrations/preact
astro:
specifier: ^4.16.14
@@ -425,7 +425,7 @@ importers:
examples/with-nanostores:
dependencies:
'@astrojs/preact':
- specifier: ^3.5.3
+ specifier: ^3.5.4
version: link:../../packages/integrations/preact
'@nanostores/preact':
specifier: ^0.5.2