mcptask-rails-runner 0.3.7 → 0.3.8
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 +18 -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: cf0608602b02f464ea4c3f6ebb5c43171827c2ba905edcf701bd2b62899e8622
|
|
4
|
+
data.tar.gz: 509c834bcd48d9ed3f66d70f5ee01765c869c85506ba77387140d6058fb8436d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0bafdd753ed59638bb2ca0a31046c5e020fbb708eb26b406937db2a02f1f3aa0b4dd3bac000ca215ca0819612ee140d71e77455221eaec6cc113702cad8e3a8e
|
|
7
|
+
data.tar.gz: 2a494d6eba32de214e3a660c1b0ad8f5e3d7d07a941399bc41625ba7e33bbae2d10ace9aa809f95b5a4a5382203cfc2e7ac5588669b3839da9572898efbd8a91
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ 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.8
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.8](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.8).
|
|
12
|
+
|
|
13
|
+
- **A run that merged its PR no longer reports none of the work it did.** The
|
|
14
|
+
auto-squash prompt stated its progress-logging cadence in a block after the
|
|
15
|
+
last numbered step; an agent working that fourteen-step spine for half an hour
|
|
16
|
+
never came back to it. One task ran 36 minutes, completed every step, merged,
|
|
17
|
+
and logged nothing — the effort only reached the dashboard because a later pass
|
|
18
|
+
re-picked the task. Each milestone is now named at the step where it falls due,
|
|
19
|
+
the CI-failed path gets a logging point it never had, and a resumed session
|
|
20
|
+
keeps the cadence instead of losing it with the rest of the workflow.
|
|
21
|
+
|
|
22
|
+
- **The end of the working day is a setting rather than a constant.** The runner
|
|
23
|
+
stopped at 18:00 no matter what; the installer now asks, and `--until` sets it
|
|
24
|
+
per run.
|
|
25
|
+
|
|
8
26
|
## 0.3.7
|
|
9
27
|
|
|
10
28
|
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.8"
|
|
14
14
|
end
|