Skip to content

Commit 7feff9c

Browse files
committed
Add readme, drop node 18 support
1 parent f9c6b72 commit 7feff9c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
node: [ 12, 14, 16, 18 ]
26+
node: [ 12, 14, 16 ]
2727
name: Node ${{ matrix.node }} Test
2828
steps:
2929
- name: Checkout code

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

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

5-
Supports node >= 12
5+
Supports node >= 12 < 18
6+
7+
node 18 not supported due to https://github.com/nodejs/node/issues/52017 for Triple DES algorithms.
68

79
## Usage
810

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"test": "mocha"
3333
},
3434
"engines": {
35-
"node": ">=12"
35+
"node": ">=12 < 18"
3636
}
3737
}

0 commit comments

Comments
 (0)