summaryrefslogtreecommitdiff
path: root/packages/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations')
-rw-r--r--packages/integrations/image/CHANGELOG.md8
-rw-r--r--packages/integrations/image/package.json2
-rw-r--r--packages/integrations/preact/CHANGELOG.md22
-rw-r--r--packages/integrations/preact/package.json2
-rw-r--r--packages/integrations/react/CHANGELOG.md8
-rw-r--r--packages/integrations/react/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md7
-rw-r--r--packages/integrations/vercel/package.json2
8 files changed, 49 insertions, 4 deletions
diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md
index f4ca4fedb..224725a4a 100644
--- a/packages/integrations/image/CHANGELOG.md
+++ b/packages/integrations/image/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/image
+## 0.9.3
+
+### Patch Changes
+
+- [#5021](https://github.com/withastro/astro/pull/5021) [`062335dbf`](https://github.com/withastro/astro/commit/062335dbf7300ad5370e29ebcf7a05d5a4703a1c) Thanks [@matthewp](https://github.com/matthewp)! - Fix remote images in SSG mode
+
+- [#5034](https://github.com/withastro/astro/pull/5034) [`2d9d42216`](https://github.com/withastro/astro/commit/2d9d42216722334db03adb14e59773db8389b7f9) Thanks [@bluwy](https://github.com/bluwy)! - Support strict dependency install
+
## 0.9.2
### Patch Changes
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index c941d3fba..202bd427b 100644
--- a/packages/integrations/image/package.json
+++ b/packages/integrations/image/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/image",
"description": "Load and transform images in your Astro site.",
- "version": "0.9.2",
+ "version": "0.9.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md
index adc14708e..fcc9d4739 100644
--- a/packages/integrations/preact/CHANGELOG.md
+++ b/packages/integrations/preact/CHANGELOG.md
@@ -1,5 +1,27 @@
# @astrojs/preact
+## 1.2.0
+
+### Minor Changes
+
+- [#5015](https://github.com/withastro/astro/pull/5015) [`b1964e9e1`](https://github.com/withastro/astro/commit/b1964e9e1b7f9178036e266b89d3c8b9cbffd1c6) Thanks [@matthewp](https://github.com/matthewp)! - Shared state in Preact components with signals
+
+ This makes it possible to share client state between Preact islands via signals.
+
+ For example, you can create a signals in an Astro component and then pass it to multiple islands:
+
+ ```astro
+ ---
+ // Component Imports
+ import Counter from '../components/Counter';
+ import { signal } from '@preact/signals';
+ const count = signal(0);
+ ---
+
+ <Count count={count} />
+ <Count count={count} />
+ ```
+
## 1.1.1
### Patch Changes
diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json
index 8bd8d2a13..609321616 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": "1.1.1",
+ "version": "1.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md
index fe77b21b8..2b4a26e47 100644
--- a/packages/integrations/react/CHANGELOG.md
+++ b/packages/integrations/react/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/react
+## 1.2.0
+
+### Minor Changes
+
+- [#5016](https://github.com/withastro/astro/pull/5016) [`6efeaeb39`](https://github.com/withastro/astro/commit/6efeaeb39ed7e6642b31603745750ccb9fe0ff1e) Thanks [@matthewp](https://github.com/matthewp)! - Add support for mui
+
+ This adds support for [mui](https://mui.com/) through configuration. Users will now not need to configure this library to get it to work.
+
## 1.1.4
### Patch Changes
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
index e13550bae..7b7b7644f 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": "1.1.4",
+ "version": "1.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index f6a5c7779..5722af5a5 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,12 @@
# @astrojs/vercel
+## 2.1.1
+
+### Patch Changes
+
+- [#5033](https://github.com/withastro/astro/pull/5033) [`c1f991408`](https://github.com/withastro/astro/commit/c1f991408b817217dbd4035dcc4ac0a2fecd08b8) Thanks [@JuanM04](https://github.com/JuanM04)! - - Upgraded @vercel/nft to 0.22.1
+ - Fix monorepos (#5020)
+
## 2.1.0
### Minor Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index 37b16a388..df1315635 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
- "version": "2.1.0",
+ "version": "2.1.1",
"type": "module",
"author": "withastro",
"license": "MIT",