diff --git a/.changeset/dry-moose-join.md b/.changeset/dry-moose-join.md deleted file mode 100644 index b90fac4eeb3ff..0000000000000 --- 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 5f3eec5769812..0000000000000 --- 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 05c93789fc0fd..0000000000000 --- 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 98975c390838d..0000000000000 --- 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 58dd5f6749878..0000000000000 --- 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 8083222095507..0000000000000 --- 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 a11a8053a245d..0000000000000 --- 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 09bd0d7cff714..0000000000000 --- 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 9a77e4731f418..0000000000000 --- 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 423b11e00fab5..0000000000000 --- 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 a0223f699cc35..0000000000000 --- a/.changeset/short-lemons-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/node': patch ---- - -fix port in standalone mode diff --git a/.changeset/silver-hotels-jam.md b/.changeset/silver-hotels-jam.md deleted file mode 100644 index 1b34b3784806f..0000000000000 --- 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 9308fbf07a012..0000000000000 --- 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 e983a382457ac..0000000000000 --- 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 37688d16b02b6..0000000000000 --- 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 0a5b48aaaa686..819b2f9999b8a 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 6baaa6746c367..b09bb798b9a09 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 4fd6e320d0834..4cbede0053fd7 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 b5171bfe123ef..9400be4749778 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 34ea9c03d4388..1da9531b57f9f 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 581f3b6637feb..f8871a6c0bec2 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 160dcd4d2cda6..ca5a9b534c232 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 4b25ab7bd9e14..2069523526f2d 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 6a94916a3bd09..bdb82dfbc0f38 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 88bdd9917607b..07beab83a467d 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 2c19e901596bb..1368932460f1c 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 1a5fc2cc55cd7..9eade574dd6f0 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 779ddf150a849..0e5ffbd305f45 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 3dfd744ca77dc..4ce51d6c96120 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 d184053a454e4..497a363de0cf3 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 703c90365fe63..3d2680debe4a6 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 7cd4cafe65639..59c39ef79a211 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 e792eb3ae337a..7a2c5c517fbc3 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,10 +13,10 @@ }, "devDependencies": {}, "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", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 12acd79c92d73..660beef3e3267 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 2413062dee02f..4a257ead273fe 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 1a7157ac114c6..e3d3d761b0c55 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 c17a816c65e5a..c50c8d67898cf 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 4902b419546ba..d1878de7af0c4 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 0b52021486978..f4dc42147cca3 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 f78c36630d934..c7cae7541fd5e 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 8d531f11d4071..2bc921020aef3 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,25 @@ # 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'` + +- [#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 c3549db85988d..f8b31f6d53900 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 8b6ceffb2af65..40635eab2fd6b 100644 --- a/packages/integrations/node/CHANGELOG.md +++ b/packages/integrations/node/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/node +## 2.0.1 + +### Patch Changes + +- [#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 92857ffa09bda..69baca5e2cc3d 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 2b4a26e476efd..0b5f60b239d8c 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 d4519025a2e24..29b23e2ed5b7e 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 575298726dbfe..488e660e1fdb4 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 b9bff301ecc91..df1fc3199d333 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 35c944506f59f..c69fadb9481aa 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 22ec6482c895b..783e3329d00a4 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 0a950e72a6e94..cfc35716a1fa3 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 b0c7bc469fbf7..29638e66f2b69 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 b7ff6d03ef87f..936c6fb11c147 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 c5a932a3af4bb..f4682aa474144 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 cca1d9229a130..90bb4921edb37 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 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -277,7 +277,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 @@ -294,7 +294,7 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro @@ -302,7 +302,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 @@ -314,7 +314,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: @@ -327,9 +327,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 @@ -346,7 +346,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: @@ -356,7 +356,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro