@pellux/goodvibes-daemon 1.28.3 → 1.28.5

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,29 @@ All notable changes to the GoodVibes daemon.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.28.5] - 2026-08-01
10
+
11
+ ### Changes
12
+
13
+ - Fixed: a client that inherited this daemon's bind host is no longer refused
14
+ as "insecure PUBLIC transport" when that host is a wildcard. The platform
15
+ runtime (2.0.3) classifies `0.0.0.0` and `::` with loopback and the other
16
+ private-network origins — a wildcard is a listen address, and dialing it
17
+ reaches the local machine. Until this fix, a daemon deliberately bound to
18
+ `0.0.0.0` for LAN access left local clients unable to call it over plain
19
+ http, profile reads included.
20
+
21
+ ## [1.28.4] - 2026-08-01
22
+
23
+ ### Changes
24
+
25
+ - Fixed: the platform runtime is 2.0.2, which removes the last pre-split
26
+ remnants of in-process daemon composition from the shared bootstrap. In the
27
+ terminal products those remnants broke the packaged bundle's module
28
+ initialization and killed every conversation turn; this daemon consumes the
29
+ same runtime and picks up the cleaned composition path. A hosted-session
30
+ turn is exercised against the built binary as part of this release's gates.
31
+
9
32
  ## [1.28.3] - 2026-08-01
10
33
 
11
34
  ### Changes
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.2-blue.svg)](https://github.com/mgd34msu/goodvibes-daemon)
5
+ [![Version](https://img.shields.io/badge/version-1.28.5-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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-daemon",
3
- "version": "1.28.3",
3
+ "version": "1.28.5",
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",
@@ -65,8 +65,8 @@
65
65
  "@anthropic-ai/bedrock-sdk": "^0.28.1",
66
66
  "@anthropic-ai/sdk": "^0.82.0",
67
67
  "@ast-grep/napi": "^0.42.0",
68
- "@pellux/goodvibes-sdk": "2.0.1",
69
- "@pellux/goodvibes-terminal-shell": "2.0.1",
68
+ "@pellux/goodvibes-sdk": "2.0.3",
69
+ "@pellux/goodvibes-terminal-shell": "2.0.3",
70
70
  "bash-language-server": "^5.6.0",
71
71
  "fuse.js": "^7.1.0",
72
72
  "graphql": "^16.13.2",
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.2';
9
+ let _version = '1.28.5';
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