mcptask-rails-runner 0.3.0 → 0.3.1

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: 35e95dc7bc0beff3bde29932e758fb3f32d74481e6a3c4efdbab717f63466056
4
- data.tar.gz: f96698da2f9ebad301013481638f6fd02998abf7fb8c6cf29fcf463925d6f7ea
3
+ metadata.gz: '0519b4bebbc7206e258a1c0ca68d4b33a1d4ca65e7b1df96e94bc7fcea9d195a'
4
+ data.tar.gz: fb10b8db54c85034117828907847bb13c62d80f316591490724c2e8804fcebdd
5
5
  SHA512:
6
- metadata.gz: 23066150e19f4c102a3177992af6646ffc19d4080cf039713954dd0892f70fb9775dcee03ce3b8f7b9b063fee6e4312f127d12602814373a3b4a4dbb5ee58610
7
- data.tar.gz: 45c0ca05927c3b83150a6b6c52338030d05ab73a3d3dfdc6a32a19461e7ff62b63a8e59cef2a4b2a75dd48acb3d9a98b6dc532ae312ab01bf046a4390bab320b
6
+ metadata.gz: 5d80a74fce1cb46bcef44e67e6d17c3015a9651a53fc8099b05fd75abb29c9f5b7f37e22d194f1192cfb6e1a7527ae9c5f3ae21b7462ce5bf43d01c64d49722e
7
+ data.tar.gz: 5fa67df8de13a98d9f42990dacfadea7b56b7cb040bbde6186cb9cb1d764ca46f9a191dbb163c4aade6bb4d036334249820af81e389801c7ba95e3279a2c9773
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ 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.1
9
+
10
+ - `mcptask_runner:install` no longer asks for mcptask.online credentials on a
11
+ host whose token already resolves — from `.mcp.json` or the environment. It
12
+ says which one it found and where, and leaves it alone; set `MCPTASK_EMAIL`
13
+ and `MCPTASK_PASSWORD` to replace it deliberately. Where there really is no
14
+ token, the step now says whose account it wants, that the password is
15
+ exchanged once and never stored, which file the token lands in, and that the
16
+ runner will not start without one.
17
+ - The release workflow waits for the Go binaries instead of failing when the two
18
+ tags are pushed minutes apart.
19
+
8
20
  ## 0.3.0
9
21
 
10
22
  - The Go runner is the runner: this gem is the Rails distribution, and the
data/README.md CHANGED
@@ -118,11 +118,23 @@ bundle exec rake package:all # build all platform gems into pkg/
118
118
 
119
119
  ## Releasing
120
120
 
121
- Releases are cut by tagging: bump `lib/mcptask_rails_runner/version.rb` to
122
- match an existing `mcptask-releases` tag, push a matching `vX.Y.Z` tag, and
123
- the Release workflow downloads the binaries (sha256-verified), builds the
124
- platform gems and publishes them to rubygems.org through OIDC trusted
125
- publishing. See `.github/workflows/release.yml`.
121
+ Releases are cut by tagging, twice the binaries come from the Go repository
122
+ and the gems from this one:
123
+
124
+ ```bash
125
+ # 1. bump lib/mcptask_rails_runner/version.rb, commit, push
126
+ # 2. in mcptask_go_runner:
127
+ git tag -a v0.3.0 -m v0.3.0 && git push origin v0.3.0
128
+ # 3. here, straight after — no waiting:
129
+ git tag -a v0.3.0 -m v0.3.0 && git push origin v0.3.0
130
+ ```
131
+
132
+ Step 3 needs no waiting because the Release workflow's fetch waits for the
133
+ binaries itself (`MCPTASK_WAIT_FOR_RELEASE`, 15 minutes against a Go release
134
+ that takes about four). It then verifies each archive against the release's
135
+ `checksums.txt`, builds the platform gems and publishes them to rubygems.org
136
+ through OIDC trusted publishing. A tag that disagrees with `version.rb` is
137
+ refused before anything is downloaded. See `.github/workflows/release.yml`.
126
138
 
127
139
  One-time setup on rubygems.org, before the first tag can publish anything —
128
140
  the gem name has to exist as a trusted-publisher entry:
@@ -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.0"
13
+ VERSION = "0.3.1"
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.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josef Chmel