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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac62422bb43ed75acce6e21b7fd1405cefb2d50932150bca952d5959e858666c
4
- data.tar.gz: bc73dab3abd2c7b9f68824518f61c1527930233dd03a508e8227e81d16595ad8
3
+ metadata.gz: fb0d075a07a2dc578b20c5948c0611f32d264a45b8c4360c15a740f39bdab15b
4
+ data.tar.gz: 2611c12ec56896e7d9d2062ed36fd20fd000424bac84baa2132e47b4b933df5d
5
5
  SHA512:
6
- metadata.gz: 05f6e13ab5e70f145a6c3b11ae690b1fdbfbc94ea35bfdb996260dc213d8c60ddec936387dfd82c890aaaa8a06665ea1ddb6235f6fc6537c455337d9baedbe41
7
- data.tar.gz: a60c5e99c302bb393033c6139a71e7232920d18b0a7bf8ba3b69d56c9662edae19d9651a38eb658bb14fcf75daa70d07b53733af4fecdf85e43ea316ed89dd26
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.10"
13
+ VERSION = "0.3.11"
14
14
  end
Binary file
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.10
4
+ version: 0.3.11
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Josef Chmel