ts-node-client 3.4.0 → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yml +0 -3
- package/CHANGELOG.md +15 -0
- package/README.md +3 -1
- package/lib/convertor.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## 3.4.2 - 2024-08-20
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
* docs update
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 3.4.1 - 2024-08-13
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
* axios 1.7.2 allows SSRF via unexpected behavior where requests for path relative URLs get processed as protocol relative URLs.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
* update to cyclonedx version 1.6
|
|
24
|
+
|
|
25
|
+
|
|
11
26
|
## 3.4.0 - 2024-06-18
|
|
12
27
|
|
|
13
28
|
### Changed
|
package/README.md
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
> TrustSource node client - node module to transfer dependency information to TrustSource server.
|
|
11
11
|
|
|
12
12
|
## Release 3.4.0
|
|
13
|
-
Migrated to TrustSource API v2
|
|
13
|
+
Migrated to TrustSource API v2. Please ensure your `url` is updated to `https://api.trustsource.io`.
|
|
14
|
+
|
|
15
|
+
> PLEASE NOTE: API v1 is meanwhile deprecated. We plan to seize its functionality in September 30th, 2024. Starting from June, users of APIv1 will receive a deprecation notice. If you feel that this timeframe is too tough for you, please reach out to your engagement manager as soon as possible to clarify further proceedings.
|
|
14
16
|
|
|
15
17
|
## Release 3.2.0
|
|
16
18
|
Package now support package-lock.json v.3
|
package/lib/convertor.js
CHANGED
|
@@ -184,7 +184,7 @@ Convertor.scanToCydx = function scanTo(scan) {
|
|
|
184
184
|
const date = new Date();
|
|
185
185
|
const cydx = {
|
|
186
186
|
bomFormat: 'CycloneDX',
|
|
187
|
-
specVersion: '1.
|
|
187
|
+
specVersion: '1.6',
|
|
188
188
|
serialNumber: 'urn:uuid:ea788421-7eb0-448b-833e-b32dd0f39d0c',
|
|
189
189
|
version: 1,
|
|
190
190
|
metadata: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-node-client",
|
|
3
3
|
"description": "npm / node module to transfer dependency information to TrustSource server.",
|
|
4
|
-
"version": "3.4.
|
|
4
|
+
"version": "3.4.2",
|
|
5
5
|
"homepage": "https://app.trustsource.io/",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Oleksandr Dmukhovskyi",
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@yarnpkg/lockfile": "1.1.0",
|
|
31
|
-
"axios": "1.7.
|
|
31
|
+
"axios": "1.7.4",
|
|
32
32
|
"debuglog": "1.0.1",
|
|
33
33
|
"js-yaml": "4.1.0",
|
|
34
34
|
"packageurl-js": "1.2.1",
|
|
35
|
-
"semver": "7.6.
|
|
35
|
+
"semver": "7.6.3",
|
|
36
36
|
"yargs": "17.7.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint": "8.57.0",
|
|
40
40
|
"eslint-config-airbnb-base": "15.0.0",
|
|
41
41
|
"eslint-plugin-import": "2.29.1",
|
|
42
|
-
"eslint-plugin-sonarjs": "0.
|
|
43
|
-
"mocha": "10.3
|
|
42
|
+
"eslint-plugin-sonarjs": "0.25.1",
|
|
43
|
+
"mocha": "10.7.3",
|
|
44
44
|
"nock": "13.5.4"
|
|
45
45
|
},
|
|
46
46
|
"keywords": [
|