mcptask-rails-runner 0.3.3 → 0.3.4

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: d8ce34df845fcba0cc60dafd3a533c7bf89f7dc24eddc885e8ce9d4f53058dc3
4
- data.tar.gz: 0f04addccfa86eaaba0a6e3db9b3a3fed143b0308d730eeb610ef5c5b9e0a720
3
+ metadata.gz: 2a59e79a3c1d27d4439e3dacd64b8c571b40ec6b09f4298c17e44bc50333266e
4
+ data.tar.gz: c5ac6c24611c7e971c3920a47e404302754bbc3be05ad4d5eb66efefdf6dc465
5
5
  SHA512:
6
- metadata.gz: 51a94b4dd7259952d56f94acfeae106d7d00b43e873c728876b0637e49ccec596ad8e097dc048ae01288162ba8e1a699ddc2eab1afd138c8ddac0aa7a74adfc2
7
- data.tar.gz: 69b9113fcf1e5a29240632c2d9799afd00165d80197adfe26faa580cbfa35388a90992422a8ea47be98c7e670e8bc554a2206cce19678802040b4b65c7ffc4b0
6
+ metadata.gz: 5c692cb004f386155b6d238c4a98bdfc613f2103d751a9d3ad5ed866ccacb6afffb47f29b3dd5209de6ea0b147a10830ac31774fe918ffca57114fa947312d2e
7
+ data.tar.gz: 84f6b21412e4fe8a44efdeade405aa32b520264acd7fa88290a45b5413932a497db61d05242d8f98d4ea8866668a9f1f0dd14e22ca9a42cc106a2df615fe2776
data/CHANGELOG.md CHANGED
@@ -5,6 +5,31 @@ 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.4
9
+
10
+ The install stops taking things away from the host it is setting up. All three
11
+ of these were in every release up to and including 0.3.3.
12
+
13
+ - **A project's own token variable survives.** `init` replaced the whole
14
+ `mcptask-online` entry in `.mcp.json` with one hardcoding
15
+ `Bearer ${MCPTASK_TOKEN}` — on every install, not only `--force`. A project
16
+ naming its own variable, and so its own mcptask.online account, was quietly
17
+ moved onto whatever account `MCPTASK_TOKEN` happened to hold. That does not
18
+ fail: it succeeds as the wrong user, and every task, effort and bug lands on
19
+ somebody else's dashboard, with the scheduled job carrying that token to 08:00.
20
+ - **A token living inside `.mcp.json` is no longer deleted.** The legacy gem's
21
+ installer wrote tokens into an `env` block on the entry, which makes it the
22
+ shape a migrating host arrives in. Replacing the entry removed the only copy —
23
+ nothing else had it, because a token that already resolves is deliberately left
24
+ alone — and the job then got `SET_MCPTASK_TOKEN_HERE` with nothing left to
25
+ re-resolve, so re-running could not repair it. Such an entry is now left exactly
26
+ as it is, and the install says so.
27
+ - **An unparseable `.mcp.json` is refused, not replaced.** It used to be treated
28
+ as absent, which deleted every other MCP server configured in it. One trailing
29
+ comma was enough, and a project that already runs a coding CLI with servers of
30
+ its own is the normal case. The install now names the file and the parse error;
31
+ `--force` moves it aside to `.mcp.json.bak` and writes a fresh one.
32
+
8
33
  ## 0.3.3
9
34
 
10
35
  - The bundled skills now ask for the model the host actually has. Eight of them
@@ -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.3"
13
+ VERSION = "0.3.4"
14
14
  end
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.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josef Chmel