sf-decomposer 6.39.3 → 7.0.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 +16 -0
- package/README.md +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +21 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@
|
|
|
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.0.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.39.3...v7.0.0) (2026-08-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ⚠ BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
* **engines:** minimum supported node version raised from 22.0.0 to 22.19.0.
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **deps:** bump config-disassembler from 3.0.2 to 3.1.0 ([#555](https://github.com/mcarvin8/sf-decomposer/issues/555)) ([8ff52e6](https://github.com/mcarvin8/sf-decomposer/commit/8ff52e618a0950b14daf1d3cf8b09984572ae889))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **engines:** raise node engine floor to 22.19.0 to match dep tree ([84aad17](https://github.com/mcarvin8/sf-decomposer/commit/84aad17d8c8e1ec78e5c62cb972d1595faf2a562))
|
|
23
|
+
|
|
8
24
|
## [6.39.3](https://github.com/mcarvin8/sf-decomposer/compare/v6.39.2...v6.39.3) (2026-07-27)
|
|
9
25
|
|
|
10
26
|
|
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ Complete these steps once per project. After setup, see [Daily Workflow](#daily-
|
|
|
45
45
|
### 1. Requirements
|
|
46
46
|
|
|
47
47
|
- [Salesforce CLI](https://developer.salesforce.com/tools/sfdxcli) (`sf`) installed
|
|
48
|
-
- Node.js 22.
|
|
48
|
+
- Node.js 22.19 or later
|
|
49
49
|
- A Salesforce DX project with `sfdx-project.json` and package directories
|
|
50
50
|
|
|
51
51
|
**Supported Platforms**
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sf-decomposer",
|
|
3
3
|
"description": "Decompose Salesforce metadata into granular, VCS-friendly files; recompose for deployment.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "7.0.0",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@oclif/core": "4.
|
|
7
|
-
"@salesforce/core": "
|
|
8
|
-
"@salesforce/sf-plugins-core": "
|
|
9
|
-
"@salesforce/source-deploy-retrieve": "
|
|
10
|
-
"config-disassembler": "3.0
|
|
6
|
+
"@oclif/core": "4.13.3",
|
|
7
|
+
"@salesforce/core": "9.1.0",
|
|
8
|
+
"@salesforce/sf-plugins-core": "13.0.0",
|
|
9
|
+
"@salesforce/source-deploy-retrieve": "13.0.1",
|
|
10
|
+
"config-disassembler": "3.1.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@biomejs/biome": "2.5.1",
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
"@salesforce/dev-config": "4.3.3",
|
|
18
18
|
"@stryker-mutator/core": "9.6.1",
|
|
19
19
|
"@stryker-mutator/vitest-runner": "9.6.1",
|
|
20
|
-
"@types/node": "
|
|
20
|
+
"@types/node": "26.1.2",
|
|
21
21
|
"@vitest/coverage-v8": "4.1.9",
|
|
22
22
|
"husky": "9.1.7",
|
|
23
|
-
"knip": "6.
|
|
24
|
-
"lint-staged": "17.0
|
|
25
|
-
"
|
|
23
|
+
"knip": "6.31.0",
|
|
24
|
+
"lint-staged": "17.3.0",
|
|
25
|
+
"ls-engines": "0.10.1",
|
|
26
|
+
"oclif": "4.23.29",
|
|
26
27
|
"patch-package": "8.0.1",
|
|
27
28
|
"shx": "0.4.0",
|
|
28
29
|
"tsx": "4.23.0",
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"wireit": "0.14.13"
|
|
32
33
|
},
|
|
33
34
|
"engines": {
|
|
34
|
-
"node": ">=22.
|
|
35
|
+
"node": ">=22.19.0"
|
|
35
36
|
},
|
|
36
37
|
"files": [
|
|
37
38
|
"/lib",
|
|
@@ -95,6 +96,7 @@
|
|
|
95
96
|
"format": "wireit",
|
|
96
97
|
"lint": "wireit",
|
|
97
98
|
"lint:dependencies": "wireit",
|
|
99
|
+
"lint:engine": "wireit",
|
|
98
100
|
"postpack": "shx rm -f oclif.manifest.json oclif.lock",
|
|
99
101
|
"prepack": "wireit",
|
|
100
102
|
"prepare": "husky && patch-package",
|
|
@@ -192,6 +194,14 @@
|
|
|
192
194
|
"lint"
|
|
193
195
|
]
|
|
194
196
|
},
|
|
197
|
+
"lint:engine": {
|
|
198
|
+
"command": "ls-engines --no-current --no-dev --mode=virtual",
|
|
199
|
+
"files": [
|
|
200
|
+
"package.json",
|
|
201
|
+
"package-lock.json"
|
|
202
|
+
],
|
|
203
|
+
"output": []
|
|
204
|
+
},
|
|
195
205
|
"prepack": {
|
|
196
206
|
"command": "oclif manifest && oclif readme",
|
|
197
207
|
"files": [
|