diff --git a/.changeset/cold-jokes-buy.md b/.changeset/cold-jokes-buy.md deleted file mode 100644 index 7aaa96cfd83b..000000000000 --- a/.changeset/cold-jokes-buy.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@astrojs/telemetry": patch ---- - -Track if the Astro CLI is running in a [`TTY`](nodejs.org/api/process.html#a-note-on-process-io) context. - -This information helps us better understand scripted use of Astro vs. direct terminal use of Astro CLI by a user, especially the `astro dev` command. diff --git a/.changeset/hip-rockets-glow.md b/.changeset/hip-rockets-glow.md deleted file mode 100644 index fd121c0d4022..000000000000 --- a/.changeset/hip-rockets-glow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdoc': minor ---- - -Added ignoreIndentation as a markdoc integration option to enable better readability of source code. diff --git a/.changeset/lazy-actors-enjoy.md b/.changeset/lazy-actors-enjoy.md deleted file mode 100644 index 3896041b4846..000000000000 --- a/.changeset/lazy-actors-enjoy.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@astrojs/vercel': minor ---- - -You can now configure how long your functions can run before timing out. - -```diff -export default defineConfig({ - output: "server", - adapter: vercel({ -+ maxDuration: 60 - }), -}); -``` diff --git a/.changeset/ninety-onions-bow.md b/.changeset/ninety-onions-bow.md deleted file mode 100644 index c651c584bd25..000000000000 --- a/.changeset/ninety-onions-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': minor ---- - -Automatically installs the required dependencies to run the astro check command when the user indicates they plan to write TypeScript. diff --git a/.changeset/poor-steaks-confess.md b/.changeset/poor-steaks-confess.md deleted file mode 100644 index 254375c6ad41..000000000000 --- a/.changeset/poor-steaks-confess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -Prevents the Vercel serverless adapter from generating static redirect pages in hybrid mode diff --git a/.changeset/real-dryers-destroy.md b/.changeset/real-dryers-destroy.md deleted file mode 100644 index d5195b4a4dea..000000000000 --- a/.changeset/real-dryers-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/react': patch ---- - -Fixes client hydration in islands when using experimentalReactChildren diff --git a/.changeset/silent-goats-invent.md b/.changeset/silent-goats-invent.md deleted file mode 100644 index 1ebb37772264..000000000000 --- a/.changeset/silent-goats-invent.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes CSS modules ordering by rendering styles before links diff --git a/.changeset/slow-cheetahs-marry.md b/.changeset/slow-cheetahs-marry.md deleted file mode 100644 index 547543eae0c8..000000000000 --- a/.changeset/slow-cheetahs-marry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/mdx": patch ---- - -Update the README to suggest that users install the [official MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) for [VS Code](https://code.visualstudio.com/). diff --git a/.changeset/soft-berries-prove.md b/.changeset/soft-berries-prove.md deleted file mode 100644 index cce169649930..000000000000 --- a/.changeset/soft-berries-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -No longer attempts to delete the directory after a template download fails if the path is `.`, `./` or starts with `../`. diff --git a/examples/basics/package.json b/examples/basics/package.json index 69cea1b5335b..3841a5724f9b 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 6a86d5e75ed1..bc933636617e 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^1.1.2", + "@astrojs/mdx": "^1.1.3", "@astrojs/rss": "^3.0.0", "@astrojs/sitemap": "^3.0.2", - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/component/package.json b/examples/component/package.json index cd506a94fe53..d1ea26891a68 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" }, "peerDependencies": { "astro": "^2.0.0-beta.0" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 8dd4c2f7badd..0e433cee77d9 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -14,6 +14,6 @@ "@astrojs/alpinejs": "^0.3.1", "@types/alpinejs": "^3.7.2", "alpinejs": "^3.12.3", - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 0bb99b21b6f4..ddbeb50b5f30 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/lit": "^3.0.2", "@webcomponents/template-shadowroot": "^0.2.1", - "astro": "^3.3.3", + "astro": "^3.3.4", "lit": "^2.8.0" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index a666d6a764d6..ddfda19c55c8 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -12,11 +12,11 @@ }, "dependencies": { "@astrojs/preact": "^3.0.1", - "@astrojs/react": "^3.0.3", + "@astrojs/react": "^3.0.4", "@astrojs/solid-js": "^3.0.2", "@astrojs/svelte": "^4.0.3", "@astrojs/vue": "^3.0.2", - "astro": "^3.3.3", + "astro": "^3.3.4", "preact": "^10.17.1", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 49a9b30f129c..a1f5e2478a74 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/preact": "^3.0.1", "@preact/signals": "^1.2.1", - "astro": "^3.3.3", + "astro": "^3.3.4", "preact": "^10.17.1" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index b5dffaedb265..f91e9fdaf7c0 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^3.0.3", + "@astrojs/react": "^3.0.4", "@types/react": "^18.2.21", "@types/react-dom": "^18.2.7", - "astro": "^3.3.3", + "astro": "^3.3.4", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index e47ad8e93241..c3dd50c1d637 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/solid-js": "^3.0.2", - "astro": "^3.3.3", + "astro": "^3.3.4", "solid-js": "^1.7.11" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 95c76caa27d5..f71a3b5d1497 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/svelte": "^4.0.3", - "astro": "^3.3.3", + "astro": "^3.3.4", "svelte": "^4.2.0" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 917fafed0c84..8fd1813e5b50 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/vue": "^3.0.2", - "astro": "^3.3.3", + "astro": "^3.3.4", "vue": "^3.3.4" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 4d0bec10c5e6..b0f9d3f2ab8d 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/node": "^6.0.3", - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 659a8b14e79b..7aa4ce45b921 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" }, "peerDependencies": { "astro": "^2.0.0-beta.0" diff --git a/examples/middleware/package.json b/examples/middleware/package.json index 1a6a67d6b07c..b3cc72b7b72b 100644 --- a/examples/middleware/package.json +++ b/examples/middleware/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@astrojs/node": "^6.0.3", - "astro": "^3.3.3", + "astro": "^3.3.4", "html-minifier": "^4.0.0" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index a6babddad16a..6445cfb71305 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 3eaae1583e2f..7804b28992b9 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 1371ebd8dca4..3604623773e9 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index b220378bb879..6d706aa2db06 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -14,7 +14,7 @@ "dependencies": { "@astrojs/node": "^6.0.3", "@astrojs/svelte": "^4.0.3", - "astro": "^3.3.3", + "astro": "^3.3.4", "svelte": "^4.2.0" } } diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json index 7ca3e53e661c..d3990c375274 100644 --- a/examples/view-transitions/package.json +++ b/examples/view-transitions/package.json @@ -12,6 +12,6 @@ "devDependencies": { "@astrojs/tailwind": "^5.0.2", "@astrojs/node": "^6.0.3", - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 376ad53ece6a..4e63077aa633 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.6.0", - "astro": "^3.3.3" + "@astrojs/markdoc": "^0.7.0", + "astro": "^3.3.4" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index bfa94af47227..6afd7f7fa437 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/markdown-remark": "^3.3.0", - "astro": "^3.3.3", + "astro": "^3.3.4", "hast-util-select": "^5.0.5", "rehype-autolink-headings": "^6.1.1", "rehype-slug": "^5.1.0", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 1e5fa5900fe6..76fa92411d23 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^3.3.3" + "astro": "^3.3.4" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index f366e1f9f3cc..484aaa44c799 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^1.1.2", + "@astrojs/mdx": "^1.1.3", "@astrojs/preact": "^3.0.1", - "astro": "^3.3.3", + "astro": "^3.3.4", "preact": "^10.17.1" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 00740dba80f4..0ada5eec7275 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/preact": "^3.0.1", "@nanostores/preact": "^0.5.0", - "astro": "^3.3.3", + "astro": "^3.3.4", "nanostores": "^0.9.3", "preact": "^10.17.1" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index ee061fbd422c..e8e3697ad0db 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^1.1.2", + "@astrojs/mdx": "^1.1.3", "@astrojs/tailwind": "^5.0.2", "@types/canvas-confetti": "^1.6.0", - "astro": "^3.3.3", + "astro": "^3.3.4", "autoprefixer": "^10.4.15", "canvas-confetti": "^1.6.0", "postcss": "^8.4.28", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 6b92be295386..e088bddb60b2 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": "^3.3.3", + "astro": "^3.3.4", "vite-plugin-pwa": "0.16.4", "workbox-window": "^7.0.0" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 9b1577284621..733cd32f7272 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^3.3.3", + "astro": "^3.3.4", "vitest": "^0.34.2" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index e9d44eed4336..2f5e3dc75b02 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,14 @@ # astro +## 3.3.4 + +### Patch Changes + +- [#8877](https://github.com/withastro/astro/pull/8877) [`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297) Thanks [@bluwy](https://github.com/bluwy)! - Fixes CSS modules ordering by rendering styles before links + +- Updated dependencies [[`341ef6578`](https://github.com/withastro/astro/commit/341ef6578528a00f89bf6da5e4243b0fde272816)]: + - @astrojs/telemetry@3.0.4 + ## 3.3.3 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 88aa9e42b29b..ab5dd2546123 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "3.3.3", + "version": "3.3.4", "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/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 39b7a3bbb0e8..58f606c54977 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,15 @@ # create-astro +## 4.4.0 + +### Minor Changes + +- [#8853](https://github.com/withastro/astro/pull/8853) [`ce807a2bf`](https://github.com/withastro/astro/commit/ce807a2bfef325683bfdb01065a73c4e2b0a5fe5) Thanks [@rayriffy](https://github.com/rayriffy)! - Automatically installs the required dependencies to run the astro check command when the user indicates they plan to write TypeScript. + +### Patch Changes + +- [#8841](https://github.com/withastro/astro/pull/8841) [`f2dd895d7`](https://github.com/withastro/astro/commit/f2dd895d71e0fccfbc1b98890ceefb69f32524d5) Thanks [@Genteure](https://github.com/Genteure)! - No longer attempts to delete the directory after a template download fails if the path is `.`, `./` or starts with `../`. + ## 4.3.0 ### Minor Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 394d4389c5d0..331c149f2015 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "4.3.0", + "version": "4.4.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index 3ac9b23c575f..c025e3c6b180 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/markdoc +## 0.7.0 + +### Minor Changes + +- [#8802](https://github.com/withastro/astro/pull/8802) [`73b8d60f8`](https://github.com/withastro/astro/commit/73b8d60f8c3eeae74035202b0ea0d4848e736c7d) Thanks [@AndyClifford](https://github.com/AndyClifford)! - Added ignoreIndentation as a markdoc integration option to enable better readability of source code. + +### Patch Changes + +- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]: + - astro@3.3.4 + ## 0.6.0 ### Minor Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index c3895d83a41a..c40c97bc74b1 100644 --- a/packages/integrations/markdoc/package.json +++ b/packages/integrations/markdoc/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/markdoc", "description": "Add support for Markdoc in your Astro site", - "version": "0.6.0", + "version": "0.7.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -75,7 +75,7 @@ "zod": "3.21.1" }, "peerDependencies": { - "astro": "workspace:^3.3.3" + "astro": "workspace:^3.3.4" }, "devDependencies": { "@astrojs/markdown-remark": "workspace:*", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 0a5fbd06fac9..90070e1b9058 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/mdx +## 1.1.3 + +### Patch Changes + +- [#8897](https://github.com/withastro/astro/pull/8897) [`5a3d46da1`](https://github.com/withastro/astro/commit/5a3d46da1e80f62a29eaf464eeb87c626cc5593f) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Update the README to suggest that users install the [official MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) for [VS Code](https://code.visualstudio.com/). + +- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]: + - astro@3.3.4 + ## 1.1.2 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 56a1ab37aefb..1d7f19229098 100644 --- a/packages/integrations/mdx/package.json +++ b/packages/integrations/mdx/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/mdx", "description": "Add support for MDX pages in your Astro site", - "version": "1.1.2", + "version": "1.1.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -51,7 +51,7 @@ "vfile": "^5.3.7" }, "peerDependencies": { - "astro": "workspace:^3.3.3" + "astro": "workspace:^3.3.4" }, "devDependencies": { "@types/chai": "^4.3.5", diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index 2c6f9cbaecb2..3246dfdfacb1 100644 --- a/packages/integrations/node/package.json +++ b/packages/integrations/node/package.json @@ -37,7 +37,7 @@ "server-destroy": "^1.0.1" }, "peerDependencies": { - "astro": "workspace:^3.3.3" + "astro": "workspace:^3.3.4" }, "devDependencies": { "@types/node": "^18.17.8", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index dec1b42355fe..b74b2c69648b 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/react +## 3.0.4 + +### Patch Changes + +- [#8898](https://github.com/withastro/astro/pull/8898) [`4dee38711`](https://github.com/withastro/astro/commit/4dee38711cbf83efb5e12fbfa8e69e2495c49acf) Thanks [@matthewp](https://github.com/matthewp)! - Fixes client hydration in islands when using experimentalReactChildren + ## 3.0.3 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index e717cc1a5393..074d963e85b1 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": "3.0.3", + "version": "3.0.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 665b9c9836d5..10db29bded5a 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -48,7 +48,7 @@ "vite": "^4.4.9" }, "peerDependencies": { - "astro": "workspace:^3.3.3", + "astro": "workspace:^3.3.4", "svelte": "^3.55.0 || ^4.0.0" }, "engines": { diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index ce47fbd25d5a..7fbeee2031a6 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -43,7 +43,7 @@ "vite": "^4.4.9" }, "peerDependencies": { - "astro": "workspace:^3.3.3", + "astro": "workspace:^3.3.4", "tailwindcss": "^3.0.24" }, "publishConfig": { diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 9411901b1c98..c797dcca08f3 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,27 @@ # @astrojs/vercel +## 5.1.0 + +### Minor Changes + +- [#8867](https://github.com/withastro/astro/pull/8867) [`b209e5335`](https://github.com/withastro/astro/commit/b209e533584521c55f88b929f28ea9d5189045f9) Thanks [@lilnasy](https://github.com/lilnasy)! - You can now configure how long your functions can run before timing out. + + ```diff + export default defineConfig({ + output: "server", + adapter: vercel({ + + maxDuration: 60 + }), + }); + ``` + +### Patch Changes + +- [#8896](https://github.com/withastro/astro/pull/8896) [`5dd1ed50b`](https://github.com/withastro/astro/commit/5dd1ed50b2f9428946b0b273e0ce8f13c19aa3b5) Thanks [@bluwy](https://github.com/bluwy)! - Prevents the Vercel serverless adapter from generating static redirect pages in hybrid mode + +- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]: + - astro@3.3.4 + ## 5.0.2 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 92fe36702a12..623ddf861f83 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": "5.0.2", + "version": "5.1.0", "type": "module", "author": "withastro", "license": "MIT", @@ -61,7 +61,7 @@ "web-vitals": "^3.4.0" }, "peerDependencies": { - "astro": "workspace:^3.3.3" + "astro": "workspace:^3.3.4" }, "devDependencies": { "@types/set-cookie-parser": "^2.4.3", diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 758518deb514..03e20fe06d56 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -56,7 +56,7 @@ "vue": "^3.3.4" }, "peerDependencies": { - "astro": "workspace:^3.3.3", + "astro": "workspace:^3.3.4", "vue": "^3.2.30" }, "engines": { diff --git a/packages/telemetry/CHANGELOG.md b/packages/telemetry/CHANGELOG.md index 21cea495559c..1d4cdff53cd4 100644 --- a/packages/telemetry/CHANGELOG.md +++ b/packages/telemetry/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/telemetry +## 3.0.4 + +### Patch Changes + +- [#8900](https://github.com/withastro/astro/pull/8900) [`341ef6578`](https://github.com/withastro/astro/commit/341ef6578528a00f89bf6da5e4243b0fde272816) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Track if the Astro CLI is running in a [`TTY`](nodejs.org/api/process.html#a-note-on-process-io) context. + + This information helps us better understand scripted use of Astro vs. direct terminal use of Astro CLI by a user, especially the `astro dev` command. + ## 3.0.3 ### Patch Changes diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index e0230b9d5ac4..66edc3fba603 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/telemetry", - "version": "3.0.3", + "version": "3.0.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1940d296ab33..1f9801fc6fe5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -125,13 +125,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^1.1.2 + specifier: ^1.1.3 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^3.0.0 @@ -140,13 +140,13 @@ importers: specifier: ^3.0.2 version: link:../../packages/integrations/sitemap astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/framework-alpine: @@ -161,7 +161,7 @@ importers: specifier: ^3.12.3 version: 3.12.3 astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/framework-lit: @@ -173,7 +173,7 @@ importers: specifier: ^0.2.1 version: 0.2.1 astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro lit: specifier: ^2.8.0 @@ -185,7 +185,7 @@ importers: specifier: ^3.0.1 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^3.0.3 + specifier: ^3.0.4 version: link:../../packages/integrations/react '@astrojs/solid-js': specifier: ^3.0.2 @@ -197,7 +197,7 @@ importers: specifier: ^3.0.2 version: link:../../packages/integrations/vue astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro preact: specifier: ^10.17.1 @@ -227,7 +227,7 @@ importers: specifier: ^1.2.1 version: 1.2.1(preact@10.17.1) astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro preact: specifier: ^10.17.1 @@ -236,7 +236,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^3.0.3 + specifier: ^3.0.4 version: link:../../packages/integrations/react '@types/react': specifier: ^18.2.21 @@ -245,7 +245,7 @@ importers: specifier: ^18.2.7 version: 18.2.7 astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro react: specifier: ^18.2.0 @@ -260,7 +260,7 @@ importers: specifier: ^3.0.2 version: link:../../packages/integrations/solid astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro solid-js: specifier: ^1.7.11 @@ -272,7 +272,7 @@ importers: specifier: ^4.0.3 version: link:../../packages/integrations/svelte astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro svelte: specifier: ^4.2.0 @@ -284,7 +284,7 @@ importers: specifier: ^3.0.2 version: link:../../packages/integrations/vue astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro vue: specifier: ^3.3.4 @@ -296,13 +296,13 @@ importers: specifier: ^6.0.3 version: link:../../packages/integrations/node astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/middleware: @@ -311,7 +311,7 @@ importers: specifier: ^6.0.3 version: link:../../packages/integrations/node astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro html-minifier: specifier: ^4.0.0 @@ -320,19 +320,19 @@ importers: examples/minimal: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/non-html-pages: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/ssr: @@ -344,7 +344,7 @@ importers: specifier: ^4.0.3 version: link:../../packages/integrations/svelte astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro svelte: specifier: ^4.2.0 @@ -359,16 +359,16 @@ importers: specifier: ^5.0.2 version: link:../../packages/integrations/tailwind astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../packages/integrations/markdoc astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/with-markdown-plugins: @@ -377,7 +377,7 @@ importers: specifier: ^3.3.0 version: link:../../packages/markdown/remark astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro hast-util-select: specifier: ^5.0.5 @@ -398,19 +398,19 @@ importers: examples/with-markdown-shiki: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^1.1.2 + specifier: ^1.1.3 version: link:../../packages/integrations/mdx '@astrojs/preact': specifier: ^3.0.1 version: link:../../packages/integrations/preact astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro preact: specifier: ^10.17.1 @@ -425,7 +425,7 @@ importers: specifier: ^0.5.0 version: 0.5.0(nanostores@0.9.3)(preact@10.17.1) astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro nanostores: specifier: ^0.9.3 @@ -437,7 +437,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^1.1.2 + specifier: ^1.1.3 version: link:../../packages/integrations/mdx '@astrojs/tailwind': specifier: ^5.0.2 @@ -446,7 +446,7 @@ importers: specifier: ^1.6.0 version: 1.6.0 astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro autoprefixer: specifier: ^10.4.15 @@ -464,7 +464,7 @@ importers: examples/with-vite-plugin-pwa: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro vite-plugin-pwa: specifier: 0.16.4 @@ -476,7 +476,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^3.3.3 + specifier: ^3.3.4 version: link:../../packages/astro vitest: specifier: ^0.34.2