ts-node-client 3.4.0 → 3.4.1
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 +9 -0
- package/lib/convertor.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,15 @@ 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.1 - 2024-08-13
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
* axios 1.7.2 allows SSRF via unexpected behavior where requests for path relative URLs get processed as protocol relative URLs.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
* update to cyclonedx version 1.6
|
|
18
|
+
|
|
19
|
+
|
|
11
20
|
## 3.4.0 - 2024-06-18
|
|
12
21
|
|
|
13
22
|
### Changed
|
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.1",
|
|
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": [
|