Skip to content

Commit

Permalink
docs: Update minimum supported Node.js version to 14 (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Jun 20, 2023
1 parent 456e319 commit 5aee850
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This document serves as a migration guide, documenting all breaking changes betw
- Removed `customHeader` option in favor of `headers` option which allows for multiple headers to be attached to outgoing requests.
- The `cliBinaryExists` function was renamed to `sentryCliBinaryExists`
- Removed the `configFile` option. Options should now be set explicitly or via environment variables.
- The minimum supported Node.js version is now 14 and newer.

## Upgrading from 1.x to 2.x (Webpack Plugin Only)

Expand Down
2 changes: 1 addition & 1 deletion packages/bundler-plugin-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"extends": "../../package.json"
},
"engines": {
"node": ">= 10"
"node": ">= 14"
},
"sideEffects": [
"./sentry-release-injection-file.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@
"extends": "../../package.json"
},
"engines": {
"node": ">= 10"
"node": ">= 14"
}
}
2 changes: 1 addition & 1 deletion packages/rollup-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@
"extends": "../../package.json"
},
"engines": {
"node": ">= 10"
"node": ">= 14"
}
}
2 changes: 1 addition & 1 deletion packages/vite-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@
"extends": "../../package.json"
},
"engines": {
"node": ">= 10"
"node": ">= 14"
}
}
2 changes: 1 addition & 1 deletion packages/webpack-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@
"extends": "../../package.json"
},
"engines": {
"node": ">= 10"
"node": ">= 14"
}
}

0 comments on commit 5aee850

Please sign in to comment.