Skip to content

Commit

Permalink
feat(node): Deprecate end-of-life node versions (#271)
Browse files Browse the repository at this point in the history
close #270
  • Loading branch information
Retro64 authored Oct 29, 2021
1 parent 3d658a2 commit bcd9154
Show file tree
Hide file tree
Showing 7 changed files with 336 additions and 390 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [17.x, 16.x, 14.x, 12.x, "12.22.0"]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## `authmosphere 4.0.0`

* Due to some dependency updates like Eslint, Node.js 10, 13, and 15 are no longer supported (see also [Eslint 8.0.0 migration guide](https://eslint.org/docs/8.0.0/user-guide/migrating-to-8.0.0))
* Minor change in logging, to ensure a higher compatibility to multiple usable loggers

## `authmosphere 3.0.4`

* updated nock and eslint
Expand Down
8 changes: 8 additions & 0 deletions MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Migration guide

## Migrate from `[email protected]` or `[email protected]` to `[email protected]`

Change the required node version to one of the following verions, as other versions (state: October 2021) are end-of-life:

* Node.js 12.22 and above
* Node.js 14 and above
* Node.js 16 and above

## Migrate from `[email protected]` to `[email protected]`

* run `npm install --save authmosphere@~2.0.0`
Expand Down
Loading

0 comments on commit bcd9154

Please sign in to comment.