@soos-io/soos-sbom 0.1.18 → 1.0.0-pre.11

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/README.md CHANGED
@@ -38,5 +38,4 @@ Then run from the same terminal `node ./soos/node_modules/@soos-io/soos-sbom/bin
38
38
  | `--operatingEnvironment`| | Set Operating environment for information purposes only. |
39
39
  | `--otherOptions` | | Other Options to pass to syft. |
40
40
  | `--projectName` | | Project Name - this is what will be displayed in the SOOS app. |
41
- | `--verbose` | `false` | Enable verbose logging. |
42
41
  | `sbomPath` | | The SBOM File to scan, it could be the location of the file or the file itself. When location is specified only the first file found will be scanned. |
package/bin/index.js CHANGED
@@ -133,9 +133,8 @@ class SOOSSBOMAnalysis {
133
133
  try {
134
134
  const args = this.parseArgs();
135
135
  api_client_1.soosLogger.setMinLogLevel(args.logLevel);
136
- api_client_1.soosLogger.setVerbose(args.verbose);
137
136
  api_client_1.soosLogger.info("Configuration read");
138
- api_client_1.soosLogger.verboseDebug(JSON.stringify((0, utilities_1.obfuscateProperties)(args, ["apiKey"]), null, 2));
137
+ api_client_1.soosLogger.debug(JSON.stringify((0, utilities_1.obfuscateProperties)(args, ["apiKey"]), null, 2));
139
138
  api_client_1.soosLogger.logLineSeparator();
140
139
  const soosSBOMAnalysis = new SOOSSBOMAnalysis(args);
141
140
  await soosSBOMAnalysis.runAnalysis();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soos-io/soos-sbom",
3
- "version": "0.1.18",
3
+ "version": "1.0.0-pre.11",
4
4
  "description": "SOOS wrapper script to upload SBOMs.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -13,7 +13,7 @@
13
13
  "format": "prettier ./src --check",
14
14
  "format:fix": "prettier ./src --write",
15
15
  "typecheck": "tsc --noEmit",
16
- "check": "npm run format && npm run typecheck",
16
+ "check": "npm run format && npm run typecheck && (npm outdated || exit 0)",
17
17
  "patch": "npm version patch --no-git-tag-version",
18
18
  "patch-api-client": "npm run patch && npm run setup:clean && npm install @soos-io/api-client@latest --save-exact && npm install && npm run check"
19
19
  },
@@ -39,14 +39,14 @@
39
39
  },
40
40
  "homepage": "https://github.com/soos-io/soos-sbom#readme",
41
41
  "dependencies": {
42
- "@soos-io/api-client": "0.3.4",
42
+ "@soos-io/api-client": "1.0.4",
43
43
  "argparse": "^2.0.1",
44
- "glob": "^10.4.5",
44
+ "glob": "^11.0.0",
45
45
  "tslib": "^2.6.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/argparse": "^2.0.15",
49
- "@types/node": "^20.14.14",
49
+ "@types/node": "^20.16.3",
50
50
  "prettier": "^3.3.3",
51
51
  "typescript": "^5.5.4"
52
52
  },