@neocompose/cli 0.9.2 → 0.9.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 CHANGED
@@ -7,6 +7,13 @@
7
7
  - Document the final relation-only world layer-link contract and keep the
8
8
  format-4 Hello World corpus free of the retired value-side binding field.
9
9
 
10
+ ## [0.9.3] - 2026-07-25
11
+
12
+ ### Fixed
13
+
14
+ - Re-lower provisional list rows as new value seeds during trusted source
15
+ verification instead of requiring them to exist in pulled state.
16
+
10
17
  ## [0.9.2] - 2026-07-24
11
18
 
12
19
  ### Fixed
package/dist/neo.mjs CHANGED
@@ -43239,6 +43239,20 @@ function lowerListValue(context, member, expression, base, source, inheritedEnvi
43239
43239
  continue;
43240
43240
  }
43241
43241
  const itemId = annotatedItemId;
43242
+ if (isPendingId(itemId) && context.state[`value:${itemId}`] === void 0) {
43243
+ ids.push(
43244
+ lowerPendingListItem(
43245
+ context,
43246
+ entryMember,
43247
+ element,
43248
+ source,
43249
+ `${String(base.id)}[${index}]`,
43250
+ member.listKind === "unordered" ? stringOrNull(base.id) : void 0,
43251
+ environment
43252
+ )
43253
+ );
43254
+ continue;
43255
+ }
43242
43256
  const child = valueBase(context, itemId);
43243
43257
  if (member.listKind === "unordered" && child.containerId !== base.id) {
43244
43258
  throw new Error(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neocompose/cli",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Neo Compose native project-source CLI with bidirectional sync.",
5
5
  "license": "MIT",
6
6
  "type": "module",