@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 +7 -0
- package/dist/neo.mjs +14 -0
- package/package.json +1 -1
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(
|