mcptask-rails-runner 0.3.5-aarch64-linux → 0.3.6-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: 88707e270a19a7d7eea09955ab5a98a1f5749781e17f6948b295fb9469e151c1
4
- data.tar.gz: 7bd7dc041c22d377010276d6070327742031e15c7f14670406034747a3ca1f75
3
+ metadata.gz: d4e96e25efad05d447a3059eac285f3380183e6f63010235e65a9d1ff00b0d31
4
+ data.tar.gz: 0e2f6a5be99bdb086e22225e9d93b7951d7d96ce53bba2f97018072887b2a2af
5
5
  SHA512:
6
- metadata.gz: 8240a0d51c1a2eec19c7070ef3b15d316da20864e91ab7fb79a7bce89156f7fffd11faed89b989e734b8390b2ff457b87de45e09f5ea4058153d63f7aaff55a9
7
- data.tar.gz: 31a38c09bbccba2dda2d4ca99ec13cc8aa196fdbbc69afb816287e81ca52e75428c2b9cbfd2453ab8020431d69d4ca54cfc6e629774c5dc7cdb5f2ffc051936a
6
+ metadata.gz: 7f4cbba698d0e599712e5887e601d83fa575c32b3d108baf19d81d5051beb94439954670addd1643aba35871314ac9a85214dec90a1726541880a724ed707a3b
7
+ data.tar.gz: 7aa8018eabdd68a1cbeaa36a1bc50f211d5cd819a4eab6437eaef9b4c42bde43a173dcb1e4c3ab567fa1fa5f563d617511239367f91d73b8969d7b69107512dc
data/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ 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.6
9
+
10
+ No wrapper changes. Full notes in
11
+ [mcptask-releases v0.3.6](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.6).
12
+
13
+ - **The scheduled job stops running a binary its project has already replaced.**
14
+ `rake mcptask_runner:*` has always installed the gem's bundled binary over
15
+ `~/.mcptask/bin/mcptask_runner` when it was newer; the launchd/systemd job was
16
+ the one path that skipped it, because the generated launcher execs that
17
+ installed copy directly. An unattended host would pull main, run
18
+ `bundle install` while working a task, never call `mcptask_runner:update`, and
19
+ sit on a stale runner indefinitely. A scheduled run now reads the project's own
20
+ `Gemfile.lock`, and if it names a newer wrapper than the running binary, it
21
+ installs that gem's copy and re-runs on it.
22
+
23
+ This is not a download. The runner still never fetches a release on its own —
24
+ it only honours the version already merged and installed on purpose. Set
25
+ `MCPTASK_NO_ADOPT=1` to keep a host's binary pinned regardless.
26
+
27
+ Note the ordering: the already-installed binary is the one that decides whether
28
+ to adopt, so a host starts keeping itself current only once it is running 0.3.6
29
+ or later. Hosts on 0.3.5 and older need one `rake mcptask_runner:update` by hand
30
+ first.
31
+
8
32
  ## 0.3.5
9
33
 
10
34
  No wrapper changes — this release carries a new binary. 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.5"
13
+ VERSION = "0.3.6"
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.5
4
+ version: 0.3.6
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Josef Chmel