@nemus-cli/nemus 0.2.7 → 0.2.8

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
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.8] - 2026-08-26
11
+
12
+ ### Changed
13
+
14
+ - Upgraded **ink 5 → 7** and **React 18 → 19** (with `@types/react` 19). The
15
+ dashboard TUI renders through the same CJS/ESM bridge (`sidebar.js` does the
16
+ real `await import('ink')`; components receive `Box`/`Text`/`useInput`/`useApp`
17
+ as props). Verified: build, typecheck, 433 unit tests, and a live pty render of
18
+ the dashboard sidebar. No user-facing change.
19
+
10
20
  ## [0.2.7] - 2026-08-25
11
21
 
12
22
  ### Changed
@@ -171,7 +181,8 @@ Initial open-source release of **Nemus**.
171
181
  - Automatic retries with backoff on flaky network operations.
172
182
  - Optional shell integration (auto-cd on create + quick-navigate helper).
173
183
 
174
- [Unreleased]: https://github.com/me-public/nemus/compare/v0.2.7...HEAD
184
+ [Unreleased]: https://github.com/me-public/nemus/compare/v0.2.8...HEAD
185
+ [0.2.8]: https://github.com/me-public/nemus/compare/v0.2.7...v0.2.8
175
186
  [0.2.7]: https://github.com/me-public/nemus/compare/v0.2.6...v0.2.7
176
187
  [0.2.6]: https://github.com/me-public/nemus/compare/v0.2.5...v0.2.6
177
188
  [0.2.5]: https://github.com/me-public/nemus/compare/v0.2.4...v0.2.5
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * This is a plain .js file (not .ts) to preserve the real dynamic import().
6
6
  * TypeScript compiles `await import('ink')` into `require('ink')` in CJS mode,
7
- * which fails because ink v5 is ESM-only with top-level await.
7
+ * which fails because ink v7 is ESM-only with top-level await.
8
8
  *
9
9
  * By keeping this as .js, tsc copies it as-is to dist/ and the real
10
10
  * import() call is preserved at runtime.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nemus-cli/nemus",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Nemus — a CLI for managing multi-repository workspaces. Create, sync, and operate across dozens of repos with a single command, and wire them up to your favorite coding agent.",
5
5
  "keywords": [
6
6
  "workspace",
@@ -68,11 +68,11 @@
68
68
  "cli-progress": "^3.12.0",
69
69
  "commander": "^15.0.0",
70
70
  "fuzzy": "^0.1.3",
71
- "ink": "^5.0.0",
71
+ "ink": "^7.1.1",
72
72
  "inquirer": "^8.0.0",
73
73
  "inquirer-autocomplete-prompt": "^2.0.0",
74
74
  "markdown-table": "^3.0.3",
75
- "react": "^18.3.1",
75
+ "react": "^19.2.8",
76
76
  "zod": "^4.3.6"
77
77
  },
78
78
  "devDependencies": {
@@ -80,7 +80,7 @@
80
80
  "@types/inquirer": "^9.0.3",
81
81
  "@types/inquirer-autocomplete-prompt": "^2.0.0",
82
82
  "@types/node": "^26.3.0",
83
- "@types/react": "^18.3.31",
83
+ "@types/react": "^19.2.2",
84
84
  "ts-node": "^10.9.1",
85
85
  "typescript": "^5.9.3",
86
86
  "vitest": "^4.1.11"
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Shared types for ink dashboard components.
3
3
  * ink components are passed as props to avoid direct ESM imports
4
- * (ink v5 is ESM-only; the project uses CJS).
4
+ * (ink v7 is ESM-only; the project uses CJS).
5
5
  */
6
6
  import { FC } from 'react';
7
7
  import { BoxProps, TextProps, Key } from 'ink';
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * This is a plain .js file (not .ts) to preserve the real dynamic import().
6
6
  * TypeScript compiles `await import('ink')` into `require('ink')` in CJS mode,
7
- * which fails because ink v5 is ESM-only with top-level await.
7
+ * which fails because ink v7 is ESM-only with top-level await.
8
8
  *
9
9
  * By keeping this as .js, tsc copies it as-is to dist/ and the real
10
10
  * import() call is preserved at runtime.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Type declarations for ink v5 (ESM package used via dynamic import).
2
+ * Type declarations for ink v7 (ESM package used via dynamic import).
3
3
  * Provides basic types for the components and hooks we use.
4
4
  * Full types live in node_modules/ink/build/index.d.ts but can't be
5
5
  * resolved with moduleResolution: "node".