sf-decomposer 7.3.4 → 7.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/CHANGELOG.md +14 -0
- package/README.md +4 -3
- package/lib/metadata/registry/metadataRegistry.json +1 -0
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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
|
+
## [7.4.1](https://github.com/mcarvin8/sf-decomposer/compare/v7.4.0...v7.4.1) (2026-09-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** bump config-disassembler to 3.4.2 ([#597](https://github.com/mcarvin8/sf-decomposer/issues/597)) ([4e6a1dc](https://github.com/mcarvin8/sf-decomposer/commit/4e6a1dc0a72fd5c503147b02c33214a54a7f03bc))
|
|
14
|
+
|
|
15
|
+
## [7.4.0](https://github.com/mcarvin8/sf-decomposer/compare/v7.3.4...v7.4.0) (2026-09-04)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **metadata:** refresh SDR registry to 13.3.1 ([#595](https://github.com/mcarvin8/sf-decomposer/issues/595)) ([759faab](https://github.com/mcarvin8/sf-decomposer/commit/759faabf1527702040fe9c2b3d369dffbd9e1236))
|
|
21
|
+
|
|
8
22
|
## [7.3.4](https://github.com/mcarvin8/sf-decomposer/compare/v7.3.3...v7.3.4) (2026-09-03)
|
|
9
23
|
|
|
10
24
|
|
package/README.md
CHANGED
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
- [Built With](#built-with)
|
|
38
38
|
- [Migrating from Salesforce Native Decomposition](#migrating-from-salesforce-native-decomposition)
|
|
39
39
|
- [Contributing](#contributing)
|
|
40
|
+
- [Issues](#issues)
|
|
40
41
|
- [License](#license)
|
|
41
42
|
|
|
42
43
|
</details>
|
|
@@ -220,7 +221,7 @@ EXAMPLES
|
|
|
220
221
|
`sf decomposer decompose -x "manifest/package.xml" -m "flow"`
|
|
221
222
|
```
|
|
222
223
|
|
|
223
|
-
_See code: [src/commands/decomposer/decompose.ts](https://github.com/mcarvin8/sf-decomposer/blob/v7.
|
|
224
|
+
_See code: [src/commands/decomposer/decompose.ts](https://github.com/mcarvin8/sf-decomposer/blob/v7.4.1/src/commands/decomposer/decompose.ts)_
|
|
224
225
|
|
|
225
226
|
## `sf decomposer recompose`
|
|
226
227
|
|
|
@@ -266,7 +267,7 @@ EXAMPLES
|
|
|
266
267
|
`sf decomposer recompose -x "manifest/package.xml" -m "flow"`
|
|
267
268
|
```
|
|
268
269
|
|
|
269
|
-
_See code: [src/commands/decomposer/recompose.ts](https://github.com/mcarvin8/sf-decomposer/blob/v7.
|
|
270
|
+
_See code: [src/commands/decomposer/recompose.ts](https://github.com/mcarvin8/sf-decomposer/blob/v7.4.1/src/commands/decomposer/recompose.ts)_
|
|
270
271
|
|
|
271
272
|
## `sf decomposer verify`
|
|
272
273
|
|
|
@@ -330,7 +331,7 @@ EXAMPLES
|
|
|
330
331
|
`sf decomposer verify -x "manifest/package.xml" --config`
|
|
331
332
|
```
|
|
332
333
|
|
|
333
|
-
_See code: [src/commands/decomposer/verify.ts](https://github.com/mcarvin8/sf-decomposer/blob/v7.
|
|
334
|
+
_See code: [src/commands/decomposer/verify.ts](https://github.com/mcarvin8/sf-decomposer/blob/v7.4.1/src/commands/decomposer/verify.ts)_
|
|
334
335
|
<!-- commandsstop -->
|
|
335
336
|
|
|
336
337
|
---
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sf-decomposer",
|
|
3
3
|
"description": "Decompose Salesforce metadata into granular, VCS-friendly files; recompose for deployment.",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.4.1",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@oclif/core": "5.0.0",
|
|
7
7
|
"@salesforce/core": "9.1.9",
|
|
8
8
|
"@salesforce/sf-plugins-core": "13.0.4",
|
|
9
|
-
"config-disassembler": "3.4.
|
|
9
|
+
"config-disassembler": "3.4.2"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@actions/core": "3.0.1",
|