@neocompose/cli 0.26.4 → 0.27.0
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 +53 -0
- package/README.md +1 -0
- package/dist/neo.mjs +882 -248
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +4 -2
- package/skills/neocompose-cli/references/cli-development.md +1 -1
- package/skills/neocompose-cli/references/commands-and-sync.md +11 -0
- package/skills/neocompose-cli/references/values-identities-and-references.md +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.27.0] - 2026-08-10
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- `neo logout [--api <url>]`: targeted local credential deletion for exactly
|
|
8
|
+
one API origin — the namespaced OS-keychain entry and the credentials-file
|
|
9
|
+
row — plus best-effort server session revocation. Other origins, other
|
|
10
|
+
namespaces, and the rest of the config home are never touched.
|
|
11
|
+
- `NEO_COMPOSE_CONFIG_HOME`: an absolute directory that replaces
|
|
12
|
+
`$XDG_CONFIG_HOME/neo-compose` for Neo credential state only, so isolated
|
|
13
|
+
environments (P53 agent rigs) keep their own credential store without
|
|
14
|
+
changing the ambient XDG configuration of unrelated tools.
|
|
15
|
+
- `NEO_COMPOSE_CREDENTIAL_NAMESPACE`: scopes the OS-keychain account
|
|
16
|
+
(`<namespace>::<api origin>`) so isolated environments sharing one OS user
|
|
17
|
+
cannot read or delete each other's tokens.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- The credential-store docstring described a two-level precedence with the
|
|
22
|
+
OS keychain "layering in later"; the keychain layer has existed for some
|
|
23
|
+
time. The docstring now matches the real precedence (env var, then
|
|
24
|
+
keychain, then credentials file) and documents that the metadata row is
|
|
25
|
+
written even when the keychain holds the token.
|
|
26
|
+
|
|
27
|
+
## [0.26.5] - 2026-08-10
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Make Class construction incremental: journal newly-created Session rows and
|
|
32
|
+
constructor ownership edges, validate only ownership that changed, and avoid
|
|
33
|
+
rebuilding evaluator indexes for builder-proven fresh graphs.
|
|
34
|
+
- Cache immutable constructor descriptors, generic environments, resolved
|
|
35
|
+
members, initializer validation, and scalar materialization plans across a
|
|
36
|
+
shared project runtime. Constructor publication now keeps inherited storage
|
|
37
|
+
declarations sparse and skips graph passes when no assignment could orphan
|
|
38
|
+
a default value.
|
|
39
|
+
- Reduce per-row allocation overhead with one invocation timestamp and direct
|
|
40
|
+
scalar factories. The animation-shaped regression fixture (259 constructors,
|
|
41
|
+
1,166 Session rows) measured as low as 7.94ms warm median and 11.91ms cold
|
|
42
|
+
median across the final clean benchmark waves.
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- Preserve an existing localized-text identity when editing a localizable class
|
|
47
|
+
member default. Canonical source now renders the main-locale prose instead of
|
|
48
|
+
its storage ID, while edits retain translations, comments, and review state;
|
|
49
|
+
legacy inline defaults remain supported.
|
|
50
|
+
- Group authored member value seeds under their `.neo` source in `neo status`
|
|
51
|
+
and `neo diff`, include them in JSON output, and no longer report a seed-only
|
|
52
|
+
diff as clean.
|
|
53
|
+
- Accept an empty main-locale string in an authored value seed. Empty required
|
|
54
|
+
string defaults can now materialize without a misleading schema-commit 400.
|
|
55
|
+
|
|
3
56
|
## [0.26.4] - 2026-08-10
|
|
4
57
|
|
|
5
58
|
### Fixed
|
package/README.md
CHANGED
|
@@ -419,6 +419,7 @@ authorization boundary.
|
|
|
419
419
|
| `--version` | Print the installed CLI package version. |
|
|
420
420
|
| `login` | Authenticate the selected profile. |
|
|
421
421
|
| `whoami` | Inspect the selected profile. |
|
|
422
|
+
| `logout [--api <url>]` | Delete the stored credential for one API origin and revoke its session. |
|
|
422
423
|
| `init --project <id> [--version <id>]` | Create a format-4 working copy and perform its first reset pull. |
|
|
423
424
|
| `doctor` | Validate format/compiler/editor/source/file contracts; no .NET discovery. |
|
|
424
425
|
| `pull [--force\|--reset] [--regenerate-source-names]` | Merge remote changes or regenerate canonical source, names, and binaries. |
|