mcptask-rails-runner 0.3.22 → 0.3.23
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 +35 -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: 6d2a73c2de4ee862b3ce4354468099e515f0cbc59a14d2b910c18173b13e7a59
|
|
4
|
+
data.tar.gz: 8c89bceed9444902402d06f427a19fbf9bac18539713909f453ad0b424649285
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f470628c32c59d11b1ae94e14391d46616fbbc11e1c1802d9ef93b794b9b41f75580b882b625dfe607d5d31b34f34497d8b698e9fcb2694805f5753c95939467
|
|
7
|
+
data.tar.gz: 0db755a5d77e70fb516581913998e8ef7ea8f916ec2f7d2bfbceb69f81a47309f536c49a337a9b6af5558546f6e835e5148e14323360121e141e592a334ae2cd
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,41 @@ 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.23
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.23](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.23).
|
|
12
|
+
|
|
13
|
+
**Upgrading is the usual one command** — `mcptask_runner update --self`. The
|
|
14
|
+
skills-and-helpers data pack did not change in this version, so a follow-up
|
|
15
|
+
bare `update` is not required; the changes below live in the binary itself.
|
|
16
|
+
|
|
17
|
+
Binary changes carried by this version:
|
|
18
|
+
|
|
19
|
+
- **`--ignore-quota` now means ignore, everywhere.** The daily mode's
|
|
20
|
+
day-level scheduler used to keep asking mcptask.online about the budget even
|
|
21
|
+
with the flag set, so a REST outage could park an unattended daily host
|
|
22
|
+
until the next business day. With the flag set the runner now performs no
|
|
23
|
+
budget queries at all; the end-of-workday clock still applies — it is a time
|
|
24
|
+
rule, not a quota rule (task #11891).
|
|
25
|
+
- **The work window keeps its minutes.** `mcptask_runner init --until 18:30`
|
|
26
|
+
now stores `work_window.end_of_workday_minute` next to the existing hour key
|
|
27
|
+
and the loop stops picking up new work at 18:30, not 18:00. The key is
|
|
28
|
+
additive: a config without it means `:00`, so existing hosts change nothing.
|
|
29
|
+
A value the config cannot hold is refused loudly, never rounded — `--until`
|
|
30
|
+
used to keep only the hour and say nothing (tasks #11892, #11896).
|
|
31
|
+
- **`update` protects locally modified helper scripts** the way it has always
|
|
32
|
+
protected skills: content hashes in a manifest, one of five outcomes per
|
|
33
|
+
file (added / up-to-date / updated / conflict-skipped / force-updated), and
|
|
34
|
+
a `.bak` next to anything `FORCE=1` overwrites. On the first `update` after
|
|
35
|
+
this release, a helper edited by hand reports `conflict-skipped` instead of
|
|
36
|
+
being silently overwritten — that is the fix working, not a failure
|
|
37
|
+
(task #11894).
|
|
38
|
+
- The Ruby-gem conformance baseline now runs nightly in CI rather than on
|
|
39
|
+
every push, and the docs stopped contradicting each other about its role
|
|
40
|
+
(task #11893). Stale comments aligned (task #11895) and a Windows-only
|
|
41
|
+
test flake pinned down (task #11897).
|
|
42
|
+
|
|
8
43
|
## 0.3.22
|
|
9
44
|
|
|
10
45
|
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.23"
|
|
14
14
|
end
|