summaryrefslogtreecommitdiff
path: root/packages/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations')
-rw-r--r--packages/integrations/alpinejs/CHANGELOG.md7
-rw-r--r--packages/integrations/alpinejs/package.json2
-rw-r--r--packages/integrations/image/CHANGELOG.md6
-rw-r--r--packages/integrations/image/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md8
-rw-r--r--packages/integrations/vercel/package.json2
6 files changed, 23 insertions, 4 deletions
diff --git a/packages/integrations/alpinejs/CHANGELOG.md b/packages/integrations/alpinejs/CHANGELOG.md
new file mode 100644
index 000000000..9c0640e68
--- /dev/null
+++ b/packages/integrations/alpinejs/CHANGELOG.md
@@ -0,0 +1,7 @@
+# @astrojs/alpinejs
+
+## 0.1.0
+
+### Minor Changes
+
+- [#4406](https://github.com/withastro/astro/pull/4406) [`7310e8a17`](https://github.com/withastro/astro/commit/7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Add new official Alpine.js integration
diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json
index 7bbd2449c..e45269432 100644
--- a/packages/integrations/alpinejs/package.json
+++ b/packages/integrations/alpinejs/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/alpinejs",
"description": "The official Alpine.js integration for Astro.",
- "version": "0.0.1",
+ "version": "0.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md
index cad8e2249..274845a5b 100644
--- a/packages/integrations/image/CHANGELOG.md
+++ b/packages/integrations/image/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/image
+## 0.3.5
+
+### Patch Changes
+
+- [#4342](https://github.com/withastro/astro/pull/4342) [`c4af8723b`](https://github.com/withastro/astro/commit/c4af8723bd232d78d24dbd58feaef87dbaec07c7) Thanks [@tony-sull](https://github.com/tony-sull)! - The integration now includes a logger to better track progress in SSG builds. Use the new `logLevel: "debug"` integration option to see detailed logs of every image transformation built in your project.
+
## 0.3.4
### Patch Changes
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index be0f1c2c3..6d9b35c4a 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.3.4",
+ "version": "0.3.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index 69871113b..47db36b0e 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vercel
+## 1.0.1
+
+### Patch Changes
+
+- [#4421](https://github.com/withastro/astro/pull/4421) [`7820096e1`](https://github.com/withastro/astro/commit/7820096e1ba29ecc58aa7e13311a255acd2fe977) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix react-dom on Vercel edge
+
## 1.0.0
### Major Changes
@@ -53,7 +59,7 @@
The new `Astro.clientAddress` property allows you to get the IP address of the requested user.
```astro
- <div>Your address {Astro.clientAddress}</div>
+
```
This property is only available when building for SSR, and only if the adapter you are using supports providing the IP address. If you attempt to access the property in a SSG app it will throw an error.
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index bee390d18..3e797e643 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": "1.0.0",
+ "version": "1.0.1",
"type": "module",
"author": "withastro",
"license": "MIT",