mcptask-rails-runner 0.3.13 → 0.3.14
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 +25 -0
- data/lib/mcptask_rails_runner/version.rb +1 -1
- 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: d79d2097933143ea9b653c43a88fdba390edc26d229894c43865b82c8b31932d
|
|
4
|
+
data.tar.gz: a1744f649e201fbaaaff95819f98680ad9154d3a812983a630f4a7f43afbcc42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3aaaa95bb5ad3ee91a088c3a91951a6084b4a5c76a552f8b9a23f153dba7e83125d0b7979237d035b545bd792348027500f787504c4624c797a90bb7154d38e
|
|
7
|
+
data.tar.gz: 8e90f59fcb99207a05852991775df51bf70801ebdda9557437c6e448f40d49e6600818919bbcbcafce1377a6c16d7b2013201fbaa374e0fb6d11f766f8ef556e
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,31 @@ 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.14
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.14](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.14).
|
|
12
|
+
|
|
13
|
+
**Upgrading:** run `mcptask_runner update --self` on each host. This release
|
|
14
|
+
changes loop behaviour inside the binary and ships no new skills or helpers, so
|
|
15
|
+
plain `mcptask_runner update` has nothing to do here. The binary that runs at
|
|
16
|
+
08:00 lives in `~/.mcptask/bin` and is replaced by `--self`, never by
|
|
17
|
+
`bundle update`.
|
|
18
|
+
|
|
19
|
+
Binary changes carried by this version:
|
|
20
|
+
|
|
21
|
+
- A queue that has stayed empty for half an hour is now asked about every half
|
|
22
|
+
hour rather than every five minutes. `waiting_strategy.short_wait_minutes`
|
|
23
|
+
remains what the operator configured for the first rounds — it is the right
|
|
24
|
+
answer in the minutes just after a task finishes — and once those short waits
|
|
25
|
+
add up to one `long_wait_minutes`, the long wait takes over until there is
|
|
26
|
+
work again. On the installer's 5 and 30 that is 21 idle rounds across an
|
|
27
|
+
eight-hour afternoon instead of 96, and as many pairs of rows in the
|
|
28
|
+
dashboard's activity feed.
|
|
29
|
+
- The quota check made after an empty round no longer ends the day on a silent
|
|
30
|
+
`break` — the log says why the runner stopped. Daily mode's "will wait 1 hour
|
|
31
|
+
before retry" names the wait it actually takes.
|
|
32
|
+
|
|
8
33
|
## 0.3.13
|
|
9
34
|
|
|
10
35
|
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.14"
|
|
14
14
|
end
|