mcptask-rails-runner 0.3.27 → 0.3.28
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 +4 -4
- data/CHANGELOG.md +26 -0
- data/lib/mcptask_rails_runner/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15ee3021e9e975a445843b460eade8213bf9bf829d532d1a77f234320a2d2d45
|
|
4
|
+
data.tar.gz: ef44ac6ec8ef090f2f36ee57e19aa053e2d679cc4ee52f5f05bdff982d42ac63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca183a9ae486f4fe7b9da11fa48b18b069b925b742a173228941876a64cc4d38425a891c8496a5eab5b9f4147af9c7add893d17c18b9c87520b9144867ca34f9
|
|
7
|
+
data.tar.gz: a1725e622dc0a45274e9fc0ed4111d1e62454dc61458c01e497d39ca7c3610dafa256256042e798fb108c2d9d8161dcc00e5153c26ba058e1a9eede7d69ad3a6
|
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
|
+
## Unreleased
|
|
9
|
+
|
|
10
|
+
Nothing yet.
|
|
11
|
+
|
|
12
|
+
## 0.3.28
|
|
13
|
+
|
|
14
|
+
Full binary notes in
|
|
15
|
+
[mcptask-releases v0.3.28](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.28).
|
|
16
|
+
|
|
17
|
+
**Upgrading is one command plus a restart.** `mcptask_runner update --self`
|
|
18
|
+
replaces the binary. A runner idling in a wait keeps the old one until its
|
|
19
|
+
next task or a restart (`launchctl kill SIGTERM` + `kickstart` on macOS), so
|
|
20
|
+
restart it. No bundled asset changed; no bare `update` is needed.
|
|
21
|
+
|
|
22
|
+
No wrapper changes.
|
|
23
|
+
|
|
24
|
+
Binary changes carried by this version:
|
|
25
|
+
|
|
26
|
+
- **A job started with `ignore_quota: true` now wakes up on an assignment.**
|
|
27
|
+
Such a job never read its user profile, so its event stream had no user id,
|
|
28
|
+
ignored every assignment broadcast and logged `Assignment event ignored:
|
|
29
|
+
this runner does not know its own user id yet` on each one, all day, while
|
|
30
|
+
the card on mcptask.online named the user. The profile is now read on every
|
|
31
|
+
start; `ignore_quota` only decides whether the working-hours flag is applied
|
|
32
|
+
(task #12473).
|
|
33
|
+
|
|
8
34
|
## 0.3.27
|
|
9
35
|
|
|
10
36
|
Full binary 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.
|
|
13
|
+
VERSION = "0.3.28"
|
|
14
14
|
end
|