retire 3.1.0 → 3.1.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/CHANGELOG.md CHANGED
@@ -1,4 +1,13 @@
1
1
  # Changelog
2
+ ## [3.1.1]
3
+
4
+ - Update VM2 due to vuln in that library
5
+
6
+ ## [3.1.0]
7
+
8
+ - Adding support for cycloneDX JSON format
9
+ - Updating CycloneDX XML format to version 1.4
10
+ - Adding schema parsing tests for cyclonedx
2
11
 
3
12
  ## [3.0.7]
4
13
 
@@ -49,7 +49,6 @@ function configureCycloneDXJSONLogger(logger, writer, config, hash) {
49
49
  specVersion : "1.4",
50
50
  serialNumber : `urn:uuid:${ uuidv4() }`,
51
51
  version : 1,
52
- components : components,
53
52
  metadata : {
54
53
  timestamp : finalResults.start,
55
54
  tools : [
@@ -59,7 +58,8 @@ function configureCycloneDXJSONLogger(logger, writer, config, hash) {
59
58
  version : retire.version
60
59
  }
61
60
  ]
62
- }
61
+ },
62
+ components : components
63
63
  }, undefined, 2));
64
64
  writer.close(callback);
65
65
  };
package/lib/retire.js CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  var exports = exports || {};
7
- exports.version = '3.1.0';
7
+ exports.version = '3.1.1';
8
8
 
9
9
  function isDefined(o) {
10
10
  return typeof o !== 'undefined';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Erlend Oftedal <erlend@oftedal.no>",
3
3
  "name": "retire",
4
4
  "description": "Retire is a tool for detecting use of vulnerable libraries",
5
- "version": "3.1.0",
5
+ "version": "3.1.1",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",
@@ -32,5 +32,8 @@
32
32
  },
33
33
  "engines": {
34
34
  "node": ">= 6.0.0"
35
- }
35
+ },
36
+ "keywords": [
37
+ "sbom", "sbom-tool", "sbom-generator", "security", "cli", "software-composition-analysis", "sca"
38
+ ]
36
39
  }