paperclip-github-plugin 0.4.3 → 0.4.4

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/dist/manifest.js CHANGED
@@ -503,7 +503,7 @@ var require2 = createRequire(import.meta.url);
503
503
  var packageJson = require2("../package.json");
504
504
  var DASHBOARD_WIDGET_CAPABILITY = "ui.dashboardWidget.register";
505
505
  var SCHEDULE_TICK_CRON = "* * * * *";
506
- var MANIFEST_VERSION = "0.4.3"?.trim() || typeof packageJson.version === "string" && packageJson.version.trim() || process.env.npm_package_version?.trim() || "0.0.0-dev";
506
+ var MANIFEST_VERSION = "0.4.4"?.trim() || typeof packageJson.version === "string" && packageJson.version.trim() || process.env.npm_package_version?.trim() || "0.0.0-dev";
507
507
  var manifest = {
508
508
  id: "paperclip-github-plugin",
509
509
  apiVersion: 1,
package/dist/worker.js CHANGED
@@ -4123,7 +4123,7 @@ function resolvePaperclipIssueStatus(params) {
4123
4123
  if (snapshot.state === "closed") {
4124
4124
  return snapshot.stateReason === "duplicate" || snapshot.stateReason === "not_planned" ? "cancelled" : "done";
4125
4125
  }
4126
- if (currentStatus === "backlog") {
4126
+ if (currentStatus === "backlog" && !wasImportedThisRun) {
4127
4127
  return "backlog";
4128
4128
  }
4129
4129
  const baselineCommentCount = previousCommentCount ?? snapshot.commentCount;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "paperclip-github-plugin",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Paperclip plugin for synchronizing GitHub issues into Paperclip projects.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -54,6 +54,6 @@
54
54
  "esbuild": "0.28.0",
55
55
  "playwright": "1.59.1",
56
56
  "tsx": "4.21.0",
57
- "typescript": "6.0.2"
57
+ "typescript": "6.0.3"
58
58
  }
59
59
  }