mcptask-rails-runner 0.3.22-aarch64-linux → 0.3.23-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: a9715292b2000258b3f52c17476070f8373c8c2f2f7282d27d4390b39a5f459e
4
- data.tar.gz: 56df5ce8b9c98159ff74a1a8b56446df308bab48e99095eabebf3a0b34c51cd1
3
+ metadata.gz: a9d2a8d8efdabd47d10135a228a5974594028ab57edd26232d0ac37c071f72f4
4
+ data.tar.gz: e9001bb85200b50b4b37473f82463475b78e64c6d743b576e862cc9157c86810
5
5
  SHA512:
6
- metadata.gz: 07556d373d12e8125dc3429553427a54a59afccaf429021e87b5347492d65ccfb54c3ba90ba5946c8fbb8586d78be9a0a24b094f6e8608813324cbfa72124f2e
7
- data.tar.gz: 52ef5b8d9e8786f932490ee7f7d27191fca5c387bd7addf83cd6f100b53af9e7b4ab4dc228f69d11d1e3fb55a1caf6f8aad81f5f4b01c0ff4576aade07c9445c
6
+ metadata.gz: 8f53bbceba70de74fc5a500213260c154537a67a1ea366b94cd2881b022d513678d09d988923b37ba0f85228331ec503bdc065b5f1c9f8f9569a7d70d7ffeb14
7
+ data.tar.gz: e5b9d7bf83e684722d35d42ffab7e6026b88dc2801567704d4729fb41be923e7f7deccc46f5ebcc5d4df1a6292d1d318a5974f853fcdbccbb002056d1037b75f
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.22"
13
+ VERSION = "0.3.23"
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.22
4
+ version: 0.3.23
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Josef Chmel