sf-decomposer 6.21.0 → 6.22.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.22.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.21.0...v6.22.0) (2026-05-13)
9
+
10
+
11
+ ### Features
12
+
13
+ * bump config-disassembler to support linux musl (x64 and arm64) ([#456](https://github.com/mcarvin8/sf-decomposer/issues/456)) ([e9c7429](https://github.com/mcarvin8/sf-decomposer/commit/e9c7429884029095299dd1de67970723e59192c5))
14
+
8
15
  ## [6.21.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.20.0...v6.21.0) (2026-05-13)
9
16
 
10
17
 
package/README.md CHANGED
@@ -77,11 +77,11 @@ A Salesforce CLI plugin that **decomposes** large metadata XML files into smalle
77
77
 
78
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
- | Platform | Architectures |
81
- | ----------- | ---------------------------------- |
82
- | **macOS** | x64 (Intel), arm64 (Apple Silicon) |
83
- | **Linux** | x64 (gnu), arm64 (gnu) |
84
- | **Windows** | x64, arm64, ia32 |
80
+ | Platform | Architectures |
81
+ | ----------- | ------------------------------------ |
82
+ | **macOS** | x64 (Intel), arm64 (Apple Silicon) |
83
+ | **Linux** | x64 (gnu + musl), arm64 (gnu + musl) |
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
 
@@ -342,5 +342,5 @@
342
342
  ]
343
343
  }
344
344
  },
345
- "version": "6.21.0"
345
+ "version": "6.22.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.21.0",
4
+ "version": "6.22.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": "^2.0.3",
10
+ "config-disassembler": "^2.1.0",
11
11
  "fast-xml-parser": "^5.7.2",
12
12
  "p-limit": "^7.3.0"
13
13
  },