@pellux/goodvibes-daemon 1.28.0 → 1.28.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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ All notable changes to the GoodVibes daemon.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.28.1] - 2026-08-01
10
+
11
+ - Changed: the npm package is `@pellux/goodvibes-daemon`, scoped like every other
12
+ package on the platform. The executable, the service unit, and the release
13
+ assets keep their names; only the registry entry moved.
14
+ `npm install -g @pellux/goodvibes-daemon` is the npm-channel install from here
15
+ on. The 1.28.0 registry entry under the same scoped name carries identical
16
+ contents.
17
+
9
18
  ### Changes
10
19
 
11
20
  - `pair --host <name>` now reaches a DIFFERENT daemon instead of being refused.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-daemon/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-daemon/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-1.28.0-blue.svg)](https://github.com/mgd34msu/goodvibes-daemon)
5
+ [![Version](https://img.shields.io/badge/version-1.28.1-blue.svg)](https://github.com/mgd34msu/goodvibes-daemon)
6
6
 
7
7
  The GoodVibes daemon: one long-running process per machine that holds the control plane every
8
8
  GoodVibes client talks to. It answers the operator verb families over HTTP, reads and replies on
@@ -68,7 +68,7 @@ network — the shipped binding is loopback and the installer does not change it
68
68
  Or install from the npm registry with [Bun](https://bun.sh):
69
69
 
70
70
  ```sh
71
- bun add -g goodvibes-daemon
71
+ bun add -g @pellux/goodvibes-daemon
72
72
  bun pm trust -g goodvibes-daemon
73
73
  goodvibes-daemon install-service
74
74
  ```
@@ -76,7 +76,7 @@ goodvibes-daemon install-service
76
76
  Bun blocks lifecycle scripts for untrusted global packages, so the second line
77
77
  lets the package's postinstall place the matching daemon binary. If you skip it,
78
78
  the `goodvibes-daemon` launcher still self-heals on first run by fetching and
79
- checksum-verifying the binary. `npm install -g goodvibes-daemon` also works when
79
+ checksum-verifying the binary. `npm install -g @pellux/goodvibes-daemon` also works when
80
80
  `bun` is already on `PATH`.
81
81
 
82
82
  The npm package carries the product source and the launcher; the daemon itself is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-daemon",
3
- "version": "1.28.0",
3
+ "version": "1.28.1",
4
4
  "description": "The GoodVibes daemon \u2014 the one long-running host for the control plane, channels, cluster membership, scheduled work, knowledge and memory stores, and the verb families every GoodVibes client calls.",
5
5
  "type": "module",
6
6
  "main": "src/daemon/cli.ts",
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '1.28.0';
9
+ let _version = '1.28.1';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  // Only trust a version read from OUR OWN package.json. A Bun single-file