@neocompose/cli 0.9.3 → 0.9.4

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.4] - 2026-07-25
11
+
12
+ ### Fixed
13
+
14
+ - Preserve provisional list-item subtree identities when canonical source
15
+ reorders an unordered list during trusted server verification.
16
+
10
17
  ## [0.9.3] - 2026-07-25
11
18
 
12
19
  ### Fixed
package/dist/neo.mjs CHANGED
@@ -40297,11 +40297,43 @@ var init_dialogue_db_response_types = __esm({
40297
40297
  }
40298
40298
  });
40299
40299
 
40300
+ // ../src/common/benchmark.ts
40301
+ var init_benchmark = __esm({
40302
+ "../src/common/benchmark.ts"() {
40303
+ "use strict";
40304
+ }
40305
+ });
40306
+
40307
+ // ../src/common/error-message.ts
40308
+ var init_error_message = __esm({
40309
+ "../src/common/error-message.ts"() {
40310
+ "use strict";
40311
+ }
40312
+ });
40313
+
40314
+ // ../src/common/retree-input-diagnostics.ts
40315
+ var init_retree_input_diagnostics = __esm({
40316
+ "../src/common/retree-input-diagnostics.ts"() {
40317
+ "use strict";
40318
+ }
40319
+ });
40320
+
40321
+ // ../src/common/index.ts
40322
+ var init_common = __esm({
40323
+ "../src/common/index.ts"() {
40324
+ "use strict";
40325
+ init_benchmark();
40326
+ init_error_message();
40327
+ init_retree_input_diagnostics();
40328
+ }
40329
+ });
40330
+
40300
40331
  // ../src/models/dialogue/dialogue-triggering.ts
40301
40332
  var DEFAULT_RECENCY_HALF_LIFE_SECONDS;
40302
40333
  var init_dialogue_triggering = __esm({
40303
40334
  "../src/models/dialogue/dialogue-triggering.ts"() {
40304
40335
  "use strict";
40336
+ init_common();
40305
40337
  init_dialogue_group_types();
40306
40338
  DEFAULT_RECENCY_HALF_LIFE_SECONDS = 60 * 60 * 24;
40307
40339
  }
@@ -43271,12 +43303,16 @@ function lowerListValue(context, member, expression, base, source, inheritedEnvi
43271
43303
  function lowerPendingListItem(context, member, expression, source, path, containerId, environment) {
43272
43304
  const rows = /* @__PURE__ */ new Map();
43273
43305
  const localizedTexts = /* @__PURE__ */ new Map();
43274
- const valueId = lowerSeedChild(
43306
+ const annotatedId = annotatedValue(expression).id;
43307
+ const valueId = annotatedId ?? pendingNestedValueId(source, path);
43308
+ const stablePath = isPendingId(valueId) ? valueId : path;
43309
+ lowerSeedRow(
43275
43310
  context,
43276
43311
  member,
43277
43312
  expression,
43278
43313
  source,
43279
- path,
43314
+ valueId,
43315
+ stablePath,
43280
43316
  rows,
43281
43317
  localizedTexts,
43282
43318
  containerId ?? void 0,
@@ -43882,9 +43918,13 @@ function pendingValueId(binding, name) {
43882
43918
  return `__pending__:value:${encodeURIComponent(binding.source.uri)}:${binding.source.range.start.line}:${binding.source.range.start.character}:${encodeURIComponent(name)}`;
43883
43919
  }
43884
43920
  function pendingNestedValueId(binding, path) {
43921
+ if (path.startsWith("__pending__:value:")) return path;
43885
43922
  return `__pending__:value:${encodeURIComponent(binding.source.uri)}:${binding.source.range.start.line}:${binding.source.range.start.character}:${encodeURIComponent(path)}`;
43886
43923
  }
43887
43924
  function pendingLocalizedTextId(binding, path) {
43925
+ if (path.startsWith("__pending__:value:")) {
43926
+ return `__pending__:localized-text:${path.slice("__pending__:value:".length)}`;
43927
+ }
43888
43928
  return `__pending__:localized-text:${encodeURIComponent(binding.source.uri)}:${binding.source.range.start.line}:${binding.source.range.start.character}:${encodeURIComponent(path)}`;
43889
43929
  }
43890
43930
  function classMemberByName(context, classId, name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neocompose/cli",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "description": "Neo Compose native project-source CLI with bidirectional sync.",
5
5
  "license": "MIT",
6
6
  "type": "module",