altium-toolkit 1.4.0 → 1.4.1

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/README.md CHANGED
@@ -45,6 +45,12 @@ deeply frozen without a redundant defensive graph copy. Parser parameters,
45
45
  document envelopes, extension fields, and return shapes remain unchanged. See
46
46
  the [1.4.0 release notes](docs/release-notes-v1.4.0.md).
47
47
 
48
+ Version 1.4.1 re-exports the canonical `SelfAdjustingComputation` runtime from
49
+ CircuitJSON Toolkit 1.4.1. Persistent Altium consumers can retain dependency
50
+ traces across input edits without changing parser, document, renderer, or
51
+ native-extension contracts. See the
52
+ [1.4.1 release notes](docs/release-notes-v1.4.1.md).
53
+
48
54
  Default `extensions: 'canonical'` keeps compact Altium summary metadata.
49
55
  Request the complete native read model with `extensions: 'full'`,
50
56
  `preserveRaw: true`, or `extensions: ['altium.native-model']`. Project batches
@@ -212,6 +218,7 @@ const legacyCircuitJson = AltiumParser.parseArrayBuffer(file.name, arrayBuffer)
212
218
  - [API](docs/api.md)
213
219
  - [Capabilities](docs/capabilities.md)
214
220
  - [Migration from 1.1.41](docs/migration.md)
221
+ - [1.4.1 release notes](docs/release-notes-v1.4.1.md)
215
222
  - [1.4.0 release notes](docs/release-notes-v1.4.0.md)
216
223
  - [1.3.0 release notes](docs/release-notes-v1.3.0.md)
217
224
  - [1.2.1 release notes](docs/release-notes-v1.2.1.md)
package/docs/api.md CHANGED
@@ -13,7 +13,7 @@ the method documents a narrower input.
13
13
 
14
14
  ## Entrypoints
15
15
 
16
- The root exports exactly these 17 shared classes:
16
+ The root exports exactly these 18 shared classes:
17
17
 
18
18
  - `Parser`, `ProjectLoader`, `CircuitJsonDocument`,
19
19
  `CircuitJsonDocumentContext`, `CircuitJsonIndexer`, and `CircuitJsonUnits`
@@ -22,6 +22,7 @@ The root exports exactly these 17 shared classes:
22
22
  - `ManufacturingService` and `SimulationService`
23
23
  - `PcbScene3dBuilder` and `PcbScene3dPreparator`
24
24
  - `ToolkitCapabilities` and `ToolkitError`
25
+ - `SelfAdjustingComputation`
25
26
 
26
27
  Specialized entrypoints are also available:
27
28
 
@@ -0,0 +1,29 @@
1
+ # altium-toolkit 1.4.1
2
+
3
+ Version 1.4.1 exposes the shared self-adjusting computation runtime throughout
4
+ the ECAD toolkit family while preserving every Altium parsing and rendering
5
+ contract.
6
+
7
+ ## Shared incremental runtime
8
+
9
+ - The root entrypoint re-exports `SelfAdjustingComputation` from
10
+ `circuitjson-toolkit` 1.4.1.
11
+ - The runtime records dynamic data and control dependencies, invalidates only
12
+ changed reader traces, replaces stale branches, and reclaims retired graph
13
+ nodes explicitly.
14
+ - Persistent consumers can update mutable input cells and stabilize affected
15
+ computations without rebuilding unrelated derived work.
16
+
17
+ ## Compatibility
18
+
19
+ - Parser options, immutable document and project envelopes, native extension
20
+ namespaces, renderer output, workers, and service return shapes are
21
+ unchanged.
22
+ - The release contains no Altium-specific incremental special cases; it shares
23
+ the canonical runtime object used by the other toolkits.
24
+
25
+ ## Verification
26
+
27
+ - API tests prove that the root export is the canonical CircuitJSON runtime.
28
+ - Release gates include the complete package suite, formatting, performance
29
+ checks, feature-preservation validation, and npm package dry run.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "altium-toolkit",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Altium document parsing and non-interactive rendering utilities",
5
5
  "keywords": [
6
6
  "altium",
@@ -67,7 +67,7 @@
67
67
  "check:features": "node scripts/check-feature-preservation.mjs"
68
68
  },
69
69
  "dependencies": {
70
- "circuitjson-toolkit": "^1.4.0",
70
+ "circuitjson-toolkit": "^1.4.1",
71
71
  "fflate": "^0.8.2"
72
72
  },
73
73
  "devDependencies": {
package/src/index.mjs CHANGED
@@ -14,6 +14,7 @@ export {
14
14
  PcbSvgRenderer,
15
15
  QueryService,
16
16
  SchematicSvgRenderer,
17
+ SelfAdjustingComputation,
17
18
  SimulationService,
18
19
  ToolkitError
19
20
  } from 'circuitjson-toolkit'