We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c6b72 commit 7feff9cCopy full SHA for 7feff9c
.github/workflows/test.yml
@@ -23,7 +23,7 @@ jobs:
23
runs-on: ubuntu-latest
24
strategy:
25
matrix:
26
- node: [ 12, 14, 16, 18 ]
+ node: [ 12, 14, 16 ]
27
name: Node ${{ matrix.node }} Test
28
steps:
29
- name: Checkout code
README.md
@@ -2,7 +2,9 @@
2
3
W3C XML Encryption implementation for node.js (http://www.w3.org/TR/xmlenc-core/)
4
5
-Supports node >= 12
+Supports node >= 12 < 18
6
+
7
+node 18 not supported due to https://github.com/nodejs/node/issues/52017 for Triple DES algorithms.
8
9
## Usage
10
package.json
@@ -32,6 +32,6 @@
32
"test": "mocha"
33
},
34
"engines": {
35
- "node": ">=12"
+ "node": ">=12 < 18"
36
}
37
0 commit comments