Skip to content

Commit

Permalink
Stop support EOL node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
omrilotan committed Oct 20, 2023
1 parent 2bee636 commit 51e73cd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@ workflows:
matrix:
parameters:
image:
- cimg/node:12.22
- cimg/node:14.18
- cimg/node:16.15
- cimg/node:18.4
- cimg/node:19.6
- cimg/node:16.20
- cimg/node:18.18
- cimg/node:20.7
- cimg/node:lts
- cimg/node:current
requires:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [4.0.0](https://github.com/omrilotan/isbot/compare/v3.7.00...v4.0.0)
- Stop active support for EOL node versions 14, 12
- No code changes

## [3.7.00](https://github.com/omrilotan/isbot/compare/v3.6.13...v3.7.00)
- Expose iife and support JSDeliver CDN

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ Missing something? Please [open an issue](https://github.com/omrilotan/isbot/iss

## Major releases breaking changes ([full changelog](./CHANGELOG.md))

### [**Version 4**](https://github.com/omrilotan/isbot/releases/tag/v4.0.0)
Remove testing for node 14 and 12

### [**Version 3**](https://github.com/omrilotan/isbot/releases/tag/v3.0.0)
Remove testing for node 6 and 8

Expand Down
5 changes: 4 additions & 1 deletion babel.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"presets": [
[
"@babel/preset-env"
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
],
"plugins": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"url": "https://github.com/omrilotan/isbot"
},
"engines": {
"node": ">=12"
"node": ">=16"
},
"type": "commonjs",
"main": "./index.js",
Expand Down

0 comments on commit 51e73cd

Please sign in to comment.