@karmaniverous/jeeves-server 3.5.0 → 3.5.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
@@ -2,7 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
4
 
5
- #### [3.5.0](https://github.com/karmaniverous/jeeves-server/compare/service/3.4.2...3.5.0)
5
+ #### [3.5.1](https://github.com/karmaniverous/jeeves-server/compare/service/3.5.0...3.5.1)
6
+
7
+ - [51] Integrate descriptor.run from core v0.4.5 [`#137`](https://github.com/karmaniverous/jeeves-server/pull/137)
8
+ - chore: release @karmaniverous/jeeves-server-openclaw v0.6.0 [`bfa7501`](https://github.com/karmaniverous/jeeves-server/commit/bfa7501f80fb1c2c8a29f7e548b4092f1bc44395)
9
+ - [51] feat: integrate descriptor.run from core v0.4.5 [`74bebef`](https://github.com/karmaniverous/jeeves-server/commit/74bebef9adfe433621c1f4dd1b4877634ee65f6f)
10
+
11
+ #### [service/3.5.0](https://github.com/karmaniverous/jeeves-server/compare/service/3.4.2...service/3.5.0)
12
+
13
+ > 30 March 2026
6
14
 
7
15
  - Fix config validate test assertion [`#136`](https://github.com/karmaniverous/jeeves-server/pull/136)
8
16
  - [35] Component SDK adoption (core v0.4.4) + plugin/CLI factories [`#134`](https://github.com/karmaniverous/jeeves-server/pull/134)
@@ -24,6 +32,7 @@ All notable changes to this project will be documented in this file. Dates are d
24
32
  - [35] fix: resolve lint errors from core v0.4.4 migration [`4b0c11d`](https://github.com/karmaniverous/jeeves-server/commit/4b0c11d89f22a00f0f86583e484551682bb57c06)
25
33
  - [35] chore: bump @karmaniverous/jeeves to ^0.4.3, remove cosmiconfig dep [`8d3162b`](https://github.com/karmaniverous/jeeves-server/commit/8d3162b572167dcb5be5725956f37845d4518677)
26
34
  - [35] feat: define JeevesComponentDescriptor for server component [`16c5b56`](https://github.com/karmaniverous/jeeves-server/commit/16c5b56ffa3600f613562b5a5e3a08629c5b1b5a)
35
+ - chore: release @karmaniverous/jeeves-server v3.5.0 [`f41da11`](https://github.com/karmaniverous/jeeves-server/commit/f41da1126d2180996720107cfb340b47e1b50838)
27
36
  - [35] feat: use getBindAddress from core, replace localhost with 127.0.0.1 [`1df9dc6`](https://github.com/karmaniverous/jeeves-server/commit/1df9dc60df3ba838bc692ada8143eb06723a3671)
28
37
  - [35] docs: add title front matter to all guides [`840f9c7`](https://github.com/karmaniverous/jeeves-server/commit/840f9c77d0c746d13983931ec69185f935036ac6)
29
38
  - [35] fix: encode browse path segments in API calls, add SPA catch-all (#50, #127) [`dce3f11`](https://github.com/karmaniverous/jeeves-server/commit/dce3f111018937535f4e614208312653e5ea5f18)
@@ -28,6 +28,7 @@
28
28
  "@codemirror/state": "^6.6.0",
29
29
  "@codemirror/theme-one-dark": "^6.1.3",
30
30
  "@codemirror/view": "^6.40.0",
31
+ "@karmaniverous/jeeves": "^0.4.5",
31
32
  "@panzoom/panzoom": "^4.6.1",
32
33
  "@radix-ui/react-alert-dialog": "^1.1.15",
33
34
  "@radix-ui/react-dropdown-menu": "^2.1.16",
@@ -38,7 +38,7 @@ describe('jeeves-server config validate', () => {
38
38
  it('validates a valid config and prints success', async () => {
39
39
  const configPath = writeConfig(tmpDir, VALID_CONFIG);
40
40
  const { stdout } = await runCli(['config', 'validate', '-c', configPath]);
41
- expect(stdout).toContain('Configuration valid');
41
+ expect(stdout).toContain('Config is valid');
42
42
  });
43
43
  it('exits with error for invalid config', async () => {
44
44
  const configPath = writeConfig(tmpDir, { port: 1234 });
@@ -33,6 +33,11 @@ export const serverDescriptor = jeevesComponentDescriptorSchema.parse({
33
33
  const { resetConfig } = await import('./config/index.js');
34
34
  resetConfig();
35
35
  },
36
+ run: async (configPath) => {
37
+ const { initConfig } = await import('./config/index.js');
38
+ initConfig(configPath);
39
+ await import('./server.js');
40
+ },
36
41
  startCommand: (configPath) => [
37
42
  'node',
38
43
  startServerPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-server",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "Secure file browser, markdown viewer, and webhook gateway with PDF/DOCX export and expiring share links",
5
5
  "keywords": [
6
6
  "fastify",
@@ -49,7 +49,7 @@
49
49
  "@commander-js/extra-typings": "^14.0.0",
50
50
  "@fastify/cookie": "^11.0.2",
51
51
  "@fastify/static": "^8.3.0",
52
- "@karmaniverous/jeeves": "^0.4.4",
52
+ "@karmaniverous/jeeves": "^0.4.5",
53
53
  "@karmaniverous/jsonmap": "^0.3.1",
54
54
  "@mermaid-js/mermaid-cli": "^11.12.0",
55
55
  "@turbodocx/html-to-docx": "^1.1.0",
@@ -53,7 +53,7 @@ describe('jeeves-server config validate', () => {
53
53
  it('validates a valid config and prints success', async () => {
54
54
  const configPath = writeConfig(tmpDir, VALID_CONFIG);
55
55
  const { stdout } = await runCli(['config', 'validate', '-c', configPath]);
56
- expect(stdout).toContain('Configuration valid');
56
+ expect(stdout).toContain('Config is valid');
57
57
  });
58
58
 
59
59
  it('exits with error for invalid config', async () => {
package/src/descriptor.ts CHANGED
@@ -42,6 +42,11 @@ export const serverDescriptor = jeevesComponentDescriptorSchema.parse({
42
42
  const { resetConfig } = await import('./config/index.js');
43
43
  resetConfig();
44
44
  },
45
+ run: async (configPath: string) => {
46
+ const { initConfig } = await import('./config/index.js');
47
+ initConfig(configPath);
48
+ await import('./server.js');
49
+ },
45
50
  startCommand: (configPath: string) => [
46
51
  'node',
47
52
  startServerPath,