summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/astro/CHANGELOG.md10
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/db/CHANGELOG.md9
-rw-r--r--packages/db/package.json2
-rw-r--r--packages/integrations/partytown/CHANGELOG.md16
-rw-r--r--packages/integrations/partytown/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md6
-rw-r--r--packages/integrations/vercel/package.json2
8 files changed, 45 insertions, 4 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index d1364d130..9f5d3694c 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,15 @@
# astro
+## 5.4.2
+
+### Patch Changes
+
+- [#12985](https://github.com/withastro/astro/pull/12985) [`84e94cc`](https://github.com/withastro/astro/commit/84e94cc85cc0f4ea9b5dba2009dc89e83a798f59) Thanks [@matthewp](https://github.com/matthewp)! - Prevent re-executing scripts in client router
+
+- [#13349](https://github.com/withastro/astro/pull/13349) [`50e2e0b`](https://github.com/withastro/astro/commit/50e2e0b3749d6dba3d301ea1a0a3a33a273e7a81) Thanks [@ascorbic](https://github.com/ascorbic)! - Correctly escapes attributes in Markdown images
+
+- [#13262](https://github.com/withastro/astro/pull/13262) [`0025df3`](https://github.com/withastro/astro/commit/0025df37af4dcd390d41c9b175fbdb3edd87edf7) Thanks [@ematipico](https://github.com/ematipico)! - Refactor Astro Actions to not use a middleware. Doing so should avoid unexpected issues when using the Astro middleware at the edge.
+
## 5.4.1
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index ab636a3a2..9a13513f4 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.4.1",
+ "version": "5.4.2",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md
index dd0101008..b86249ffb 100644
--- a/packages/db/CHANGELOG.md
+++ b/packages/db/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/db
+## 0.14.8
+
+### Patch Changes
+
+- [#13343](https://github.com/withastro/astro/pull/13343) [`a001a75`](https://github.com/withastro/astro/commit/a001a75d6ec08378d607531dc73959bf0a9e079e) Thanks [@dreyfus92](https://github.com/dreyfus92)! - Fix Astro DB seed failing when project path contains spaces. This resolves by properly decoding URL pathnames that contain encoded spaces (%20) before passing them to Vite's ssrLoadModule.
+
+- Updated dependencies []:
+ - @astrojs/studio@0.1.4
+
## 0.14.7
### Patch Changes
diff --git a/packages/db/package.json b/packages/db/package.json
index 8c4816837..d443423d9 100644
--- a/packages/db/package.json
+++ b/packages/db/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/db",
- "version": "0.14.7",
+ "version": "0.14.8",
"description": "Add libSQL and Astro Studio support to your Astro site",
"license": "MIT",
"repository": {
diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md
index e43021f79..62168e751 100644
--- a/packages/integrations/partytown/CHANGELOG.md
+++ b/packages/integrations/partytown/CHANGELOG.md
@@ -1,5 +1,21 @@
# @astrojs/partytown
+## 2.1.4
+
+### Patch Changes
+
+- [#13109](https://github.com/withastro/astro/pull/13109) [`5c0e0ea`](https://github.com/withastro/astro/commit/5c0e0eaa908bbfd6705eb950713c26c9ee0bd32d) Thanks [@arnottferels](https://github.com/arnottferels)! - Adds support for `config.lib`, which allows changing the destination of the files:
+
+ ```diff
+ export default defineConfig({
+ integrations: [partytown({
+ config: {
+ + lib: '/assets/lib/~partytown/';
+ }
+ })]
+ })
+ ```
+
## 2.1.3
### Patch Changes
diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json
index 95357d28b..7a645caa1 100644
--- a/packages/integrations/partytown/package.json
+++ b/packages/integrations/partytown/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/partytown",
"description": "Use Partytown to move scripts into a web worker in your Astro project",
- "version": "2.1.3",
+ "version": "2.1.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index ff47e0ca6..8f12ee8e3 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vercel
+## 8.1.1
+
+### Patch Changes
+
+- [#13351](https://github.com/withastro/astro/pull/13351) [`fac32ad`](https://github.com/withastro/astro/commit/fac32ad98d66b73382f35d26a69352e566cd94d9) Thanks [@ascorbic](https://github.com/ascorbic)! - Ensures `srcset` for responsive images only contains allowed sizes
+
## 8.1.0
### Minor Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index e7891f417..1763f9578 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": "8.1.0",
+ "version": "8.1.1",
"type": "module",
"author": "withastro",
"license": "MIT",