@legioncodeinc/honeycomb 0.1.10 → 0.1.11

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.
@@ -2,7 +2,7 @@
2
2
  import { createServer } from "node:http";
3
3
 
4
4
  // dist/src/shared/constants.js
5
- var HONEYCOMB_VERSION = true ? "0.1.10" : "0.0.0-dev";
5
+ var HONEYCOMB_VERSION = true ? "0.1.11" : "0.0.0-dev";
6
6
 
7
7
  // dist/embeddings/src/index.js
8
8
  var EMBED_DIMS = 768;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "honeycomb",
3
3
  "description": "Honeycomb — persistent memory for Claude Code sessions via the local Honeycomb daemon",
4
- "version": "0.1.10",
4
+ "version": "0.1.11",
5
5
  "author": {
6
6
  "name": "Honeycomb"
7
7
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "honeycomb-codex",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Honeycomb — persistent shared memory for OpenAI Codex CLI via the local Honeycomb daemon",
5
5
  "type": "module",
6
6
  "license": "MIT"
@@ -3,7 +3,7 @@ globalThis.__honeycomb_tuning__ ??= {};
3
3
  // src/shared/constants.ts
4
4
  var DAEMON_PORT = 3850;
5
5
  var DAEMON_HOST = "127.0.0.1";
6
- var HONEYCOMB_VERSION = true ? "0.1.10" : "0.0.0-dev";
6
+ var HONEYCOMB_VERSION = true ? "0.1.11" : "0.0.0-dev";
7
7
 
8
8
  // src/daemon-client/index.ts
9
9
  function createDaemonClient(endpoint) {
@@ -43,5 +43,5 @@
43
43
  }
44
44
  }
45
45
  },
46
- "version": "0.1.10"
46
+ "version": "0.1.11"
47
47
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "honeycomb-openclaw",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "description": "Honeycomb — persistent shared memory for AI agents, OpenClaw harness",
6
6
  "license": "MIT",
@@ -6892,7 +6892,7 @@ var require_dist = __commonJS({
6892
6892
  // dist/src/shared/constants.js
6893
6893
  var DAEMON_PORT = 3850;
6894
6894
  var DAEMON_HOST = "127.0.0.1";
6895
- var HONEYCOMB_VERSION = true ? "0.1.10" : "0.0.0-dev";
6895
+ var HONEYCOMB_VERSION = true ? "0.1.11" : "0.0.0-dev";
6896
6896
 
6897
6897
  // dist/src/daemon-client/index.js
6898
6898
  function createDaemonClient(endpoint) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legioncodeinc/honeycomb",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "//go-public": "Go-public switches are flipped: scoped name, public+provenance publishConfig live, `private` removed. CI auth is npm Trusted Publishing (OIDC); there is NO NPM_TOKEN. The go-live procedure is RELEASING.md 'Cut the release': the first publish is a one-time manual 2FA bootstrap that creates the package, after which every CI publish from release.yaml is tokenless OIDC.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -78,7 +78,10 @@
78
78
  "ci": "npm run typecheck && npm run dup && npm run test && npm run audit:sql",
79
79
  "postinstall": "node scripts/ensure-tree-sitter.mjs && node scripts/ensure-embed-deps.mjs",
80
80
  "prepack": "npm run build",
81
- "smoke:daemon-bundle": "node scripts/smoke-daemon-bundle.mjs"
81
+ "smoke:daemon-bundle": "node scripts/smoke-daemon-bundle.mjs",
82
+ "smoke:local-queue-upgrade": "node --experimental-sqlite scripts/local-queue-upgrade-smoke.mjs",
83
+ "smoke:local-queue-packaged-upgrade": "node --experimental-sqlite scripts/local-queue-packaged-upgrade-smoke.mjs",
84
+ "smoke:local-queue-packaged-live-proof": "node --experimental-sqlite scripts/local-queue-packaged-live-proof.mjs"
82
85
  },
83
86
  "devDependencies": {
84
87
  "@biomejs/biome": "^2.5.0",