mcptask-rails-runner 0.3.30 → 0.3.31
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 +19 -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: f87d40361cf2d13f08554a7cec44efab65678cd339068f4769b36e96bc3653ca
|
|
4
|
+
data.tar.gz: dd93e823b09ac843598294764580728f92b5355a2b53fe23a8c0899a408ee17a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edd5c3f0de7240eb399afef83e5cdf3b5d65af72f9492da46d3c08ea259aa00f77b6c3efd75724102b7a024c09d310a134cb5c9563599e2050d6c3833475f3c8
|
|
7
|
+
data.tar.gz: 2c4659fb32e956bd5571d50b38b9e423121cb56ba127c0a014ac79f36fd91aa31683f4516e11144293082468c6c9bdc0fa4a65fb1aa4a175b4d93ef0ee69d1a1
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,25 @@ release notes for the same tag.
|
|
|
9
9
|
|
|
10
10
|
Nothing yet.
|
|
11
11
|
|
|
12
|
+
## 0.3.31
|
|
13
|
+
|
|
14
|
+
Full binary notes in
|
|
15
|
+
[mcptask-releases v0.3.31](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.31).
|
|
16
|
+
|
|
17
|
+
**Upgrading is one command.** `mcptask_runner update --self` replaces the binary; the bundled `.claude/` assets did not change, so no per-project `update` is needed. A runner idling in a wait keeps the old binary until its next task or a restart (`launchctl kill SIGTERM`, wait for the job to stop, then `kickstart` on macOS), so restart it.
|
|
18
|
+
|
|
19
|
+
No wrapper changes.
|
|
20
|
+
|
|
21
|
+
Binary changes carried by this version:
|
|
22
|
+
|
|
23
|
+
- The installed skills and helpers follow the binary by themselves
|
|
24
|
+
- Run logs and bug-report attachments no longer carry escape codes
|
|
25
|
+
- The release is one script
|
|
26
|
+
- A child that forks subagents in the foreground is no longer killed at five minutes
|
|
27
|
+
- A transient 500 from the API no longer ends the day
|
|
28
|
+
- A running runner takes up a newly installed binary between tasks
|
|
29
|
+
- The story loop asks the server which subtask is next
|
|
30
|
+
|
|
12
31
|
## 0.3.30
|
|
13
32
|
|
|
14
33
|
Full binary 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.31"
|
|
14
14
|
end
|