mcptask-rails-runner 0.3.9-aarch64-linux → 0.3.10-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: aae84a79d17e7f29d6fb265da68121b27134861a43208e753aba49c772d2763c
4
- data.tar.gz: c2de18ebfad6f84f7a812c293e13d906df1bdd10af22eba84c57711818561aab
3
+ metadata.gz: ac62422bb43ed75acce6e21b7fd1405cefb2d50932150bca952d5959e858666c
4
+ data.tar.gz: bc73dab3abd2c7b9f68824518f61c1527930233dd03a508e8227e81d16595ad8
5
5
  SHA512:
6
- metadata.gz: a85de88512671ed7533ac386f7920feb710ac19808bef6a4d3df26b4ed1d89b6270c426bdf056715fcfc1f1f25a030a8fcdd2fe9d2177433b85b93160db4c8e8
7
- data.tar.gz: 358d04118bc25ce52d6a9a1b16ed8b4c6982e96d26909dbcb257dcdd8e7e0b014989e772c6607c71dd30a6ac2aa6bfd931e408f8c8f741c81234f4ead6b538e9
6
+ metadata.gz: 05f6e13ab5e70f145a6c3b11ae690b1fdbfbc94ea35bfdb996260dc213d8c60ddec936387dfd82c890aaaa8a06665ea1ddb6235f6fc6537c455337d9baedbe41
7
+ data.tar.gz: a60c5e99c302bb393033c6139a71e7232920d18b0a7bf8ba3b69d56c9662edae19d9651a38eb658bb14fcf75daa70d07b53733af4fecdf85e43ea316ed89dd26
data/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ 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.10
9
+
10
+ No wrapper changes. Full notes in
11
+ [mcptask-releases v0.3.10](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.10).
12
+
13
+ - **The bundled helpers find Ruby on a machine that does not use rvm.** A Mac
14
+ mini managing Ruby with rbenv got the system 2.6 for every test and CI run, and
15
+ the binstubs died before printing anything worth reading. The helper was written
16
+ where rvm was: it looked for `.ruby-version` in the current directory only,
17
+ probed three fixed paths under the home directory, and matched on what those
18
+ directories were named. None of that covers the case rbenv actually fails on —
19
+ the shell these helpers run in is neither interactive nor a login shell, and
20
+ rbenv, asdf and mise all install themselves from a line in `~/.zshrc` that such
21
+ a shell never reads. They now ask each manager where it keeps the pinned
22
+ version, fall back to its documented layout when the manager itself is
23
+ unreachable, cover rvm, rbenv, asdf, mise, chruby, frum and Homebrew alike, and
24
+ confirm each candidate by asking that interpreter its version rather than
25
+ trusting a directory name. Which interpreter a run got is recorded in its log
26
+ header, and a pinned version the machine does not have says so instead of
27
+ failing later somewhere else.
28
+
29
+ - **The shipped permission baseline no longer names one developer's home
30
+ directory.** It granted read access to `/Users/josefchmel/.rvm` literally,
31
+ which on anybody else's machine grants nothing. The paths are relative to the
32
+ home directory now, and the other version managers are in the list.
33
+
8
34
  ## 0.3.9
9
35
 
10
36
  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.9"
13
+ VERSION = "0.3.10"
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.9
4
+ version: 0.3.10
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Josef Chmel