@coana-tech/cli 14.4.0 → 14.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.
Files changed (2) hide show
  1. package/cli.js +5 -4
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -140510,7 +140510,7 @@ var init_ecosystem_specs = __esm({
140510
140510
  /* @__PURE__ */ new Map()
140511
140511
  ],
140512
140512
  GO: [/* @__PURE__ */ new Map([[/go\.mod|go\.work/, "GO"]]), /* @__PURE__ */ new Map()],
140513
- NUGET: [/* @__PURE__ */ new Map([[/.*\.(sln|csproj|vbproj|fsproj)/, "NUGET"]]), /* @__PURE__ */ new Map()],
140513
+ NUGET: [/* @__PURE__ */ new Map([[/.*\.(sln|.*proj)/, "NUGET"]]), /* @__PURE__ */ new Map()],
140514
140514
  COMPOSER: [/* @__PURE__ */ new Map([["composer.json", "COMPOSER"]]), /* @__PURE__ */ new Map([["composer.lock", "COMPOSER"]])],
140515
140515
  RUBYGEMS: [/* @__PURE__ */ new Map([[/[Gg]emfile|gems\.rb/, "RUBYGEMS"]]), /* @__PURE__ */ new Map([[/.*\.gemspec, [gG]emfile\.lock/, "RUBYGEMS"]])],
140516
140516
  RUST: [/* @__PURE__ */ new Map([["cargo.toml", "CARGO"]]), /* @__PURE__ */ new Map([["cargo.lock", "CARGO"]])],
@@ -189292,13 +189292,14 @@ var init_vulnerabilities_supported_db = __esm({
189292
189292
  advisory
189293
189293
  });
189294
189294
  }
189295
- async registerVulnerabilityWithMissingAccessPathPattern(vuln, pms) {
189295
+ async registerVulnerabilityWithMissingAccessPathPattern(vuln, pms, assignee) {
189296
189296
  await this.vulnerabilitiesSupportedCollection.updateOne(
189297
189297
  { _id: getCoanaSupportedVulnerabilityKey(vuln) },
189298
189298
  {
189299
189299
  $set: {
189300
189300
  demand: true,
189301
- relevantUrls: await getInterestingURLsForVulnerability(vuln, pms)
189301
+ relevantUrls: await getInterestingURLsForVulnerability(vuln, pms),
189302
+ assignee
189302
189303
  }
189303
189304
  }
189304
189305
  );
@@ -207896,7 +207897,7 @@ var require_version = __commonJS({
207896
207897
  "use strict";
207897
207898
  Object.defineProperty(exports2, "__esModule", { value: true });
207898
207899
  exports2.version = void 0;
207899
- exports2.version = "14.4.0";
207900
+ exports2.version = "14.4.1";
207900
207901
  }
207901
207902
  });
207902
207903
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coana-tech/cli",
3
- "version": "14.4.0",
3
+ "version": "14.4.1",
4
4
  "description": "Coana CLI",
5
5
  "bin": {
6
6
  "@coana-tech/cli": "./cli.js"