mobbdev 1.0.98 → 1.0.101

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/dist/index.mjs +8 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -375,6 +375,7 @@ var IssueType_Enum = /* @__PURE__ */ ((IssueType_Enum2) => {
375
375
  IssueType_Enum2["DeprecatedFunction"] = "DEPRECATED_FUNCTION";
376
376
  IssueType_Enum2["DosStringBuilder"] = "DOS_STRING_BUILDER";
377
377
  IssueType_Enum2["DoNotRaiseException"] = "DO_NOT_RAISE_EXCEPTION";
378
+ IssueType_Enum2["DoNotThrowGenericException"] = "DO_NOT_THROW_GENERIC_EXCEPTION";
378
379
  IssueType_Enum2["DuplicatedStrings"] = "DUPLICATED_STRINGS";
379
380
  IssueType_Enum2["ErroneousStringCompare"] = "ERRONEOUS_STRING_COMPARE";
380
381
  IssueType_Enum2["ErrorCondtionWithoutAction"] = "ERROR_CONDTION_WITHOUT_ACTION";
@@ -433,6 +434,7 @@ var IssueType_Enum = /* @__PURE__ */ ((IssueType_Enum2) => {
433
434
  IssueType_Enum2["PrototypePollution"] = "PROTOTYPE_POLLUTION";
434
435
  IssueType_Enum2["Pt"] = "PT";
435
436
  IssueType_Enum2["RaceConditionFormatFlaw"] = "RACE_CONDITION_FORMAT_FLAW";
437
+ IssueType_Enum2["Redos"] = "REDOS";
436
438
  IssueType_Enum2["RegexInjection"] = "REGEX_INJECTION";
437
439
  IssueType_Enum2["RegexMissingTimeout"] = "REGEX_MISSING_TIMEOUT";
438
440
  IssueType_Enum2["ReturnShouldNotBeInvariant"] = "RETURN_SHOULD_NOT_BE_INVARIANT";
@@ -1569,7 +1571,9 @@ var issueTypeMap = {
1569
1571
  ["DO_NOT_RAISE_EXCEPTION" /* DoNotRaiseException */]: "Do Not Raise Exception",
1570
1572
  ["DECLARE_VARIABLE_EXPLICITLY" /* DeclareVariableExplicitly */]: "Declare Variable Explicitly",
1571
1573
  ["NO_NESTED_TRY" /* NoNestedTry */]: "No Nested Try",
1572
- ["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: "Unnecessary Imports"
1574
+ ["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: "Unnecessary Imports",
1575
+ ["REDOS" /* Redos */]: "Regular Expression Denial of Service",
1576
+ ["DO_NOT_THROW_GENERIC_EXCEPTION" /* DoNotThrowGenericException */]: "Do Not Throw Generic Exception"
1573
1577
  };
1574
1578
  var issueTypeZ = z5.nativeEnum(IssueType_Enum);
1575
1579
  var getIssueTypeFriendlyString = (issueType) => {
@@ -2315,7 +2319,9 @@ var fixDetailsData = {
2315
2319
  ["DO_NOT_RAISE_EXCEPTION" /* DoNotRaiseException */]: void 0,
2316
2320
  ["DECLARE_VARIABLE_EXPLICITLY" /* DeclareVariableExplicitly */]: void 0,
2317
2321
  ["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: void 0,
2318
- ["NO_NESTED_TRY" /* NoNestedTry */]: void 0
2322
+ ["NO_NESTED_TRY" /* NoNestedTry */]: void 0,
2323
+ ["REDOS" /* Redos */]: void 0,
2324
+ ["DO_NOT_THROW_GENERIC_EXCEPTION" /* DoNotThrowGenericException */]: void 0
2319
2325
  };
2320
2326
 
2321
2327
  // src/features/analysis/scm/shared/src/commitDescriptionMarkup.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.98",
3
+ "version": "1.0.101",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.js",