sf-decomposer 6.20.0 → 6.21.0

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
@@ -5,6 +5,13 @@
5
5
 
6
6
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
7
7
 
8
+ ## [6.21.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.20.0...v6.21.0) (2026-05-13)
9
+
10
+
11
+ ### Features
12
+
13
+ * bump config-disassembler to v2 (per-platform optional deps) ([#454](https://github.com/mcarvin8/sf-decomposer/issues/454)) ([9287f27](https://github.com/mcarvin8/sf-decomposer/commit/9287f27ca09f1be76c6fc67df53f40828a81e585))
14
+
8
15
  ## [6.20.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.19.0...v6.20.0) (2026-05-13)
9
16
 
10
17
 
package/README.md CHANGED
@@ -75,13 +75,13 @@ A Salesforce CLI plugin that **decomposes** large metadata XML files into smalle
75
75
 
76
76
  ### Supported Platforms
77
77
 
78
- sf-decomposer depends on [config-disassembler-node](https://github.com/mcarvin8/config-disassembler-node), which includes prebuilt native binaries for:
78
+ sf-decomposer depends on [config-disassembler-node](https://github.com/mcarvin8/config-disassembler-node), which ships prebuilt native binaries as platform-specific optional npm packages — your package manager installs only the one matching your `os` / `cpu` / `libc`:
79
79
 
80
80
  | Platform | Architectures |
81
81
  | ----------- | ---------------------------------- |
82
82
  | **macOS** | x64 (Intel), arm64 (Apple Silicon) |
83
- | **Linux** | x64, arm64, ia32 |
84
- | **Windows** | x64, arm64 |
83
+ | **Linux** | x64 (gnu), arm64 (gnu) |
84
+ | **Windows** | x64, arm64, ia32 |
85
85
 
86
86
  If your platform or architecture is not listed, please open an [issue](https://github.com/mcarvin8/sf-decomposer/issues).
87
87
 
@@ -671,7 +671,7 @@ Bugs and feature requests: open an [issue](https://github.com/mcarvin8/sf-decomp
671
671
 
672
672
  ## Built With
673
673
 
674
- - [config-disassembler-node](https://github.com/mcarvin8/config-disassembler-node) – Disassemble XML (and other config formats) into smaller, manageable files and reassemble when needed. Node.js + Rust (Neon). See [Requirements](#requirements).
674
+ - [config-disassembler-node](https://github.com/mcarvin8/config-disassembler-node) – Disassemble XML (and other config formats) into smaller, manageable files and reassemble when needed. Node.js + Rust (NAPI-RS). See [Requirements](#requirements).
675
675
  - [@salesforce/source-deploy-retrieve](https://github.com/forcedotcom/source-deploy-retrieve) – JavaScript toolkit for working with Salesforce metadata.
676
676
 
677
677
  ---
@@ -342,5 +342,5 @@
342
342
  ]
343
343
  }
344
344
  },
345
- "version": "6.20.0"
345
+ "version": "6.21.0"
346
346
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "sf-decomposer",
3
3
  "description": "Split large Salesforce metadata files into version-control-friendly pieces and rebuild deployment-ready files.",
4
- "version": "6.20.0",
4
+ "version": "6.21.0",
5
5
  "dependencies": {
6
6
  "@oclif/core": "^4",
7
7
  "@salesforce/core": "^8.26.3",
8
8
  "@salesforce/sf-plugins-core": "^12.2.6",
9
9
  "@salesforce/source-deploy-retrieve": "^12.35.0",
10
- "config-disassembler": "^1.5.0",
10
+ "config-disassembler": "^2.0.3",
11
11
  "fast-xml-parser": "^5.7.2",
12
12
  "p-limit": "^7.3.0"
13
13
  },