summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/old-fireants-allow.md5
-rw-r--r--.changeset/orange-cheetahs-hide.md5
-rw-r--r--.changeset/purple-crews-agree.md5
-rw-r--r--.changeset/yellow-kings-rhyme.md6
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/deno/package.json2
-rw-r--r--examples/docs/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json4
-rw-r--r--examples/framework-multiple/package.json2
-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/hackernews/package.json2
-rw-r--r--examples/integration/package.json2
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/non-html-pages/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/with-markdown-plugins/package.json2
-rw-r--r--examples/with-markdown-shiki/package.json2
-rw-r--r--examples/with-mdx/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md10
-rw-r--r--packages/astro/package.json6
-rw-r--r--packages/create-astro/CHANGELOG.md6
-rw-r--r--packages/create-astro/package.json2
-rw-r--r--packages/integrations/cloudflare/package.json2
-rw-r--r--packages/integrations/deno/package.json2
-rw-r--r--packages/integrations/image/package.json2
-rw-r--r--packages/integrations/lit/CHANGELOG.md6
-rw-r--r--packages/integrations/lit/package.json2
-rw-r--r--packages/integrations/netlify/package.json4
-rw-r--r--packages/integrations/node/package.json4
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/integrations/tailwind/package.json2
-rw-r--r--packages/integrations/vercel/package.json4
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--packages/markdown/remark/package.json2
-rw-r--r--packages/telemetry/CHANGELOG.md6
-rw-r--r--packages/telemetry/package.json2
-rw-r--r--packages/webapi/CHANGELOG.md6
-rw-r--r--packages/webapi/package.json2
-rw-r--r--pnpm-lock.yaml64
-rw-r--r--scripts/CHANGELOG.md7
-rw-r--r--scripts/package.json2
53 files changed, 121 insertions, 101 deletions
diff --git a/.changeset/old-fireants-allow.md b/.changeset/old-fireants-allow.md
deleted file mode 100644
index 4857a7a7c..000000000
--- a/.changeset/old-fireants-allow.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/lit': patch
----
-
-Render DSD attributes based on `shadowRootOptions`
diff --git a/.changeset/orange-cheetahs-hide.md b/.changeset/orange-cheetahs-hide.md
deleted file mode 100644
index 29d21173a..000000000
--- a/.changeset/orange-cheetahs-hide.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes cases where head is injected in body when using Astro.slots.render()
diff --git a/.changeset/purple-crews-agree.md b/.changeset/purple-crews-agree.md
deleted file mode 100644
index 17f257e8f..000000000
--- a/.changeset/purple-crews-agree.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'create-astro': patch
----
-
-Add missing flags to help command
diff --git a/.changeset/yellow-kings-rhyme.md b/.changeset/yellow-kings-rhyme.md
deleted file mode 100644
index 9b0729772..000000000
--- a/.changeset/yellow-kings-rhyme.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@astrojs/webapi': patch
-'@astrojs/telemetry': patch
----
-
-Update `undici` to v5.20.0
diff --git a/examples/basics/package.json b/examples/basics/package.json
index d3ec13c1d..5936b4611 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index ea62346c0..83aee6684 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"@astrojs/mdx": "^0.17.2",
"@astrojs/rss": "^2.1.1",
"@astrojs/sitemap": "^1.1.0"
diff --git a/examples/component/package.json b/examples/component/package.json
index d588cc143..10ca06885 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/deno/package.json b/examples/deno/package.json
index a33bc935f..9616ddbdb 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
},
"devDependencies": {
"@astrojs/deno": "^4.0.2"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 660ee24c2..7cdb8bf66 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 8e4b8ac67..00435fd25 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.1.3",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 5c4229856..4c44f40dd 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"lit": "^2.2.5",
- "@astrojs/lit": "^1.2.0",
+ "@astrojs/lit": "^1.2.1",
"@webcomponents/template-shadowroot": "^0.1.0"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index ecbfba71c..957471ad1 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index ccda4d7b5..1d04d6376 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"preact": "^10.7.3",
"@astrojs/preact": "^2.0.3",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 461d4d8f6..f9781a849 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^2.0.2",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index b0def3c08..27915cc75 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^2.0.2"
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 6885def62..61dab7591 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.0.2",
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 0e860108b..7861c9769 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"vue": "^3.2.37",
"@astrojs/vue": "^2.0.1"
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 5f9dc6488..6b63e0ff3 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^5.0.4",
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 4d9525917..75dc24695 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index accef7ba9..dd18117a6 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 75d145ab6..0d6cfd8f1 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 31b7c3d09..d2dcbc311 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 62fb1f469..f0348ee4e 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"svelte": "^3.48.0",
"@astrojs/svelte": "^2.0.2",
"@astrojs/node": "^5.0.4",
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 8a8d22dc3..91aad04e7 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"@astrojs/markdown-remark": "^2.0.1",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index 434a8ca56..958decf3b 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15"
+ "astro": "^2.0.16"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index bb91630e3..811c2104b 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"preact": "^10.6.5",
"@astrojs/preact": "^2.0.3",
"@astrojs/mdx": "^0.17.2"
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index d25800a88..94870fbdd 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"preact": "^10.7.3",
"@astrojs/preact": "^2.0.3",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index dea3b3b82..25d1731a4 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -14,7 +14,7 @@
"@astrojs/mdx": "^0.17.2",
"@astrojs/tailwind": "^3.0.1",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index 3ebecad11..abb1edf15 100644
--- a/examples/with-vite-plugin-pwa/package.json
+++ b/examples/with-vite-plugin-pwa/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 20583427f..da7b95698 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^2.0.15",
+ "astro": "^2.0.16",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index ae8669d14..5aba4f075 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,15 @@
# astro
+## 2.0.16
+
+### Patch Changes
+
+- [#6363](https://github.com/withastro/astro/pull/6363) [`d94aae776`](https://github.com/withastro/astro/commit/d94aae77656f14f56898d33c6d3f83c59112212e) Thanks [@matthewp](https://github.com/matthewp)! - Fixes cases where head is injected in body when using Astro.slots.render()
+
+- Updated dependencies [[`5aa6580f7`](https://github.com/withastro/astro/commit/5aa6580f775405a4443835bf7eb81f0c65e5aed6)]:
+ - @astrojs/webapi@2.0.2
+ - @astrojs/telemetry@2.0.1
+
## 2.0.15
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 6d6b69a35..339bd8d5d 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "2.0.15",
+ "version": "2.0.16",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@@ -102,8 +102,8 @@
"@astrojs/compiler": "^1.1.0",
"@astrojs/language-server": "^0.28.3",
"@astrojs/markdown-remark": "^2.0.1",
- "@astrojs/telemetry": "^2.0.0",
- "@astrojs/webapi": "^2.0.1",
+ "@astrojs/telemetry": "^2.0.1",
+ "@astrojs/webapi": "^2.0.2",
"@babel/core": "^7.18.2",
"@babel/generator": "^7.18.2",
"@babel/parser": "^7.18.4",
diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md
index 288d1ea96..fa279d09d 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,11 @@
# create-astro
+## 3.0.4
+
+### Patch Changes
+
+- [#6352](https://github.com/withastro/astro/pull/6352) [`c87c16cfa`](https://github.com/withastro/astro/commit/c87c16cfaddea3a05af87c3258d57ef1a31516f7) Thanks [@SerekKiri](https://github.com/SerekKiri)! - Add missing flags to help command
+
## 3.0.3
### Patch Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index 2c3af4af8..7a86b454b 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "3.0.3",
+ "version": "3.0.4",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json
index c57871d0c..a01f30192 100644
--- a/packages/integrations/cloudflare/package.json
+++ b/packages/integrations/cloudflare/package.json
@@ -38,7 +38,7 @@
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15"
+ "astro": "workspace:^2.0.16"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json
index db486118b..12c16920e 100644
--- a/packages/integrations/deno/package.json
+++ b/packages/integrations/deno/package.json
@@ -33,7 +33,7 @@
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15"
+ "astro": "workspace:^2.0.16"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json
index 03ce1ea0f..60baeb437 100644
--- a/packages/integrations/image/package.json
+++ b/packages/integrations/image/package.json
@@ -63,7 +63,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15",
+ "astro": "workspace:^2.0.16",
"sharp": ">=0.31.0"
},
"peerDependenciesMeta": {
diff --git a/packages/integrations/lit/CHANGELOG.md b/packages/integrations/lit/CHANGELOG.md
index 19eaf1bcd..f4c86f278 100644
--- a/packages/integrations/lit/CHANGELOG.md
+++ b/packages/integrations/lit/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/lit
+## 1.2.1
+
+### Patch Changes
+
+- [#6351](https://github.com/withastro/astro/pull/6351) [`26bf12ef3`](https://github.com/withastro/astro/commit/26bf12ef3c7ab874a23ac753f841f7bb329c9361) Thanks [@hrmcdonald](https://github.com/hrmcdonald)! - Render DSD attributes based on `shadowRootOptions`
+
## 1.2.0
### Minor Changes
diff --git a/packages/integrations/lit/package.json b/packages/integrations/lit/package.json
index 7aa82c53c..5e1b9eea6 100644
--- a/packages/integrations/lit/package.json
+++ b/packages/integrations/lit/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/lit",
- "version": "1.2.0",
+ "version": "1.2.1",
"description": "Use Lit components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index b1f6c0db3..22a061982 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -34,12 +34,12 @@
"test": "npm run test-fn"
},
"dependencies": {
- "@astrojs/webapi": "^2.0.1",
+ "@astrojs/webapi": "^2.0.2",
"@netlify/functions": "^1.0.0",
"esbuild": "^0.15.18"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15"
+ "astro": "workspace:^2.0.16"
},
"devDependencies": {
"@netlify/edge-handler-types": "^0.34.1",
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 71a8d826f..888c41cb7 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -30,12 +30,12 @@
"test": "mocha --exit --timeout 20000 test/"
},
"dependencies": {
- "@astrojs/webapi": "^2.0.1",
+ "@astrojs/webapi": "^2.0.2",
"send": "^0.18.0",
"server-destroy": "^1.0.1"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15"
+ "astro": "workspace:^2.0.16"
},
"devDependencies": {
"@types/send": "^0.17.1",
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index 95111ed82..f02722825 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -43,7 +43,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15",
+ "astro": "workspace:^2.0.16",
"svelte": "^3.54.0"
},
"engines": {
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 17f81d94a..c11caa13a 100644
--- a/packages/integrations/tailwind/package.json
+++ b/packages/integrations/tailwind/package.json
@@ -40,7 +40,7 @@
"vite": "^4.1.2"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15",
+ "astro": "workspace:^2.0.16",
"tailwindcss": "^3.0.24"
},
"pnpm": {
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index 477f00a2c..d0a202cf9 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -45,7 +45,7 @@
"test": "mocha --exit --timeout 20000 test/"
},
"dependencies": {
- "@astrojs/webapi": "^2.0.1",
+ "@astrojs/webapi": "^2.0.2",
"@vercel/analytics": "^0.1.8",
"@vercel/nft": "^0.22.1",
"fast-glob": "^3.2.11",
@@ -53,7 +53,7 @@
"web-vitals": "^3.1.1"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15"
+ "astro": "workspace:^2.0.16"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.2",
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index 8f9209c7c..8081c2b8a 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -50,7 +50,7 @@
"vue": "^3.2.37"
},
"peerDependencies": {
- "astro": "workspace:^2.0.15",
+ "astro": "workspace:^2.0.16",
"vue": "^3.2.30"
},
"engines": {
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index f0d925d5f..a57ff179e 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -25,7 +25,7 @@
"test": "mocha --exit --timeout 20000"
},
"peerDependencies": {
- "astro": "workspace:^2.0.14"
+ "astro": "workspace:^2.0.16"
},
"dependencies": {
"@astrojs/prism": "^2.0.0",
diff --git a/packages/telemetry/CHANGELOG.md b/packages/telemetry/CHANGELOG.md
index a811d7cab..90ad1f214 100644
--- a/packages/telemetry/CHANGELOG.md
+++ b/packages/telemetry/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/telemetry
+## 2.0.1
+
+### Patch Changes
+
+- [#6355](https://github.com/withastro/astro/pull/6355) [`5aa6580f7`](https://github.com/withastro/astro/commit/5aa6580f775405a4443835bf7eb81f0c65e5aed6) Thanks [@ematipico](https://github.com/ematipico)! - Update `undici` to v5.20.0
+
## 2.0.0
### Major Changes
diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json
index ba7f16f81..704970a07 100644
--- a/packages/telemetry/package.json
+++ b/packages/telemetry/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/telemetry",
- "version": "2.0.0",
+ "version": "2.0.1",
"type": "module",
"types": "./dist/types/index.d.ts",
"author": "withastro",
diff --git a/packages/webapi/CHANGELOG.md b/packages/webapi/CHANGELOG.md
index 7e46a48ec..5a20c2dee 100644
--- a/packages/webapi/CHANGELOG.md
+++ b/packages/webapi/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/webapi
+## 2.0.2
+
+### Patch Changes
+
+- [#6355](https://github.com/withastro/astro/pull/6355) [`5aa6580f7`](https://github.com/withastro/astro/commit/5aa6580f775405a4443835bf7eb81f0c65e5aed6) Thanks [@ematipico](https://github.com/ematipico)! - Update `undici` to v5.20.0
+
## 2.0.1
### Patch Changes
diff --git a/packages/webapi/package.json b/packages/webapi/package.json
index 5316909b3..61e808eab 100644
--- a/packages/webapi/package.json
+++ b/packages/webapi/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/webapi",
"description": "Use Web APIs in Node",
- "version": "2.0.1",
+ "version": "2.0.2",
"type": "module",
"exports": {
".": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index fa8b964c1..825dd93f5 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -63,7 +63,7 @@ importers:
examples/basics:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
astro: link:../../packages/astro
@@ -72,7 +72,7 @@ importers:
'@astrojs/mdx': ^0.17.2
'@astrojs/rss': ^2.1.1
'@astrojs/sitemap': ^1.1.0
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -81,14 +81,14 @@ importers:
examples/component:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^4.0.2
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
astro: link:../../packages/astro
devDependencies:
@@ -104,7 +104,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
- astro: ^2.0.15
+ astro: ^2.0.16
html-escaper: ^3.0.3
preact: ^10.7.3
react: ^18.1.0
@@ -130,7 +130,7 @@ importers:
'@astrojs/alpinejs': ^0.1.3
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@@ -139,9 +139,9 @@ importers:
examples/framework-lit:
specifiers:
- '@astrojs/lit': ^1.2.0
+ '@astrojs/lit': ^1.2.1
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^2.0.15
+ astro: ^2.0.16
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -156,7 +156,7 @@ importers:
'@astrojs/solid-js': ^2.0.2
'@astrojs/svelte': ^2.0.2
'@astrojs/vue': ^2.0.1
- astro: ^2.0.15
+ astro: ^2.0.16
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -181,7 +181,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.0.3
'@preact/signals': ^1.1.0
- astro: ^2.0.15
+ astro: ^2.0.16
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -194,7 +194,7 @@ importers:
'@astrojs/react': ^2.0.2
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^2.0.15
+ astro: ^2.0.16
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -208,7 +208,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^2.0.2
- astro: ^2.0.15
+ astro: ^2.0.16
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -218,7 +218,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^2.0.2
- astro: ^2.0.15
+ astro: ^2.0.16
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -228,7 +228,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^2.0.1
- astro: ^2.0.15
+ astro: ^2.0.16
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -238,32 +238,32 @@ importers:
examples/hackernews:
specifiers:
'@astrojs/node': ^5.0.4
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
astro: link:../../packages/astro
@@ -271,7 +271,7 @@ importers:
specifiers:
'@astrojs/node': ^5.0.4
'@astrojs/svelte': ^2.0.2
- astro: ^2.0.15
+ astro: ^2.0.16
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -288,7 +288,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^2.0.1
- astro: ^2.0.15
+ astro: ^2.0.16
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -305,7 +305,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
dependencies:
astro: link:../../packages/astro
@@ -313,7 +313,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.17.2
'@astrojs/preact': ^2.0.3
- astro: ^2.0.15
+ astro: ^2.0.16
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -325,7 +325,7 @@ importers:
specifiers:
'@astrojs/preact': ^2.0.3
'@nanostores/preact': ^0.1.3
- astro: ^2.0.15
+ astro: ^2.0.16
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -340,7 +340,7 @@ importers:
'@astrojs/mdx': ^0.17.2
'@astrojs/tailwind': ^3.0.1
'@types/canvas-confetti': ^1.4.3
- astro: ^2.0.15
+ astro: ^2.0.16
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -357,7 +357,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -367,7 +367,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^2.0.15
+ astro: ^2.0.16
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro
@@ -378,8 +378,8 @@ importers:
'@astrojs/compiler': ^1.1.0
'@astrojs/language-server': ^0.28.3
'@astrojs/markdown-remark': ^2.0.1
- '@astrojs/telemetry': ^2.0.0
- '@astrojs/webapi': ^2.0.1
+ '@astrojs/telemetry': ^2.0.1
+ '@astrojs/webapi': ^2.0.2
'@babel/core': ^7.18.2
'@babel/generator': ^7.18.2
'@babel/parser': ^7.18.4
@@ -3049,7 +3049,7 @@ importers:
packages/integrations/netlify:
specifiers:
- '@astrojs/webapi': ^2.0.1
+ '@astrojs/webapi': ^2.0.2
'@netlify/edge-handler-types': ^0.34.1
'@netlify/functions': ^1.0.0
'@types/node': ^14.18.20
@@ -3114,7 +3114,7 @@ importers:
packages/integrations/node:
specifiers:
- '@astrojs/webapi': ^2.0.1
+ '@astrojs/webapi': ^2.0.2
'@types/send': ^0.17.1
'@types/server-destroy': ^1.0.1
astro: workspace:*
@@ -3374,7 +3374,7 @@ importers:
packages/integrations/vercel:
specifiers:
- '@astrojs/webapi': ^2.0.1
+ '@astrojs/webapi': ^2.0.2
'@types/set-cookie-parser': ^2.4.2
'@vercel/analytics': ^0.1.8
'@vercel/nft': ^0.22.1
diff --git a/scripts/CHANGELOG.md b/scripts/CHANGELOG.md
index ed77adfe0..49f6ddd8a 100644
--- a/scripts/CHANGELOG.md
+++ b/scripts/CHANGELOG.md
@@ -1,5 +1,12 @@
# astro-scripts
+## 0.0.12
+
+### Patch Changes
+
+- Updated dependencies [[`5aa6580f7`](https://github.com/withastro/astro/commit/5aa6580f775405a4443835bf7eb81f0c65e5aed6)]:
+ - @astrojs/webapi@2.0.2
+
## 0.0.11
### Patch Changes
diff --git a/scripts/package.json b/scripts/package.json
index 9fe1c18fc..b36d367b1 100644
--- a/scripts/package.json
+++ b/scripts/package.json
@@ -1,6 +1,6 @@
{
"name": "astro-scripts",
- "version": "0.0.11",
+ "version": "0.0.12",
"private": true,
"type": "module",
"main": "./index.js",