mcptask-rails-runner 0.3.12 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca7009694ebc9c691cb936b0f17d677d3deff594a5ec2207e234233b89dc135d
4
- data.tar.gz: d244fd4bfbbd8c14f1a8c866f8231778520358d29be6e7094ece3527a19d80a2
3
+ metadata.gz: d79d2097933143ea9b653c43a88fdba390edc26d229894c43865b82c8b31932d
4
+ data.tar.gz: a1744f649e201fbaaaff95819f98680ad9154d3a812983a630f4a7f43afbcc42
5
5
  SHA512:
6
- metadata.gz: '081aa8aced7dabc614e5b4ccaf61b27ba74dc809fa868739ba5e2395dddf406c241de8c47ae6c419b33ab90efcf68fd4243c1469ec5a591abb05d89c8a1cfe08'
7
- data.tar.gz: 72a9766b4f3be4d14a823c08825cf624706ef2fe072cd33d2543dd11c1fb72096306a0bac0cb9de5006172eb22887b00c2bb0c481ec392810c9984308ab71a30
6
+ metadata.gz: c3aaaa95bb5ad3ee91a088c3a91951a6084b4a5c76a552f8b9a23f153dba7e83125d0b7979237d035b545bd792348027500f787504c4624c797a90bb7154d38e
7
+ data.tar.gz: 8e90f59fcb99207a05852991775df51bf70801ebdda9557437c6e448f40d49e6600818919bbcbcafce1377a6c16d7b2013201fbaa374e0fb6d11f766f8ef556e
data/CHANGELOG.md CHANGED
@@ -5,6 +5,58 @@ 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
+
33
+ ## 0.3.13
34
+
35
+ No wrapper changes. Full notes in
36
+ [mcptask-releases v0.3.13](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.13).
37
+
38
+ **Upgrading:** run `mcptask_runner update` in each project after the binary
39
+ upgrade — this release ships a new helper (`runner-log`) and rewritten config
40
+ sections, and nothing installs those for you.
41
+
42
+ Binary changes carried by this version:
43
+
44
+ - The loop asks `GET /api/:account/pieces/next` before paying for a triage
45
+ session; an empty queue is `no_more_tasks` without a model. Until
46
+ mcptask.online ships the endpoint (task #11691) the 404 falls through to
47
+ triage exactly as before.
48
+ - The configured end of workday is the one hard stop, checked after a task
49
+ finishes — and there is no default any more.
50
+ - The skip list outlives the process: a restart does not re-pick what today
51
+ already declined. `failure`, `task_already_started`, `merge_failed`,
52
+ `merge_unverified` and `out_of_scope` set the task aside for the day instead
53
+ of stopping.
54
+ - `respect_working_hours` is read from the user profile once at startup.
55
+ - A guard of the runner's own that did not hold files a bug piece instead of
56
+ a log line.
57
+ - `runner-log`, the helper an operator types to tail the current run; the
58
+ install ends with a summary of every config section the runner reads.
59
+
8
60
  ## 0.3.12
9
61
 
10
62
  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.12"
13
+ VERSION = "0.3.14"
14
14
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mcptask-rails-runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.12
4
+ version: 0.3.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josef Chmel