@nemus-cli/nemus 0.2.3 → 0.2.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.4] - 2026-08-25
11
+
12
+ ### Changed
13
+
14
+ - Dependencies: `commander` 14 → 15 (runtime); dev tooling `@types/node` 22 → 26
15
+ and `vitest` 3 → 4.
16
+ - CI: pinned `actions/checkout` → v7, `actions/setup-node` → v7, and
17
+ `actions/github-script` → v9, which clears the "Node.js 20 is deprecated"
18
+ warnings on every run.
19
+
20
+ ### Deferred
21
+
22
+ - `react` 18 → 19 is held: `ink` 5's bundled `react-reconciler` targets React 18
23
+ internals, so React 19 needs the `ink` 7 major (a TUI-tested change).
24
+ - `inquirer` 8 → 14 and `inquirer-autocomplete-prompt` 2 → 3 are held: inquirer
25
+ v9+ split into `@inquirer/prompts`, so this is a code migration, not a bump.
26
+ - `typescript` 7 is held: it removes `moduleResolution: node10`, requiring a
27
+ `tsconfig` migration.
28
+
10
29
  ## [0.2.3] - 2026-08-25
11
30
 
12
31
  ### Fixed
@@ -106,7 +125,8 @@ Initial open-source release of **Nemus**.
106
125
  - Automatic retries with backoff on flaky network operations.
107
126
  - Optional shell integration (auto-cd on create + quick-navigate helper).
108
127
 
109
- [Unreleased]: https://github.com/me-public/nemus/compare/v0.2.3...HEAD
128
+ [Unreleased]: https://github.com/me-public/nemus/compare/v0.2.4...HEAD
129
+ [0.2.4]: https://github.com/me-public/nemus/compare/v0.2.3...v0.2.4
110
130
  [0.2.3]: https://github.com/me-public/nemus/compare/v0.2.2...v0.2.3
111
131
  [0.2.2]: https://github.com/me-public/nemus/compare/v0.2.1...v0.2.2
112
132
  [0.2.1]: https://github.com/me-public/nemus/compare/v0.2.0...v0.2.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nemus-cli/nemus",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
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",
@@ -66,7 +66,7 @@
66
66
  "dependencies": {
67
67
  "@modelcontextprotocol/sdk": "^1.26.0",
68
68
  "cli-progress": "^3.12.0",
69
- "commander": "^14.0.3",
69
+ "commander": "^15.0.0",
70
70
  "fuzzy": "^0.1.3",
71
71
  "ink": "^5.0.0",
72
72
  "ink-select-input": "^6.0.0",
@@ -74,17 +74,17 @@
74
74
  "inquirer": "^8.0.0",
75
75
  "inquirer-autocomplete-prompt": "^2.0.0",
76
76
  "markdown-table": "^3.0.3",
77
- "react": "^18.2.0",
77
+ "react": "^18.3.1",
78
78
  "zod": "^4.3.6"
79
79
  },
80
80
  "devDependencies": {
81
81
  "@types/cli-progress": "^3.11.0",
82
82
  "@types/inquirer": "^9.0.3",
83
83
  "@types/inquirer-autocomplete-prompt": "^2.0.0",
84
- "@types/node": "^22.14.0",
85
- "@types/react": "^18.2.0",
84
+ "@types/node": "^26.3.0",
85
+ "@types/react": "^18.3.31",
86
86
  "ts-node": "^10.9.1",
87
87
  "typescript": "^5.9.3",
88
- "vitest": "^3.0.0"
88
+ "vitest": "^4.1.11"
89
89
  }
90
90
  }