Skip to content

Commit

Permalink
# added support for Node 14
Browse files Browse the repository at this point in the history
Signed-off-by: Theo Truong <theotr@amazon.com>
  • Loading branch information
nhtruong committed Oct 30, 2024
1 parent 90c9ce2 commit 0908132
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 22.x]
node-version: [14.x, 16.x, 18.x, 20.x, 22.x]
os: [ubuntu-latest, windows-latest, macOS-13]

steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Removed
- Removed support for API param aliases. That is, the API functions now only accept params with the exact names specified in the OpenSearch API specification.
- Removed support for overriding HTTP methods in API functions.
- Removed support for Node.js 10 through 14. The minimum supported Node.js version is now 16.
- Removed support for Node.js 10 and 12. The minimum supported Node.js version is now 14.
### Fixed
- Upgrade JSON11 from 1.1.2 to 2.0.0 to ensure UTF-8 safety when stringifying JSON data
- Fixed typo cause JSON11 parse will always be executed when json string has number inside
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"url": "https://github.com/opensearch-project/opensearch-js/issues"
},
"engines": {
"node": ">=16",
"node": ">=14",
"yarn": "^1.22.10"
},
"tsd": {
Expand Down

0 comments on commit 0908132

Please sign in to comment.