-
Notifications
You must be signed in to change notification settings - Fork 982
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
chore: maintained Node.js (14+) required #1923
base: master
Are you sure you want to change the base?
Changes from all commits
385d591
edf9882
1cc3e1a
82ec9c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ var config = { | |
es6: true | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2018 | ||
ecmaVersion: 2020 | ||
}, | ||
rules: {} | ||
}; | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -85,13 +85,21 @@ $ npm install restify | |||||
|
||||||
## Supported Node Versions | ||||||
|
||||||
Restify currently works on Node.js v14.x and v16.x. | ||||||
Restify aims to support the Node.js LTS (Active and Maintenance) versions along with Node.js current stable version. | ||||||
|
||||||
| Node Release | Supported in Current Version | Notes | | ||||||
| :--: | :---: | :---: | | ||||||
| 18.x | **Yes** | Restify v10.x required. | | ||||||
| 16.x | **Yes** | | | ||||||
| 14.x | **Yes** | | | ||||||
| 12.x | **No** | Use restify v8.x, team will backport critical issues only | | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| 10.x | **No** | Use restify v8.x, team will backport critical issues only | | ||||||
|
||||||
## License | ||||||
|
||||||
The MIT License (MIT) | ||||||
|
||||||
Copyright (c) 2018 restify | ||||||
Copyright (c) 2023 restify | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please remove this change |
||||||
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||||||
this software and associated documentation files (the "Software"), to deal in | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,7 @@ | |
"report-latency": "./bin/report-latency" | ||
}, | ||
"engines": { | ||
"node": ">=10.0.0" | ||
"node": ">=14.0.0" | ||
}, | ||
"dependencies": { | ||
"assert-plus": "^1.0.0", | ||
|
@@ -124,7 +124,7 @@ | |
"chai": "^4.2.0", | ||
"coveralls": "^3.0.3", | ||
"documentation": "^11.0.0", | ||
"eslint": "^5.16.0", | ||
"eslint": "^6.8.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't make an unrelated change unless strictly necessary |
||
"eslint-config-prettier": "^4.3.0", | ||
"eslint-plugin-jsdoc": "^3.15.1", | ||
"eslint-plugin-prettier": "^3.1.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate line? unless you meant to say 10.x?