summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Bot <108291165+fredkbot@users.noreply.github.com> 2022-10-18 11:26:00 -0700
committerGravatar GitHub <noreply@github.com> 2022-10-18 14:26:00 -0400
commit4c1ffef3e4753ffccd71e9b1524aa4faa1de652f (patch)
tree20c56246738a6d7d7dbfacbf836f7efe332c8556
parent8cf692766bf482717cfed416f5317ae1b5fb6cf0 (diff)
downloadastro-4c1ffef3e4753ffccd71e9b1524aa4faa1de652f.tar.gz
astro-4c1ffef3e4753ffccd71e9b1524aa4faa1de652f.tar.zst
astro-4c1ffef3e4753ffccd71e9b1524aa4faa1de652f.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/afraid-baboons-return.md5
-rw-r--r--.changeset/dry-moose-join.md29
-rw-r--r--.changeset/eighty-planes-kneel.md5
-rw-r--r--.changeset/gold-roses-argue.md5
-rw-r--r--.changeset/gorgeous-baboons-sleep.md5
-rw-r--r--.changeset/honest-crabs-scream.md5
-rw-r--r--.changeset/hot-dogs-leave.md5
-rw-r--r--.changeset/large-cougars-cough.md5
-rw-r--r--.changeset/little-dodos-beam.md5
-rw-r--r--.changeset/neat-phones-sin.md5
-rw-r--r--.changeset/olive-jeans-shout.md5
-rw-r--r--.changeset/short-lemons-fold.md5
-rw-r--r--.changeset/silent-cougars-run.md5
-rw-r--r--.changeset/silver-hotels-jam.md5
-rw-r--r--.changeset/tender-cars-wait.md5
-rw-r--r--.changeset/tender-lemons-remain.md5
-rw-r--r--.changeset/violet-buckets-call.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/package.json4
-rw-r--r--examples/deno/package.json2
-rw-r--r--examples/docs/package.json4
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json8
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json4
-rw-r--r--examples/framework-solid/package.json4
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json4
-rw-r--r--examples/integration/package.json4
-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.json4
-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.json4
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md22
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/integrations/node/CHANGELOG.md8
-rw-r--r--packages/integrations/node/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/tailwind/CHANGELOG.md6
-rw-r--r--packages/integrations/tailwind/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md8
-rw-r--r--packages/integrations/vercel/package.json2
-rw-r--r--packages/integrations/vue/CHANGELOG.md32
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--pnpm-lock.yaml68
57 files changed, 165 insertions, 186 deletions
diff --git a/.changeset/afraid-baboons-return.md b/.changeset/afraid-baboons-return.md
deleted file mode 100644
index 0e27f69fa..000000000
--- a/.changeset/afraid-baboons-return.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': patch
----
-
-Fixes finding the client folder for serving assets
diff --git a/.changeset/dry-moose-join.md b/.changeset/dry-moose-join.md
deleted file mode 100644
index b90fac4ee..000000000
--- a/.changeset/dry-moose-join.md
+++ /dev/null
@@ -1,29 +0,0 @@
----
-'@astrojs/vue': minor
----
-
-Add support for the `appEntrypoint` option, which accepts a root-relative path to an app entrypoint. The default export of this file should be a function that accepts a Vue `App` instance prior to rendering. This opens up the ability to extend the `App` instance with [custom Vue plugins](https://vuejs.org/guide/reusability/plugins.html).
-
-```js
-// astro.config.mjs
-import { defineConfig } from 'astro/config';
-import vue from '@astrojs/vue';
-
-export default defineConfig({
- integrations: [
- vue({
- appEntrypoint: '/src/pages/_app'
- })
- ]
-})
-```
-
-```js
-// src/pages/_app.ts
-import type { App } from 'vue';
-import i18nPlugin from '../plugins/i18n'
-
-export default function setup(app: App) {
- app.use(i18nPlugin, { /* options */ })
-}
-```
diff --git a/.changeset/eighty-planes-kneel.md b/.changeset/eighty-planes-kneel.md
deleted file mode 100644
index 5f3eec576..000000000
--- a/.changeset/eighty-planes-kneel.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Ensure CLI flags override function-style server config
diff --git a/.changeset/gold-roses-argue.md b/.changeset/gold-roses-argue.md
deleted file mode 100644
index 05c93789f..000000000
--- a/.changeset/gold-roses-argue.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Support spread parameters for server endpoints
diff --git a/.changeset/gorgeous-baboons-sleep.md b/.changeset/gorgeous-baboons-sleep.md
deleted file mode 100644
index 98975c390..000000000
--- a/.changeset/gorgeous-baboons-sleep.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix `astro add` trying to add lines from extended configurations when adding frameworks
diff --git a/.changeset/honest-crabs-scream.md b/.changeset/honest-crabs-scream.md
deleted file mode 100644
index 58dd5f674..000000000
--- a/.changeset/honest-crabs-scream.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix jsconfig.json aliases not working anymore after 1.5.0
diff --git a/.changeset/hot-dogs-leave.md b/.changeset/hot-dogs-leave.md
deleted file mode 100644
index 808322209..000000000
--- a/.changeset/hot-dogs-leave.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/vercel': minor
----
-
-Minify Edge Function output to save space
diff --git a/.changeset/large-cougars-cough.md b/.changeset/large-cougars-cough.md
deleted file mode 100644
index a11a8053a..000000000
--- a/.changeset/large-cougars-cough.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix Astro-in-MDX dashes in slot attr
diff --git a/.changeset/little-dodos-beam.md b/.changeset/little-dodos-beam.md
deleted file mode 100644
index 09bd0d7cf..000000000
--- a/.changeset/little-dodos-beam.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Separate type definitions for built-in HTML elements and custom elements. Helpful when implementing an "as" prop similar to [styled-components](https://styled-components.com/docs/api#as-polymorphic-prop).
diff --git a/.changeset/neat-phones-sin.md b/.changeset/neat-phones-sin.md
deleted file mode 100644
index 9a77e4731..000000000
--- a/.changeset/neat-phones-sin.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/react': patch
----
-
-Add `@types/` packages as peerDependencies
diff --git a/.changeset/olive-jeans-shout.md b/.changeset/olive-jeans-shout.md
deleted file mode 100644
index 423b11e00..000000000
--- a/.changeset/olive-jeans-shout.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix types not working properly when using `moduleResolution: 'node16'`
diff --git a/.changeset/short-lemons-fold.md b/.changeset/short-lemons-fold.md
deleted file mode 100644
index a0223f699..000000000
--- a/.changeset/short-lemons-fold.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': patch
----
-
-fix port in standalone mode
diff --git a/.changeset/silent-cougars-run.md b/.changeset/silent-cougars-run.md
deleted file mode 100644
index b4cfce318..000000000
--- a/.changeset/silent-cougars-run.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-api routes: adding cookies to the response, also when returning a simple result
diff --git a/.changeset/silver-hotels-jam.md b/.changeset/silver-hotels-jam.md
deleted file mode 100644
index 1b34b3784..000000000
--- a/.changeset/silver-hotels-jam.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/solid-js': patch
----
-
-Suppress warnings for dependency crawling
diff --git a/.changeset/tender-cars-wait.md b/.changeset/tender-cars-wait.md
deleted file mode 100644
index 9308fbf07..000000000
--- a/.changeset/tender-cars-wait.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/tailwind': patch
----
-
-Make Tailwind integration compatible with Astro < 1.5
diff --git a/.changeset/tender-lemons-remain.md b/.changeset/tender-lemons-remain.md
deleted file mode 100644
index e983a3824..000000000
--- a/.changeset/tender-lemons-remain.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix `astro add` pnpm command
diff --git a/.changeset/violet-buckets-call.md b/.changeset/violet-buckets-call.md
deleted file mode 100644
index 37688d16b..000000000
--- a/.changeset/violet-buckets-call.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/vercel': minor
----
-
-Added `includeFiles` and `excludeFiles` options
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 0a5b48aaa..819b2f999 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 6baaa6746..b09bb798b 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"@astrojs/mdx": "^0.11.4",
"@astrojs/rss": "^1.0.2",
"@astrojs/sitemap": "^1.0.0"
diff --git a/examples/component/package.json b/examples/component/package.json
index 4fd6e320d..4cbede005 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
},
"peerDependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/deno/package.json b/examples/deno/package.json
index b5171bfe1..9400be474 100644
--- a/examples/deno/package.json
+++ b/examples/deno/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
},
"devDependencies": {
"@astrojs/deno": "^1.2.0"
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 34ea9c03d..1da9531b5 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,11 +12,11 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
- "@astrojs/react": "^1.2.0",
+ "@astrojs/react": "^1.2.1",
"@astrojs/preact": "^1.2.0",
"@algolia/client-search": "^4.13.1",
"@docsearch/css": "^3.1.0",
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 581f3b663..f8871a6c0 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.1.2",
"@types/alpinejs": "^3.7.0"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 160dcd4d2..ca5a9b534 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"lit": "^2.2.5",
"@astrojs/lit": "^1.0.0",
"@webcomponents/template-shadowroot": "^0.1.0"
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 4b25ab7bd..206952352 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
@@ -19,9 +19,9 @@
"svelte": "^3.48.0",
"vue": "^3.2.37",
"@astrojs/preact": "^1.2.0",
- "@astrojs/react": "^1.2.0",
- "@astrojs/solid-js": "^1.2.0",
+ "@astrojs/react": "^1.2.1",
+ "@astrojs/solid-js": "^1.2.1",
"@astrojs/svelte": "^1.0.2",
- "@astrojs/vue": "^1.1.0"
+ "@astrojs/vue": "^1.2.0"
}
}
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 6a94916a3..bdb82dfbc 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"@preact/signals": "^1.1.0"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 88bdd9917..07beab83a 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -11,10 +11,10 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
- "@astrojs/react": "^1.2.0",
+ "@astrojs/react": "^1.2.1",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 2c19e9015..136893246 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"solid-js": "^1.4.3",
- "@astrojs/solid-js": "^1.2.0"
+ "@astrojs/solid-js": "^1.2.1"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 1a5fc2cc5..9eade574d 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 779ddf150..0e5ffbd30 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"vue": "^3.2.37",
- "@astrojs/vue": "^1.1.0"
+ "@astrojs/vue": "^1.2.0"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 3dfd744ca..4ce51d6c9 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,9 +15,9 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
},
"peerDependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index d184053a4..497a363de 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 703c90365..3d2680deb 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 7cd4cafe6..59c39ef79 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 21162e0fb..b2a89e5ce 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,10 +12,10 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
- "@astrojs/node": "^2.0.0",
+ "@astrojs/node": "^2.0.1",
"concurrently": "^7.2.1",
"unocss": "^0.15.6",
"vite-imagetools": "^4.0.4"
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 12acd79c9..660beef3e 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"@astrojs/markdown-remark": "^1.1.3",
"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 2413062de..4a257ead2 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0"
+ "astro": "^1.5.1"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 1a7157ac1..e3d3d761b 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"preact": "^10.6.5",
"@astrojs/preact": "^1.2.0",
"@astrojs/mdx": "^0.11.4"
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index c17a816c6..c50c8d678 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"nanostores": "^0.5.12",
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 4902b4195..d1878de7a 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -12,9 +12,9 @@
},
"dependencies": {
"@astrojs/mdx": "^0.11.4",
- "@astrojs/tailwind": "^2.1.0",
+ "@astrojs/tailwind": "^2.1.1",
"@types/canvas-confetti": "^1.4.3",
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"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 0b5202148..f4dc42147 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": "^1.5.0",
+ "astro": "^1.5.1",
"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 f78c36630..c7cae7541 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^1.5.0",
+ "astro": "^1.5.1",
"vitest": "^0.20.3"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 8d531f11d..ae6e4f4c3 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,27 @@
# astro
+## 1.5.1
+
+### Patch Changes
+
+- [#5110](https://github.com/withastro/astro/pull/5110) [`0edfdd325`](https://github.com/withastro/astro/commit/0edfdd325932b0b493b2228e3a121d217c38a727) Thanks [@bluwy](https://github.com/bluwy)! - Ensure CLI flags override function-style server config
+
+- [#5106](https://github.com/withastro/astro/pull/5106) [`ef0c54316`](https://github.com/withastro/astro/commit/ef0c5431631665c9f6648ee5daee65a3ebf8e9ee) Thanks [@bluwy](https://github.com/bluwy)! - Support spread parameters for server endpoints
+
+- [#5095](https://github.com/withastro/astro/pull/5095) [`ddfbef5ac`](https://github.com/withastro/astro/commit/ddfbef5acbd4c56d8ce1626a458b5cbb27da47fe) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `astro add` trying to add lines from extended configurations when adding frameworks
+
+- [#5076](https://github.com/withastro/astro/pull/5076) [`6f9a88b31`](https://github.com/withastro/astro/commit/6f9a88b31ba0881acd56fcb62c4a554c867b14d6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix jsconfig.json aliases not working anymore after 1.5.0
+
+- [#5080](https://github.com/withastro/astro/pull/5080) [`90b715d5c`](https://github.com/withastro/astro/commit/90b715d5c86810ad1edb013156e4810be3252e55) Thanks [@matthewp](https://github.com/matthewp)! - Fix Astro-in-MDX dashes in slot attr
+
+- [#5098](https://github.com/withastro/astro/pull/5098) [`f684e9d36`](https://github.com/withastro/astro/commit/f684e9d361e3780889ea6e6b3394c0f583bd839a) Thanks [@jkjustjoshing](https://github.com/jkjustjoshing)! - Separate type definitions for built-in HTML elements and custom elements. Helpful when implementing an "as" prop similar to [styled-components](https://styled-components.com/docs/api#as-polymorphic-prop).
+
+- [#5108](https://github.com/withastro/astro/pull/5108) [`ce01225a7`](https://github.com/withastro/astro/commit/ce01225a700aff5b437d46f21161e5f557050e12) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix types not working properly when using `moduleResolution: 'node16'`
+
+- [#5060](https://github.com/withastro/astro/pull/5060) [`5923dd77c`](https://github.com/withastro/astro/commit/5923dd77c17c80747f9fe746ff8270ad4c820003) Thanks [@AirBorne04](https://github.com/AirBorne04)! - api routes: adding cookies to the response, also when returning a simple result
+
+- [#5087](https://github.com/withastro/astro/pull/5087) [`49a8d18b4`](https://github.com/withastro/astro/commit/49a8d18b4993d899a05ee8230fdd012fb633533f) Thanks [@JuanM04](https://github.com/JuanM04)! - Fix `astro add` pnpm command
+
## 1.5.0
### Minor Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index c3549db85..f8b31f6d5 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.5.0",
+ "version": "1.5.1",
"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/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 8b6ceffb2..06cc02f57 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/node
+## 2.0.1
+
+### Patch Changes
+
+- [#5114](https://github.com/withastro/astro/pull/5114) [`5c0c6e1ac`](https://github.com/withastro/astro/commit/5c0c6e1ac67e6341625f028794986700197334ae) Thanks [@matthewp](https://github.com/matthewp)! - Fixes finding the client folder for serving assets
+
+- [#5111](https://github.com/withastro/astro/pull/5111) [`df4d84610`](https://github.com/withastro/astro/commit/df4d84610ad2b543a37cb3bcac9887bfef0b8994) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - fix port in standalone mode
+
## 2.0.0
### Major Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 92857ffa0..69baca5e2 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/node",
"description": "Deploy your site to a Node.js server",
- "version": "2.0.0",
+ "version": "2.0.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md
index 2b4a26e47..0b5f60b23 100644
--- a/packages/integrations/react/CHANGELOG.md
+++ b/packages/integrations/react/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/react
+## 1.2.1
+
+### Patch Changes
+
+- [#5095](https://github.com/withastro/astro/pull/5095) [`ddfbef5ac`](https://github.com/withastro/astro/commit/ddfbef5acbd4c56d8ce1626a458b5cbb27da47fe) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add `@types/` packages as peerDependencies
+
## 1.2.0
### Minor Changes
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
index d4519025a..29b23e2ed 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.2.0",
+ "version": "1.2.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md
index 575298726..488e660e1 100644
--- a/packages/integrations/solid/CHANGELOG.md
+++ b/packages/integrations/solid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/solid-js
+## 1.2.1
+
+### Patch Changes
+
+- [#5089](https://github.com/withastro/astro/pull/5089) [`0173c2b2d`](https://github.com/withastro/astro/commit/0173c2b2dfa49b3cb6afec7a411cdbad272b8fde) Thanks [@bluwy](https://github.com/bluwy)! - Suppress warnings for dependency crawling
+
## 1.2.0
### Minor Changes
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index b9bff301e..df1fc3199 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
- "version": "1.2.0",
+ "version": "1.2.1",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md
index 35c944506..c69fadb94 100644
--- a/packages/integrations/tailwind/CHANGELOG.md
+++ b/packages/integrations/tailwind/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/tailwind
+## 2.1.1
+
+### Patch Changes
+
+- [#5082](https://github.com/withastro/astro/pull/5082) [`5fb7c9383`](https://github.com/withastro/astro/commit/5fb7c9383abf6ccdabdb96b682f683369a8e11fe) Thanks [@matthewp](https://github.com/matthewp)! - Make Tailwind integration compatible with Astro < 1.5
+
## 2.1.0
### Minor Changes
diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json
index 22ec6482c..783e3329d 100644
--- a/packages/integrations/tailwind/package.json
+++ b/packages/integrations/tailwind/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/tailwind",
"description": "Tailwind + Astro Integrations",
- "version": "2.1.0",
+ "version": "2.1.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index 0a950e72a..cfc35716a 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/vercel
+## 2.3.0
+
+### Minor Changes
+
+- [#5086](https://github.com/withastro/astro/pull/5086) [`f8198d250`](https://github.com/withastro/astro/commit/f8198d2502bbf7f7daf5854e7e12317e39a66fcc) Thanks [@JuanM04](https://github.com/JuanM04)! - Minify Edge Function output to save space
+
+- [#5085](https://github.com/withastro/astro/pull/5085) [`cd25abae5`](https://github.com/withastro/astro/commit/cd25abae594f9c42d3766753dfeee4f476311f1e) Thanks [@JuanM04](https://github.com/JuanM04)! - Added `includeFiles` and `excludeFiles` options
+
## 2.2.0
### Minor Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index b0c7bc469..29638e66f 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.2.0",
+ "version": "2.3.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md
index b7ff6d03e..936c6fb11 100644
--- a/packages/integrations/vue/CHANGELOG.md
+++ b/packages/integrations/vue/CHANGELOG.md
@@ -1,5 +1,37 @@
# @astrojs/vue
+## 1.2.0
+
+### Minor Changes
+
+- [#5075](https://github.com/withastro/astro/pull/5075) [`d25f54cb9`](https://github.com/withastro/astro/commit/d25f54cb9306eea9ed0445af8f77604dacacad43) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add support for the `appEntrypoint` option, which accepts a root-relative path to an app entrypoint. The default export of this file should be a function that accepts a Vue `App` instance prior to rendering. This opens up the ability to extend the `App` instance with [custom Vue plugins](https://vuejs.org/guide/reusability/plugins.html).
+
+ ```js
+ // astro.config.mjs
+ import { defineConfig } from 'astro/config';
+ import vue from '@astrojs/vue';
+
+ export default defineConfig({
+ integrations: [
+ vue({
+ appEntrypoint: '/src/pages/_app',
+ }),
+ ],
+ });
+ ```
+
+ ```js
+ // src/pages/_app.ts
+ import type { App } from 'vue';
+ import i18nPlugin from '../plugins/i18n';
+
+ export default function setup(app: App) {
+ app.use(i18nPlugin, {
+ /* options */
+ });
+ }
+ ```
+
## 1.1.0
### Minor Changes
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index c5a932a3a..f4682aa47 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/vue",
- "version": "1.1.0",
+ "version": "1.2.0",
"description": "Use Vue components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 74acb6114..cc8ab1627 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -61,7 +61,7 @@ importers:
examples/basics:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
astro: link:../../packages/astro
@@ -70,7 +70,7 @@ importers:
'@astrojs/mdx': ^0.11.4
'@astrojs/rss': ^1.0.2
'@astrojs/sitemap': ^1.0.0
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@@ -79,14 +79,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^1.2.0
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
astro: link:../../packages/astro
devDependencies:
@@ -96,13 +96,13 @@ importers:
specifiers:
'@algolia/client-search': ^4.13.1
'@astrojs/preact': ^1.2.0
- '@astrojs/react': ^1.2.0
+ '@astrojs/react': ^1.2.1
'@docsearch/css': ^3.1.0
'@docsearch/react': ^3.1.0
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
- astro: ^1.5.0
+ astro: ^1.5.1
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -125,7 +125,7 @@ importers:
'@astrojs/alpinejs': ^0.1.2
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.0
@@ -136,7 +136,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.0.0
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.5.0
+ astro: ^1.5.1
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@@ -147,11 +147,11 @@ importers:
examples/framework-multiple:
specifiers:
'@astrojs/preact': ^1.2.0
- '@astrojs/react': ^1.2.0
- '@astrojs/solid-js': ^1.2.0
+ '@astrojs/react': ^1.2.1
+ '@astrojs/solid-js': ^1.2.1
'@astrojs/svelte': ^1.0.2
- '@astrojs/vue': ^1.1.0
- astro: ^1.5.0
+ '@astrojs/vue': ^1.2.0
+ astro: ^1.5.1
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -176,7 +176,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@preact/signals': ^1.1.0
- astro: ^1.5.0
+ astro: ^1.5.1
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@@ -186,10 +186,10 @@ importers:
examples/framework-react:
specifiers:
- '@astrojs/react': ^1.2.0
+ '@astrojs/react': ^1.2.1
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^1.5.0
+ astro: ^1.5.1
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -202,8 +202,8 @@ importers:
examples/framework-solid:
specifiers:
- '@astrojs/solid-js': ^1.2.0
- astro: ^1.5.0
+ '@astrojs/solid-js': ^1.2.1
+ astro: ^1.5.1
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@@ -213,7 +213,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^1.0.2
- astro: ^1.5.0
+ astro: ^1.5.1
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@@ -222,8 +222,8 @@ importers:
examples/framework-vue:
specifiers:
- '@astrojs/vue': ^1.1.0
- astro: ^1.5.0
+ '@astrojs/vue': ^1.2.0
+ astro: ^1.5.1
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@@ -232,33 +232,33 @@ importers:
examples/integration:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
astro: link:../../packages/astro
examples/ssr:
specifiers:
- '@astrojs/node': ^2.0.0
+ '@astrojs/node': ^2.0.1
'@astrojs/svelte': ^1.0.2
- astro: ^1.5.0
+ astro: ^1.5.1
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@@ -275,7 +275,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^1.1.3
- astro: ^1.5.0
+ astro: ^1.5.1
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -292,7 +292,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
dependencies:
astro: link:../../packages/astro
@@ -300,7 +300,7 @@ importers:
specifiers:
'@astrojs/mdx': ^0.11.4
'@astrojs/preact': ^1.2.0
- astro: ^1.5.0
+ astro: ^1.5.1
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@@ -312,7 +312,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@nanostores/preact': ^0.1.3
- astro: ^1.5.0
+ astro: ^1.5.1
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@@ -325,9 +325,9 @@ importers:
examples/with-tailwindcss:
specifiers:
'@astrojs/mdx': ^0.11.4
- '@astrojs/tailwind': ^2.1.0
+ '@astrojs/tailwind': ^2.1.1
'@types/canvas-confetti': ^1.4.3
- astro: ^1.5.0
+ astro: ^1.5.1
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -344,7 +344,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@@ -354,7 +354,7 @@ importers:
examples/with-vitest:
specifiers:
- astro: ^1.5.0
+ astro: ^1.5.1
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro