mcptask-rails-runner 0.3.10-aarch64-linux → 0.3.11-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 +24 -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: fb0d075a07a2dc578b20c5948c0611f32d264a45b8c4360c15a740f39bdab15b
|
|
4
|
+
data.tar.gz: 2611c12ec56896e7d9d2062ed36fd20fd000424bac84baa2132e47b4b933df5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c4f4d6c943dae0964a579739ea769e8bbe26629e7b333b8968076f430a534b2b6672b9d9776ec4cfbd7b97527b467af812db386bf42221566c3c08e75dd6128
|
|
7
|
+
data.tar.gz: 29ea678b56d4980e70e0cd752915638d9e382db14b1635dd1ffa31e5e0d77b488326e4b4903c912ff36c58d6c1bd556bc7a17719c4c881463a162333eed7ee0d
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.11
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.11](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.11).
|
|
12
|
+
|
|
13
|
+
- **A role that ignores working hours is no longer stopped by its hour goal.**
|
|
14
|
+
A runner configured to work until 23:00 was being killed mid-task at 18:15,
|
|
15
|
+
and the setting everyone reached for was the wrong one: `end_of_workday_hour`
|
|
16
|
+
only governs how long an idle loop waits for a new task, and never touches a
|
|
17
|
+
task already running. What ended the day was the daily hour quota, which reads
|
|
18
|
+
`today.hour_goal` from mcptask.online and stops once the hours worked reach
|
|
19
|
+
it. The `respect_working_hours` flag on the user's role reads like the switch
|
|
20
|
+
that turns this off, and it never was — it decides where a logged effort lands
|
|
21
|
+
on the timeline, nothing more. The quota guard now reads the flag from
|
|
22
|
+
`time_status` and, when the role has opted out, neither the spent budget nor a
|
|
23
|
+
zero-budget weekend stops the loop. A poll that does not answer still fails
|
|
24
|
+
closed: no answer from the endpoint is not permission to run. Nothing changes
|
|
25
|
+
until the server ships the field, because an absent flag keeps its old
|
|
26
|
+
meaning.
|
|
27
|
+
|
|
28
|
+
- **A disabled fetch tool is a detour, not the end of the day.** Triage treated
|
|
29
|
+
an unavailable piece-fetch tool as a terminal condition and ended the run,
|
|
30
|
+
which turned one missing MCP tool into a whole idle day.
|
|
31
|
+
|
|
8
32
|
## 0.3.10
|
|
9
33
|
|
|
10
34
|
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.11"
|
|
14
14
|
end
|
data/libexec/mcptask_runner
CHANGED
|
Binary file
|