@neocompose/cli 0.6.1 → 0.6.3
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 +17 -0
- package/README.md +3 -0
- package/dist/neo.mjs +1059 -80
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.3] - 2026-07-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Generate readable NeoFlow linked-value aliases from custom values' non-empty
|
|
8
|
+
`Name` string members, using PascalCase for dialogue members and camelCase
|
|
9
|
+
for node-scoped bindings.
|
|
10
|
+
|
|
11
|
+
## [0.6.2] - 2026-07-19
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Follow large `neo push` operations as one durable server transaction,
|
|
16
|
+
reporting bounded preparation/apply progress until commit and recovering the
|
|
17
|
+
same assigned IDs and result records after reconnect. Ctrl-C now leaves the
|
|
18
|
+
server job running without mutating the local working copy.
|
|
19
|
+
|
|
3
20
|
## [0.6.0] - 2026-07-19
|
|
4
21
|
|
|
5
22
|
### Added
|
package/README.md
CHANGED
|
@@ -372,6 +372,9 @@ neo status
|
|
|
372
372
|
neo push --dry-run
|
|
373
373
|
```
|
|
374
374
|
|
|
375
|
+
Custom linked values prefer a non-empty string member named `Name`, using
|
|
376
|
+
PascalCase at dialogue scope and camelCase inside nodes.
|
|
377
|
+
|
|
375
378
|
The reset leaves the regenerated names as local changes. IDs are unchanged,
|
|
376
379
|
and nothing is written to the server until `neo push` succeeds.
|
|
377
380
|
|