Skip to content

Commit 658e69c

Browse files
authored
feat: drop support for node <20.18 (#1209)
fixes #1081 --------- Signed-off-by: Jan Kowalleck <[email protected]>
1 parent f07fd40 commit 658e69c

File tree

11 files changed

+32
-53
lines changed

11 files changed

+32
-53
lines changed

.github/workflows/nodejs.yml

+4-36
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,10 @@ jobs:
158158
- "23" # current
159159
- "22" # active LTS
160160
- "20"
161-
- "18"
162-
- "16"
163-
- "14"
164-
- "14.0.0" # lowest supported
161+
- "20.18.0" # lowest supported
165162
os:
166163
- ubuntu-latest
167-
- macos-13 # macos-latest has issues with node14
164+
- macos-latest
168165
- windows-latest
169166
timeout-minutes: 10
170167
steps:
@@ -186,18 +183,9 @@ jobs:
186183
'23' | '22')
187184
npm i -g npm@^11
188185
;;
189-
'20' | '18')
186+
'20' | '20.18.0')
190187
npm i -g npm@^10
191188
;;
192-
'16')
193-
npm i -g npm@^9
194-
;;
195-
'14')
196-
npm i -g npm@^8
197-
;;
198-
'14.0.0')
199-
npm i -g npm@^7
200-
;;
201189
esac
202190
- name: setup project
203191
shell: bash
@@ -211,26 +199,6 @@ jobs:
211199
# and might utilize `npm_config_engine_strict=false`
212200
213201
dev_constraints=' npm-run-all2 c8 mocha fast-glob rimraf '
214-
# as long as npm cannot auto-resolve engine-constraints, we need to help here
215-
case "$NODE_VERSION" in
216-
'16')
217-
dev_constraints="${dev_constraints/ c8 / c8@^9 }"
218-
dev_constraints="${dev_constraints/ rimraf / rimraf@^4 }"
219-
export npm_config_engine_strict=false
220-
;;
221-
'14')
222-
dev_constraints="${dev_constraints/ c8 / c8@^9 }"
223-
dev_constraints="${dev_constraints/ npm-run-all2 / npm-run-all2@^5 }"
224-
dev_constraints="${dev_constraints/ rimraf / rimraf@^4 }"
225-
export npm_config_engine_strict=false
226-
;;
227-
'14.0.0')
228-
dev_constraints="${dev_constraints/ c8 / c8@^8 }"
229-
dev_constraints="${dev_constraints/ npm-run-all2 / npm-run-all2@^5 }"
230-
dev_constraints="${dev_constraints/ rimraf / rimraf@^4 }"
231-
export npm_config_engine_strict=false
232-
;;
233-
esac
234202
echo "::group::install prod"
235203
npm_config_engine_strict=false npm i --ignore-scripts --include=optional --omit=dev --only=prod --production --loglevel=silly
236204
echo "::endgroup::"
@@ -396,7 +364,7 @@ jobs:
396364
include:
397365
- # lowest reasonable number that works
398366
typescript-version: '^4.0'
399-
nodeTypes-version: '^14'
367+
nodeTypes-version: '^20'
400368
js-type: 'cjs'
401369
env:
402370
EXAMPLE_DIR: examples/node/typescript/example.${{ matrix.js-type }}

HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ All notable changes to this project will be documented in this file.
66

77
<!-- add unreleased items here -->
88

9+
* BREAKING Changes
10+
* Dropped support for `node<=20.18.0` ([#1081] via [#1209])
911
* Build
1012
* Use _TypeScript_ `v5.7.3` now, was `v5.7.2` (via [#1204])
1113

14+
[#1081]: https://github.com/CycloneDX/cyclonedx-javascript-library/issues/1081
1215
[#1204]: https://github.com/CycloneDX/cyclonedx-javascript-library/pull/1204
16+
[#1209]: https://github.com/CycloneDX/cyclonedx-javascript-library/pull/1209
1317

1418
## 7.1.0 -- 2025-01-09
1519

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,12 @@ See the shipped `package.json` for version constraints.
130130
* [`libxmljs2`](https://www.npmjs.com/package/libxmljs2)
131131
* the system might need to meet the requirements for [`node-gyp`](https://github.com/TooTallNate/node-gyp#installation), in certain cases.
132132

133+
## Requirements
134+
135+
* `node`: `>=20.18`
136+
137+
However, there are older versions of this library which support `node>=14.0.0`
138+
133139
## Usage
134140

135141
See extended [examples].

examples/web/webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
},
88
"devDependencies": {
99
"webpack": "^5",
10-
"webpack-cli": "^5"
10+
"webpack-cli": "^5||^6"
1111
},
1212
"scripts": {
1313
"build": "webpack build",
14-
"example": "www-browser dist/index.html"
14+
"example": "x-www-browser dist/index.html"
1515
}
1616
}

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
],
7878
"type": "commonjs",
7979
"engines": {
80-
"node": ">=14.0.0"
80+
"node": ">=20.18.0"
8181
},
8282
"dependencies": {
8383
"packageurl-js": "^2.0.1",
@@ -87,23 +87,23 @@
8787
"ajv": "^8.12.0",
8888
"ajv-formats": "^3.0.1",
8989
"ajv-formats-draft2019": "^1.6.1",
90-
"libxmljs2": "^0.31 || ^0.32 || ^0.33 || ^0.35",
90+
"libxmljs2": "^0.35",
9191
"xmlbuilder2": "^3.0.2"
9292
},
9393
"devDependencies": {
9494
"@types/mocha": "^10",
9595
"@types/node": "ts5.6",
9696
"@types/spdx-expression-parse": "^3",
97-
"c8": "^8||^9||^10",
97+
"c8": "^10",
9898
"deepmerge": "^4.2.2",
9999
"fast-glob": "^3.3.1",
100-
"mocha": "10.8.2||11.1.0",
101-
"npm-run-all2": "^5||^6",
102-
"rimraf": "^4||^5",
100+
"mocha": "11.1.0",
101+
"npm-run-all2": "^7",
102+
"rimraf": "^6",
103103
"ts-loader": "9.5.1",
104104
"typescript": "5.7.3",
105105
"webpack": "5.97.1",
106-
"webpack-cli": "5.1.4||6.0.1",
106+
"webpack-cli": "6.0.1",
107107
"webpack-node-externals": "3.0.0"
108108
},
109109
"browser": "./dist.web/lib.js",

src/_optPlug.node/__jsonValidators/ajv.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) OWASP Foundation. All Rights Reserved.
2020
import Ajv, { type Options as AjvOptions } from 'ajv'
2121
import addFormats from 'ajv-formats'
2222
/* @ts-expect-error TS7016 */
23-
import * as addFormats2019 from 'ajv-formats-draft2019'
23+
import addFormats2019 from 'ajv-formats-draft2019'
2424
import { readFile } from 'fs/promises'
2525

2626
import type { ValidationError } from '../../validation/types'

src/_optPlug.node/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Copyright (c) OWASP Foundation. All Rights Reserved.
1818
*/
1919

2020
export class OptPlugError extends Error {
21-
readonly cause: any | undefined
21+
override readonly cause: any | undefined
2222

2323
constructor (message: string, cause?: any) {
2424
super(message)

src/spdx.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ SPDX-License-Identifier: Apache-2.0
1717
Copyright (c) OWASP Foundation. All Rights Reserved.
1818
*/
1919

20-
import * as spdxExpressionParse from 'spdx-expression-parse'
20+
import spdxExpressionParse from 'spdx-expression-parse'
2121

2222
/* @ts-expect-error: TS6059 -- this works as long as the file/path is available in dist-package. */
2323
import { enum as _spdxSpecEnum } from '../res/schema/spdx.SNAPSHOT.schema.json' with { type: 'json' }

tools/code-style/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "@cyclonedx/cyclonedx-library-code-style",
44
"license": "Apache-2.0",
55
"engines": {
6-
"node": ">=20"
6+
"node": ">=20.18"
77
},
88
"dependencies": {
99
"@eslint/eslintrc": "3.2.0",

tools/docs-gen/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "@cyclonedx/cyclonedx-library-docs-gen",
44
"license": "Apache-2.0",
55
"engines": {
6-
"node": ">=20"
6+
"node": ">=20.18"
77
},
88
"dependencies": {
99
"typedoc": "^0.27.2",

tsconfig.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/* Language and Environment */
1515
/* check compat: https://node.green/ */
1616
/* see: https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */
17-
"target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
17+
"target": "ES2023", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
1818
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
1919
// "jsx": "preserve", /* Specify what JSX code is generated. */
2020
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
@@ -28,9 +28,10 @@
2828

2929
/* Modules */
3030
/* check compat: https://node.green/ */
31-
"module": "CommonJS", /* Specify what module code is generated. */
31+
/* see: https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */
32+
"module": "node16", /* Specify what module code is generated. */
3233
"rootDir": "src", /* Specify the root folder within your source files. */
33-
"moduleResolution": "Node", /* Specify how TypeScript looks up a file from a given module specifier. */
34+
// "moduleResolution": "Node", /* Specify how TypeScript looks up a file from a given module specifier. */
3435
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
3536
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
3637
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */

0 commit comments

Comments
 (0)