Skip to content

Commit

Permalink
Add readme, drop node 18 support
Browse files Browse the repository at this point in the history
  • Loading branch information
gkwang committed Aug 1, 2024
1 parent f9c6b72 commit 7feff9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 12, 14, 16, 18 ]
node: [ 12, 14, 16 ]
name: Node ${{ matrix.node }} Test
steps:
- name: Checkout code
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

W3C XML Encryption implementation for node.js (http://www.w3.org/TR/xmlenc-core/)

Supports node >= 12
Supports node >= 12 < 18

node 18 not supported due to https://github.com/nodejs/node/issues/52017 for Triple DES algorithms.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"test": "mocha"
},
"engines": {
"node": ">=12"
"node": ">=12 < 18"
}
}

0 comments on commit 7feff9c

Please sign in to comment.