Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade the minimum Node.js maintainance LTS version #10689

Merged
merged 6 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .changeset/empty-rules-type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
"@astrojs/markdoc": minor
"@astrojs/preact": minor
"@astrojs/svelte": minor
"@astrojs/react": minor
"@astrojs/solid-js": minor
"@astrojs/mdx": minor
"@astrojs/vue": minor
"create-astro": minor
"@astrojs/prism": minor
"@astrojs/telemetry": minor
"@astrojs/upgrade": minor
"astro": minor
---

Upgrades the minimum version of Node.js to `v18.20.1`. This change is in line with [Node.js support policy](https://docs.astro.build/en/upgrade-astro/#support)
ematipico marked this conversation as resolved.
Show resolved Hide resolved

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"packages/*"
],
"engines": {
"node": ">=18.14.1",
"node": ">=18.20.1",
ematipico marked this conversation as resolved.
Show resolved Hide resolved
ematipico marked this conversation as resolved.
Show resolved Hide resolved
"pnpm": ">=8.6.12"
},
"packageManager": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-prism/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
"astro-scripts": "workspace:*"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
}
}
2 changes: 1 addition & 1 deletion packages/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
"unified": "^11.0.4"
},
"engines": {
"node": ">=18.14.1",
"node": ">=18.20.1",
"npm": ">=6.14.0"
ematipico marked this conversation as resolved.
Show resolved Hide resolved
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"strip-json-comments": "^5.0.1"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/markdoc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"vite": "^5.1.4"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"vite": "^5.1.4"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"preact": "^10.6.5"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"react-dom": "^17.0.2 || ^18.0.0"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"solid-js": "^1.8.5"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"vue": "^3.2.30"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/telemetry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"astro-scripts": "workspace:*"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/upgrade/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"strip-ansi": "^7.1.0"
},
"engines": {
"node": ">=18.14.1"
"node": ">=18.20.1"
}
}
Loading