mcptask-rails-runner 0.3.19-aarch64-linux → 0.3.20-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 +35 -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: f30682bd3e11e468cb0a59acced8ab9fd43ec373777bf656f855fea8dae43434
|
|
4
|
+
data.tar.gz: feab7c4baa66b2f87ad031fd735d9225801b85d8df9f9f40362ca9afc791fe50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcfb7679d58a3c32aee39cd1801933bbbe1a7f814c143531b8784d394ba8f2a7c92910de826f3cc52bca3dc928d992504d2997db76464349ff8f9df2fb28a93a
|
|
7
|
+
data.tar.gz: dca2f3316173aa1d9db438e8f737f716d48a72f59cf885bc2904517d4927c9b9aec55189f29b4b47b6cf6c670ff793deefd14c0b0a6bef912e0deb72e70cd0ed
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,41 @@ release notes for the same tag.
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## 0.3.20
|
|
11
|
+
|
|
12
|
+
No wrapper changes. Full notes in
|
|
13
|
+
[mcptask-releases v0.3.20](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.20).
|
|
14
|
+
|
|
15
|
+
**Upgrading:** run `mcptask_runner update --self` on each host, and do it for
|
|
16
|
+
this one rather than at leisure — the fix below can only reach a runner that is
|
|
17
|
+
running the new binary, and the situation it fixes keeps happening until then. A
|
|
18
|
+
daily process picks the new copy up at its night swap, but only once that copy
|
|
19
|
+
is on disk. The project bump alone still changes nothing about what the 08:00
|
|
20
|
+
job runs.
|
|
21
|
+
|
|
22
|
+
Binary changes carried by this version:
|
|
23
|
+
|
|
24
|
+
- A piece assigned to somebody else while this runner is working it now stops
|
|
25
|
+
the child, instead of being worked to the end by a runner it no longer belongs
|
|
26
|
+
to. The dashboard socket has always carried both halves of an assignment —
|
|
27
|
+
"given to you" cut an idle wait short, and "given to somebody else" reached
|
|
28
|
+
nothing — so a task moved between two agents was picked up by its new owner
|
|
29
|
+
while its old one carried on: two agents on one piece, the same branch name
|
|
30
|
+
pushed twice, two sets of efforts logged. The runner now abandons the piece,
|
|
31
|
+
says so, and goes back to the queue for one that is still its own. It is not a
|
|
32
|
+
reason to stop the day, and the piece is deliberately not set aside: the queue
|
|
33
|
+
has already stopped offering it, and it stays workable if it is handed back.
|
|
34
|
+
- The run log is coloured as it is read, and the file itself stays plain. The
|
|
35
|
+
two lines that matter in a wall of uniform text — the ones `Warn` and `Error`
|
|
36
|
+
already mark with a glyph — are painted red and yellow, a child's stderr is
|
|
37
|
+
yellow, and the `[Component]` tags, cost lines and phase separators are dimmed
|
|
38
|
+
so the shape of a run is visible in a scroll. Only what the runner itself
|
|
39
|
+
marked is coloured; guessing a severity from the wording would be wrong on the
|
|
40
|
+
day it mattered. Nothing is written to the file, which is what bug reports
|
|
41
|
+
attach and what people grep. `runner-log --paint` is the same filter over
|
|
42
|
+
stdin, so `tail -f any.log | runner-log --paint` works for a log read some
|
|
43
|
+
other way.
|
|
44
|
+
|
|
10
45
|
## 0.3.19
|
|
11
46
|
|
|
12
47
|
**Upgrading:** `bundle update mcptask-rails-runner` in each project for the
|
|
@@ -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.20"
|
|
14
14
|
end
|
data/libexec/mcptask_runner
CHANGED
|
Binary file
|