mobbdev 0.0.96 → 0.0.97

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 +2 -0
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -3632,6 +3632,8 @@ var getIssueType = (issueType) => {
3632
3632
  return "Insecure Cookie";
3633
3633
  case "TRUST_BOUNDARY_VIOLATION" /* TrustBoundaryViolation */:
3634
3634
  return "Trust Boundary Violation";
3635
+ case "MISSING_EQUALS_OR_HASHCODE" /* MissingEqualsOrHashcode */:
3636
+ return "Missing equals or hashcode method";
3635
3637
  default: {
3636
3638
  return issueType ? issueType.replaceAll("_", " ") : "Other";
3637
3639
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "0.0.96",
3
+ "version": "0.0.97",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "https://github.com/mobb-dev/bugsy",
6
6
  "main": "dist/index.js",