sf-decomposer 6.0.2 → 6.0.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
@@ -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.0.3](https://github.com/mcarvin8/sf-decomposer/compare/v6.0.2...v6.0.3) (2026-02-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump xml-disassembler for multi-level disassembly fixes and path standardization ([2b7eaf8](https://github.com/mcarvin8/sf-decomposer/commit/2b7eaf8987bb6059fae0139b066503da426416e8))
14
+
8
15
  ## [6.0.2](https://github.com/mcarvin8/sf-decomposer/compare/v6.0.1...v6.0.2) (2026-02-12)
9
16
 
10
17
 
package/README.md CHANGED
@@ -31,6 +31,7 @@ A Salesforce CLI plugin that **decomposes** large metadata XML files into smalle
31
31
  - [.sfdecomposerignore](#sfdecomposerignore)
32
32
  - [.gitignore](#gitignore)
33
33
  - [Issues](#issues)
34
+ - [Requirements](#requirements)
34
35
  - [Built With](#built-with)
35
36
  - [Contributing](#contributing)
36
37
  - [License](#license)
@@ -68,6 +69,20 @@ A Salesforce CLI plugin that **decomposes** large metadata XML files into smalle
68
69
 
69
70
  ---
70
71
 
72
+ ## Requirements
73
+
74
+ The [xml-disassembler](https://github.com/mcarvin8/xml-disassembler) dependency ships with native binaries for these platforms:
75
+
76
+ | Platform | Architectures |
77
+ | ----------- | ---------------------------------- |
78
+ | **macOS** | x64 (Intel), arm64 (Apple Silicon) |
79
+ | **Linux** | x64, arm64, ia32 |
80
+ | **Windows** | x64 |
81
+
82
+ Other platforms may require building the Rust extension from source (see the xml-disassembler repo).
83
+
84
+ ---
85
+
71
86
  ## Why sf-decomposer?
72
87
 
73
88
  Salesforce’s built-in decomposition is limited. sf-decomposer gives admins and developers more control, flexibility, and better versioning.
@@ -317,7 +332,7 @@ Bugs and feature requests: [open an issue](https://github.com/mcarvin8/sf-decomp
317
332
 
318
333
  ## Built With
319
334
 
320
- - [xml-disassembler](https://github.com/mcarvin8/xml-disassembler) – Disassemble XML into smaller, manageable files and reassemble when needed. Node.js + Rust (Neon).
335
+ - [xml-disassembler](https://github.com/mcarvin8/xml-disassembler) – Disassemble XML into smaller, manageable files and reassemble when needed. Node.js + Rust (Neon). Includes prebuilt binaries for macOS (x64, arm64), Linux (x64, arm64, ia32), and Windows (x64).
321
336
  - [fs-extra](https://github.com/jprichardson/node-fs-extra) – Node.js: extra methods for the `fs` object like copy(), remove(), mkdirs().
322
337
  - [@salesforce/source-deploy-retrieve](https://github.com/forcedotcom/source-deploy-retrieve) – JavaScript toolkit for working with Salesforce metadata.
323
338
 
package/oclif.lock CHANGED
@@ -10187,10 +10187,10 @@ ws@^8.15.0:
10187
10187
  resolved "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz"
10188
10188
  integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==
10189
10189
 
10190
- xml-disassembler@^2.2.1:
10191
- version "2.2.1"
10192
- resolved "https://registry.yarnpkg.com/xml-disassembler/-/xml-disassembler-2.2.1.tgz#fd94680b4f5748070678bf4e4f2fd914a5512e84"
10193
- integrity sha512-GBjsis9xSh3ti/eTJx8Jvz1op25a+uIu1/ggSawPEX/iupg2h62eeJCP1qAK8Ph8EqBIBfgzUyGBZ5ZpdhuqWA==
10190
+ xml-disassembler@^2.2.2:
10191
+ version "2.2.2"
10192
+ resolved "https://registry.yarnpkg.com/xml-disassembler/-/xml-disassembler-2.2.2.tgz#44b353f49ce49fc7ad90616b5fa8bc4cf802b7cd"
10193
+ integrity sha512-zEwP6QH8mioG94i7ed8Ocv03kuE00ROo8BzBEwYS0by93VEn+SqQF3oN4IonFDnouwST/F/2vJaeDPZ10mgp/w==
10194
10194
  dependencies:
10195
10195
  fs-extra "^11.2.0"
10196
10196
  tslib "^2.6.2"
@@ -191,5 +191,5 @@
191
191
  ]
192
192
  }
193
193
  },
194
- "version": "6.0.2"
194
+ "version": "6.0.3"
195
195
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-decomposer",
3
3
  "description": "Break down large Salesforce metadata files into smaller, more manageable files for version control and then recreate deployment-compatible files.",
4
- "version": "6.0.2",
4
+ "version": "6.0.3",
5
5
  "dependencies": {
6
6
  "@oclif/core": "^4",
7
7
  "@salesforce/core": "^8.25.0",
@@ -9,7 +9,7 @@
9
9
  "@salesforce/source-deploy-retrieve": "^12.31.10",
10
10
  "fs-extra": "^11.3.3",
11
11
  "p-limit": "^7.2.0",
12
- "xml-disassembler": "^2.2.1"
12
+ "xml-disassembler": "^2.2.2"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@commitlint/cli": "^20.4.0",