mcptask-rails-runner 0.3.12-aarch64-linux → 0.3.13-aarch64-linux
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +27 -0
- data/lib/mcptask_rails_runner/version.rb +1 -1
- data/libexec/mcptask_runner +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfbbfef3c0b78d497fa2891e7fa278ae43d5a7a37a79b3518a392d169a3aceee
|
|
4
|
+
data.tar.gz: 121e0019a991d626944d0448f21cf6d64dbe00f87becd024cb96b74ce7ab1fef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcd793aa6639a32ac60667078d0f3e5138ead2ee0a88ea945bddab529d8942ca41a4074af949c2de5afeb38b5c431b72d63cfaab9ed47fada39adc5993d063dd
|
|
7
|
+
data.tar.gz: 3f045e249c91acf4d7987e42eec71046ff88b5fa6ba8fe3b6f002f4b58e2ea1ffc2ead2134401443e8498e43cc4cac27c997fc4c0c11e1596ed05dd1646ef1e8
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ entries below describe wrapper changes only. Binary changes are listed in the
|
|
|
5
5
|
[mcptask-releases](https://github.com/jchsoft/mcptask-releases/releases)
|
|
6
6
|
release notes for the same tag.
|
|
7
7
|
|
|
8
|
+
## 0.3.13
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.13](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.13).
|
|
12
|
+
|
|
13
|
+
**Upgrading:** run `mcptask_runner update` in each project after the binary
|
|
14
|
+
upgrade — this release ships a new helper (`runner-log`) and rewritten config
|
|
15
|
+
sections, and nothing installs those for you.
|
|
16
|
+
|
|
17
|
+
Binary changes carried by this version:
|
|
18
|
+
|
|
19
|
+
- The loop asks `GET /api/:account/pieces/next` before paying for a triage
|
|
20
|
+
session; an empty queue is `no_more_tasks` without a model. Until
|
|
21
|
+
mcptask.online ships the endpoint (task #11691) the 404 falls through to
|
|
22
|
+
triage exactly as before.
|
|
23
|
+
- The configured end of workday is the one hard stop, checked after a task
|
|
24
|
+
finishes — and there is no default any more.
|
|
25
|
+
- The skip list outlives the process: a restart does not re-pick what today
|
|
26
|
+
already declined. `failure`, `task_already_started`, `merge_failed`,
|
|
27
|
+
`merge_unverified` and `out_of_scope` set the task aside for the day instead
|
|
28
|
+
of stopping.
|
|
29
|
+
- `respect_working_hours` is read from the user profile once at startup.
|
|
30
|
+
- A guard of the runner's own that did not hold files a bug piece instead of
|
|
31
|
+
a log line.
|
|
32
|
+
- `runner-log`, the helper an operator types to tail the current run; the
|
|
33
|
+
install ends with a summary of every config section the runner reads.
|
|
34
|
+
|
|
8
35
|
## 0.3.12
|
|
9
36
|
|
|
10
37
|
No wrapper changes. Full notes in
|
|
@@ -10,5 +10,5 @@ module McptaskRailsRunner
|
|
|
10
10
|
# Binary::INSTALL_DIR. So the pin is per project and per foreground rake
|
|
11
11
|
# invocation; the installed copy is per machine, and the newest binary any of
|
|
12
12
|
# those projects offers is the one that stays.
|
|
13
|
-
VERSION = "0.3.
|
|
13
|
+
VERSION = "0.3.13"
|
|
14
14
|
end
|
data/libexec/mcptask_runner
CHANGED
|
Binary file
|