mcptask-rails-runner 0.3.4-aarch64-linux → 0.3.5-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: cbb38fac667de440f01cf01c39b1df38bfbd41a17721214475166fa1b95b2906
4
- data.tar.gz: 46742efa1529256f69bdb4a6b6eb7159f77234067f4bf7e63aaebf60e30a1e22
3
+ metadata.gz: 88707e270a19a7d7eea09955ab5a98a1f5749781e17f6948b295fb9469e151c1
4
+ data.tar.gz: 7bd7dc041c22d377010276d6070327742031e15c7f14670406034747a3ca1f75
5
5
  SHA512:
6
- metadata.gz: d5aa0c563860ee79410fbd193877f82d5122aa14d7f2551d2d263f8b9b45d711dd2a089de2f16e9249e630fbc9208081981214b1aecfad5c6fa35e5b4d9597ee
7
- data.tar.gz: 2c56063508d590ca07a1529e2dc3240242f71fcd525da0b0d8f0e45a64307741fedf697bd116624061706f5652e7ab23dd623fada72cbb064f8c8fbaa83cd083
6
+ metadata.gz: 8240a0d51c1a2eec19c7070ef3b15d316da20864e91ab7fb79a7bce89156f7fffd11faed89b989e734b8390b2ff457b87de45e09f5ea4058153d63f7aaff55a9
7
+ data.tar.gz: 31a38c09bbccba2dda2d4ca99ec13cc8aa196fdbbc69afb816287e81ca52e75428c2b9cbfd2453ab8020431d69d4ca54cfc6e629774c5dc7cdb5f2ffc051936a
data/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ 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.5
9
+
10
+ No wrapper changes — this release carries a new binary. Full notes in
11
+ [mcptask-releases v0.3.5](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.5);
12
+ what a host running the scheduled job will notice:
13
+
14
+ - **A run that overflows its context now reports what it produced.** A task
15
+ whose pull request was already open was being called `error` with "task
16
+ exceeds token limit". That filed a bug piece for work that had shipped, and
17
+ because the quota decider stops a day on any error, one nearly-finished task
18
+ ended the rest of the day's runs. It now reports `overflow_pr_open`, the task
19
+ stays in progress, and the loop carries on to the next one.
20
+ - **The session that replaces an overflowed one is told how to survive.** The
21
+ in-process restart used to get one sentence of encouragement while the
22
+ cross-process handoff carried the whole context budget; both now get the same
23
+ rules, plus a measured account of where the previous session's window went —
24
+ which file it re-read ten times, which edit kept missing.
25
+ - **The runner now logs what each attempt cost.** One `[context_cost]` line per
26
+ attempt: tool calls, tool output in kB, files read whole, ranged reads, failed
27
+ edits. Diagnosing the run that prompted all of the above meant grepping 1.3 MB
28
+ of stream by hand.
29
+ - **Hosts pinned to a non-Claude model get their dashboard todo list back.** On
30
+ third-party models behind a local proxy the child never called `TodoWrite`, so
31
+ the card rendered empty; the instruction is now explicit for those hosts and
32
+ stays out of the way for Claude's own models, which do it natively.
33
+
8
34
  ## 0.3.4
9
35
 
10
36
  The install stops taking things away from the host it is setting up. All three
@@ -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.4"
13
+ VERSION = "0.3.5"
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.4
4
+ version: 0.3.5
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Josef Chmel