mobbdev 1.2.58 → 1.2.60

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 -31
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -6468,27 +6468,6 @@ function getCommitUrl(params) {
6468
6468
  analysisId
6469
6469
  })}/commit?${searchParams.toString()}`;
6470
6470
  }
6471
- function getCommitIssueUrl(params) {
6472
- const {
6473
- issueId,
6474
- projectId,
6475
- organizationId,
6476
- analysisId,
6477
- redirectUrl,
6478
- appBaseUrl,
6479
- commentId
6480
- } = params;
6481
- const searchParams = new URLSearchParams();
6482
- searchParams.append("redirect_url", redirectUrl);
6483
- searchParams.append("comment_id", commentId.toString());
6484
- return `${getIssueUrl({
6485
- appBaseUrl,
6486
- issueId,
6487
- projectId,
6488
- organizationId,
6489
- analysisId
6490
- })}/commit?${searchParams.toString()}`;
6491
- }
6492
6471
  function extractLinearTicketsFromBody(body, seen) {
6493
6472
  const tickets = [];
6494
6473
  const htmlPattern = /<a href="(https:\/\/linear\.app\/[^"]+)">([A-Z]+-\d+)<\/a>/g;
@@ -14263,15 +14242,7 @@ function buildFixCommentBody({
14263
14242
  irrelevantIssueWithTags
14264
14243
  }) {
14265
14244
  const isIrrelevantIssueWithTags = irrelevantIssueWithTags?.[0]?.tag;
14266
- const commitUrl = isIrrelevantIssueWithTags ? getCommitIssueUrl({
14267
- appBaseUrl: WEB_APP_URL,
14268
- issueId,
14269
- projectId,
14270
- analysisId,
14271
- organizationId,
14272
- redirectUrl: commentUrl,
14273
- commentId
14274
- }) : getCommitUrl({
14245
+ const commitUrl = getCommitUrl({
14275
14246
  appBaseUrl: WEB_APP_URL,
14276
14247
  fixId,
14277
14248
  projectId,
@@ -16710,7 +16681,7 @@ function createLogger(config2) {
16710
16681
 
16711
16682
  // src/features/claude_code/hook_logger.ts
16712
16683
  var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
16713
- var CLI_VERSION = true ? "1.2.58" : "unknown";
16684
+ var CLI_VERSION = true ? "1.2.60" : "unknown";
16714
16685
  var NAMESPACE = "mobbdev-claude-code-hook-logs";
16715
16686
  function createHookLogger(scopePath) {
16716
16687
  return createLogger({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.2.58",
3
+ "version": "1.2.60",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.mjs",