sf-decomposer 6.22.0 → 6.24.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 +14 -0
- package/README.md +3 -1
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@
|
|
|
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.24.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.23.0...v6.24.0) (2026-05-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **metadata:** bump config-disassembler from 2.1.0 to 2.2.0 ([#461](https://github.com/mcarvin8/sf-decomposer/issues/461)) ([d33652b](https://github.com/mcarvin8/sf-decomposer/commit/d33652b99fb97a8b2e948cdfa3d47958b7f187fa))
|
|
14
|
+
|
|
15
|
+
## [6.23.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.22.0...v6.23.0) (2026-05-14)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **metadata:** bump @salesforce/source-deploy-retrieve ([#458](https://github.com/mcarvin8/sf-decomposer/issues/458)) ([ff25271](https://github.com/mcarvin8/sf-decomposer/commit/ff25271cb1f509b59435f37e495a43c9b47f3a4b))
|
|
21
|
+
|
|
8
22
|
## [6.22.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.21.0...v6.22.0) (2026-05-13)
|
|
9
23
|
|
|
10
24
|
|
package/README.md
CHANGED
|
@@ -321,7 +321,7 @@ Custom labels are always decomposed with `unique-id` (grouped-by-tag would be a
|
|
|
321
321
|
|
|
322
322
|
```
|
|
323
323
|
labels/
|
|
324
|
-
├── CustomLabels.labels-meta.xml ← original
|
|
324
|
+
├── CustomLabels.labels-meta.xml ← original file (safe to delete after decompose)
|
|
325
325
|
├── quoteAuto.label-meta.xml ← one file per <labels> entry, named by fullName
|
|
326
326
|
└── quoteManual.label-meta.xml
|
|
327
327
|
```
|
|
@@ -409,6 +409,8 @@ Use the metadata **suffix** for `-m` / `--metadata-type`, as in [SDR’s metadat
|
|
|
409
409
|
| Marketing App Extension | `marketingappextension` | |
|
|
410
410
|
| Loyalty Program Setup | `loyaltyProgramSetup` | Only `unique-id` strategy supported; `grouped-by-tag` is overridden. Automatically decomposed further (see [Loyalty Program Setup](#loyalty-program-setup-decomposition)). |
|
|
411
411
|
|
|
412
|
+
The supported metadata table above provides a quick reference for some types. For a comprehensive breakdown of supported, leaf-only, and unsupported metadata types — including multi-level decomposition patterns, Salesforce native decomposition conflicts, and adapter strategy limitations — see [**METADATA_COVERAGE.md**](./METADATA_COVERAGE.md).
|
|
413
|
+
|
|
412
414
|
### Exceptions
|
|
413
415
|
|
|
414
416
|
| Situation | Message |
|
package/oclif.manifest.json
CHANGED
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.
|
|
4
|
+
"version": "6.24.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
|
-
"@salesforce/source-deploy-retrieve": "^12.35.
|
|
10
|
-
"config-disassembler": "^2.
|
|
9
|
+
"@salesforce/source-deploy-retrieve": "^12.35.9",
|
|
10
|
+
"config-disassembler": "^2.2.0",
|
|
11
11
|
"fast-xml-parser": "^5.7.2",
|
|
12
12
|
"p-limit": "^7.3.0"
|
|
13
13
|
},
|