@link-assistant/hive-mind 1.50.2 → 1.50.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/CHANGELOG.md +27 -0
- package/README.hi.md +876 -0
- package/README.md +1 -1
- package/README.ru.md +876 -0
- package/README.zh.md +876 -0
- package/package.json +1 -1
- package/src/github-merge-ci.lib.mjs +4 -1
- package/src/github-merge.lib.mjs +2 -2
- package/src/session-monitor.lib.mjs +56 -3
- package/src/solve.auto-merge-helpers.lib.mjs +552 -0
- package/src/solve.auto-merge.lib.mjs +4 -452
- package/src/telegram-bot.mjs +4 -0
- package/src/telegram-merge-command.lib.mjs +5 -3
- package/src/telegram-merge-queue.lib.mjs +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 1.50.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 15f25db: Make merge queue cancel immediate during CI waits so users don't have to wait for CI to finish before cancellation takes effect
|
|
8
|
+
|
|
9
|
+
## 1.50.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- dce8218: fix: extract helper functions from solve.auto-merge.lib.mjs to fix 1500-line limit violation (#1593)
|
|
14
|
+
- Extract `checkForExistingComment`, `checkForNonBotComments`, and `getMergeBlockers` into new `solve.auto-merge-helpers.lib.mjs`
|
|
15
|
+
- Add warning threshold (1350 lines) to `check-file-line-limits.sh` to flag files approaching the 1500-line limit
|
|
16
|
+
- Add case study documenting the concurrent PR merge race condition root cause
|
|
17
|
+
|
|
18
|
+
- 89ad776: fix: add timeout-based expiry for non-isolation active sessions to prevent false positives (#1586)
|
|
19
|
+
- Non-isolation (plain `start-screen`) sessions are now tracked with a 10-minute timeout
|
|
20
|
+
- Within the timeout window, duplicate `/solve` commands for the same URL are blocked (prevents accidental re-runs)
|
|
21
|
+
- After 10 minutes, non-isolation sessions auto-expire, preventing permanent false positives
|
|
22
|
+
- Isolation-backed sessions (`--isolation screen|tmux|docker`) have no timeout — their completion is reliably detected
|
|
23
|
+
- This prevents the bot from indefinitely blocking `/solve` commands with "A working session is already running for this URL"
|
|
24
|
+
|
|
25
|
+
- 3bf9501: fix: narrow "Ready to merge" duplicate check to current session scope (#1584)
|
|
26
|
+
- Fix `checkForExistingComment` to only search for duplicate "Ready to merge" comments AFTER the last "Solution Draft Log" comment, not in the entire PR history
|
|
27
|
+
- Previously, a "Ready to merge" from a previous working session would suppress the notification for a new session after user feedback
|
|
28
|
+
- The fix scopes deduplication to the current working session while maintaining cross-process duplicate detection
|
|
29
|
+
|
|
3
30
|
## 1.50.2
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|