@habitat-ai/cli 0.5.7 → 0.5.10

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/README.md CHANGED
@@ -46,3 +46,20 @@ bunx nx migrate --run-migrations
46
46
  The first command updates the fixed CLI/SDK pair and writes any applicable
47
47
  Habitat migrations. The final command applies those package-owned repository
48
48
  changes; no consumer copies or independently maintains the preset wiring.
49
+
50
+ Habitat `0.5.3` used Nx `23.1.0`, whose provenance reader predates npm 12. When
51
+ that exact historical pair is upgraded under npm 12, pin the migration CLI and
52
+ scope Nx's documented compatibility flag to both migration commands. The first
53
+ command generates the migration; the install materializes the released pair;
54
+ the final command applies the repository changes:
55
+
56
+ ```sh
57
+ NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
58
+ bunx nx migrate @habitat-ai/cli@0.5.10
59
+ bun install
60
+ NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
61
+ bunx nx migrate --run-migrations=migrations.json --no-interactive
62
+ ```
63
+
64
+ Only the historical Nx `23.1.0` upgrade needs that compatibility scope. Nx
65
+ `23.1.1` and later verify provenance normally.
@@ -99,5 +99,5 @@
99
99
  ]
100
100
  }
101
101
  },
102
- "version": "0.5.7"
102
+ "version": "0.5.10"
103
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@habitat-ai/cli",
3
- "version": "0.5.7",
3
+ "version": "0.5.10",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -60,7 +60,7 @@
60
60
  "test": "vitest run --project habitat-cli"
61
61
  },
62
62
  "dependencies": {
63
- "@habitat-ai/sdk": "0.5.7",
63
+ "@habitat-ai/sdk": "0.5.10",
64
64
  "@nx/devkit": "23.1.1",
65
65
  "@oclif/core": "^4.13.2",
66
66
  "@oclif/plugin-help": "^6.2.27",