@jayree/sfdx-plugin-manifest 5.0.63 → 5.0.65
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 +17 -0
- package/README.md +3 -3
- package/lib/SDR-extra/resolve/treeContainersExtra.d.ts +10 -1
- package/lib/SDR-extra/resolve/treeContainersExtra.js +47 -28
- package/lib/SDR-extra/resolve/treeContainersExtra.js.map +1 -1
- package/npm-shrinkwrap.json +8 -8
- package/oclif.lock +8 -8
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [5.0.65](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.64...5.0.65) (2026-04-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @salesforce/source-deploy-retrieve ([#2189](https://github.com/jayree/sfdx-plugin-manifest/issues/2189)) ([de02c15](https://github.com/jayree/sfdx-plugin-manifest/commit/de02c15d0c0284ce91b0891dc65f62e6151bf45c))
|
|
7
|
+
* proper directory ignoring W-21988477 ([#1737](https://github.com/forcedotcom/source-deploy-retrieve/issues/1737)) ([3ff0812](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ff08122d4714a6ea259adb1f4e7e49f71682b8d)), closes [#1741](https://github.com/forcedotcom/source-deploy-retrieve/issues/1741)
|
|
8
|
+
* **deps:** bump fast-xml-parser from 5.5.9 to 5.5.11 ([#1739](https://github.com/forcedotcom/source-deploy-retrieve/issues/1739)) ([df5313d](https://github.com/forcedotcom/source-deploy-retrieve/commit/df5313d8d50fe12cc2fb2cb27dfaa83785dc17aa))
|
|
9
|
+
* **deps:** bump minimatch from 9.0.7 to 9.0.9 ([#1722](https://github.com/forcedotcom/source-deploy-retrieve/issues/1722)) ([8686f26](https://github.com/forcedotcom/source-deploy-retrieve/commit/8686f261d42d8f5b12e70249fc08c1e903ed927f))
|
|
10
|
+
|
|
11
|
+
## [5.0.64](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.63...5.0.64) (2026-04-12)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* proper directory ignoring ([afd5846](https://github.com/jayree/sfdx-plugin-manifest/commit/afd584645eb1580230cd5251c2a3e5201f823759))
|
|
17
|
+
|
|
1
18
|
## [5.0.63](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.62...5.0.63) (2026-04-11)
|
|
2
19
|
|
|
3
20
|
|
package/README.md
CHANGED
|
@@ -112,7 +112,7 @@ EXAMPLES
|
|
|
112
112
|
$ sf jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.
|
|
115
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.65/src/commands/jayree/manifest/cleanup.ts)_
|
|
116
116
|
|
|
117
117
|
### `sf jayree manifest generate`
|
|
118
118
|
|
|
@@ -150,7 +150,7 @@ EXAMPLES
|
|
|
150
150
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
151
151
|
```
|
|
152
152
|
|
|
153
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.
|
|
153
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.65/src/commands/jayree/manifest/generate.ts)_
|
|
154
154
|
|
|
155
155
|
### `sf jayree manifest git diff REF1 [REF2]`
|
|
156
156
|
|
|
@@ -230,7 +230,7 @@ FLAG DESCRIPTIONS
|
|
|
230
230
|
Use this flag to create a 'destructiveChanges.xml' and a blank 'package.xml'.
|
|
231
231
|
```
|
|
232
232
|
|
|
233
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.
|
|
233
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.65/src/commands/jayree/manifest/git/diff.ts)_
|
|
234
234
|
<!-- commandsstop -->
|
|
235
235
|
|
|
236
236
|
## Performance Testing
|
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
import { VirtualTreeContainer } from '@salesforce/source-deploy-retrieve';
|
|
2
2
|
export declare class VirtualTreeContainerExtra extends VirtualTreeContainer {
|
|
3
|
+
/**
|
|
4
|
+
* Designed for recreating virtual files from file paths and their buffer content
|
|
5
|
+
* This was created to support use of MetadataResolver with git diff results where the modified files and their content can be provided but the files don't actually exist on the filesystem
|
|
6
|
+
*
|
|
7
|
+
* @param paths full paths to files
|
|
8
|
+
* @param fileBufferByPath map of file paths to their buffer content
|
|
9
|
+
* @returns VirtualTreeContainer
|
|
10
|
+
*/
|
|
11
|
+
static fromFilePathsWithBlobs(paths: string[], fileBufferByPath: Map<string, Buffer>): VirtualTreeContainer;
|
|
3
12
|
/**
|
|
4
13
|
* Designed for recreating virtual files from a git ref
|
|
5
|
-
*
|
|
14
|
+
* This was created to support use of MetadataResolver with git diff results where the modified files and their content can be provided but the files don't actually exist on the filesystem
|
|
6
15
|
*
|
|
7
16
|
* @param ref git ref
|
|
8
17
|
* @param dir git dir
|
|
@@ -14,14 +14,56 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
// https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/resolve/treeContainers.ts
|
|
17
|
-
import
|
|
17
|
+
import { sep } from 'node:path';
|
|
18
18
|
import { VirtualTreeContainer } from '@salesforce/source-deploy-retrieve';
|
|
19
|
-
import {
|
|
19
|
+
import { isString } from '@salesforce/ts-types';
|
|
20
20
|
import { GitRepo } from '../shared/local/localGitRepo.js';
|
|
21
21
|
export class VirtualTreeContainerExtra extends VirtualTreeContainer {
|
|
22
|
+
/**
|
|
23
|
+
* Designed for recreating virtual files from file paths and their buffer content
|
|
24
|
+
* This was created to support use of MetadataResolver with git diff results where the modified files and their content can be provided but the files don't actually exist on the filesystem
|
|
25
|
+
*
|
|
26
|
+
* @param paths full paths to files
|
|
27
|
+
* @param fileBufferByPath map of file paths to their buffer content
|
|
28
|
+
* @returns VirtualTreeContainer
|
|
29
|
+
*/
|
|
30
|
+
static fromFilePathsWithBlobs(paths, fileBufferByPath) {
|
|
31
|
+
const childrenByDir = new Map();
|
|
32
|
+
for (const filename of paths) {
|
|
33
|
+
if (!isString(filename)) {
|
|
34
|
+
continue;
|
|
35
|
+
}
|
|
36
|
+
const splits = filename.split(sep);
|
|
37
|
+
for (let i = 0; i < splits.length - 1; i++) {
|
|
38
|
+
// slice+join preserves the leading separator for absolute paths
|
|
39
|
+
// e.g. ['', 'home'].join('/') === '/home'
|
|
40
|
+
const dirPath = splits.slice(0, i + 1).join(sep);
|
|
41
|
+
let childSet = childrenByDir.get(dirPath);
|
|
42
|
+
if (!childSet) {
|
|
43
|
+
childSet = new Set();
|
|
44
|
+
childrenByDir.set(dirPath, childSet);
|
|
45
|
+
}
|
|
46
|
+
childSet.add(splits[i + 1]);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
const virtualFs = Array.from(childrenByDir.entries()).map(([dirPath, set]) => ({
|
|
50
|
+
dirPath,
|
|
51
|
+
children: Array.from(set).map((childName) => {
|
|
52
|
+
const fullPath = [dirPath, childName].filter(Boolean).join(sep);
|
|
53
|
+
const buffer = fileBufferByPath.get(fullPath);
|
|
54
|
+
return buffer
|
|
55
|
+
? {
|
|
56
|
+
name: childName,
|
|
57
|
+
data: buffer,
|
|
58
|
+
}
|
|
59
|
+
: childName;
|
|
60
|
+
}),
|
|
61
|
+
}));
|
|
62
|
+
return new VirtualTreeContainer(virtualFs);
|
|
63
|
+
}
|
|
22
64
|
/**
|
|
23
65
|
* Designed for recreating virtual files from a git ref
|
|
24
|
-
*
|
|
66
|
+
* This was created to support use of MetadataResolver with git diff results where the modified files and their content can be provided but the files don't actually exist on the filesystem
|
|
25
67
|
*
|
|
26
68
|
* @param ref git ref
|
|
27
69
|
* @param dir git dir
|
|
@@ -32,31 +74,8 @@ export class VirtualTreeContainerExtra extends VirtualTreeContainer {
|
|
|
32
74
|
const localRepo = GitRepo.getInstance({ dir });
|
|
33
75
|
const paths = await localRepo.listFiles(ref);
|
|
34
76
|
const oid = await localRepo.resolveRef(ref);
|
|
35
|
-
const
|
|
36
|
-
|
|
37
|
-
for await (const filename of paths) {
|
|
38
|
-
const dirPath = path.dirname(filename);
|
|
39
|
-
virtualDirectoryByFullPath.set(dirPath, {
|
|
40
|
-
dirPath,
|
|
41
|
-
children: Array.from(new Set(virtualDirectoryByFullPath.get(dirPath)?.children ?? []).add({
|
|
42
|
-
name: path.basename(filename),
|
|
43
|
-
data: parseMetadataXml(filename) && includeBufferForFiles.includes(filename)
|
|
44
|
-
? await localRepo.readBlob(filename, oid)
|
|
45
|
-
: Buffer.from(''),
|
|
46
|
-
})),
|
|
47
|
-
});
|
|
48
|
-
const splits = filename.split(path.sep);
|
|
49
|
-
for (let i = 0; i < splits.length - 1; i++) {
|
|
50
|
-
const fullPathSoFar = splits.slice(0, i + 1).join(path.sep);
|
|
51
|
-
const existing = virtualDirectoryByFullPath.get(fullPathSoFar);
|
|
52
|
-
virtualDirectoryByFullPath.set(fullPathSoFar, {
|
|
53
|
-
dirPath: fullPathSoFar,
|
|
54
|
-
// only add to children if we don't already have it
|
|
55
|
-
children: Array.from(new Set(existing?.children ?? []).add(splits[i + 1])),
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
return new VirtualTreeContainer(Array.from(virtualDirectoryByFullPath.values()));
|
|
77
|
+
const fileBufferByPath = new Map(await Promise.all(includeBufferForFiles.map(async (filePath) => [filePath, await localRepo.readBlob(filePath, oid)])));
|
|
78
|
+
return VirtualTreeContainerExtra.fromFilePathsWithBlobs(paths, fileBufferByPath);
|
|
60
79
|
}
|
|
61
80
|
}
|
|
62
81
|
//# sourceMappingURL=treeContainersExtra.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"treeContainersExtra.js","sourceRoot":"","sources":["../../../src/SDR-extra/resolve/treeContainersExtra.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,gGAAgG;AAChG,OAAO,
|
|
1
|
+
{"version":3,"file":"treeContainersExtra.js","sourceRoot":"","sources":["../../../src/SDR-extra/resolve/treeContainersExtra.ts"],"names":[],"mappings":"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"}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.65",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
9
|
-
"version": "5.0.
|
|
9
|
+
"version": "5.0.65",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@jayree/changelog": "^1.2.28",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@salesforce/core": "^8.28.1",
|
|
15
15
|
"@salesforce/kit": "^3.2.6",
|
|
16
16
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
17
|
-
"@salesforce/source-deploy-retrieve": "12.32.
|
|
17
|
+
"@salesforce/source-deploy-retrieve": "12.32.7",
|
|
18
18
|
"@salesforce/source-tracking": "7.8.10",
|
|
19
19
|
"@salesforce/ts-types": "^2.0.12",
|
|
20
20
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -6295,9 +6295,9 @@
|
|
|
6295
6295
|
}
|
|
6296
6296
|
},
|
|
6297
6297
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
6298
|
-
"version": "12.32.
|
|
6299
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.
|
|
6300
|
-
"integrity": "sha512-
|
|
6298
|
+
"version": "12.32.7",
|
|
6299
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.7.tgz",
|
|
6300
|
+
"integrity": "sha512-nxrMUYyLi171EllPssXKfr/D3+DBeTeeV+VUSqHVgTyRrGVVvlV86dVgyWaC7d5E8C6wgLMKiMu43zs4GRb9XQ==",
|
|
6301
6301
|
"license": "Apache-2.0",
|
|
6302
6302
|
"dependencies": {
|
|
6303
6303
|
"@salesforce/core": "^8.27.1",
|
|
@@ -6305,13 +6305,13 @@
|
|
|
6305
6305
|
"@salesforce/ts-types": "^2.0.12",
|
|
6306
6306
|
"@salesforce/types": "^1.6.0",
|
|
6307
6307
|
"fast-levenshtein": "^3.0.0",
|
|
6308
|
-
"fast-xml-parser": "^5.5.
|
|
6308
|
+
"fast-xml-parser": "^5.5.11",
|
|
6309
6309
|
"got": "^11.8.6",
|
|
6310
6310
|
"graceful-fs": "^4.2.11",
|
|
6311
6311
|
"ignore": "^5.3.2",
|
|
6312
6312
|
"jszip": "^3.10.1",
|
|
6313
6313
|
"mime": "2.6.0",
|
|
6314
|
-
"minimatch": "^9.0.
|
|
6314
|
+
"minimatch": "^9.0.9",
|
|
6315
6315
|
"proxy-agent": "^6.5.0",
|
|
6316
6316
|
"yaml": "^2.8.3"
|
|
6317
6317
|
},
|
package/oclif.lock
CHANGED
|
@@ -1996,23 +1996,23 @@
|
|
|
1996
1996
|
cli-progress "^3.12.0"
|
|
1997
1997
|
terminal-link "^3.0.0"
|
|
1998
1998
|
|
|
1999
|
-
"@salesforce/source-deploy-retrieve@12.32.
|
|
2000
|
-
version "12.32.
|
|
2001
|
-
resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.
|
|
2002
|
-
integrity sha512-
|
|
1999
|
+
"@salesforce/source-deploy-retrieve@12.32.7", "@salesforce/source-deploy-retrieve@^12.32.3":
|
|
2000
|
+
version "12.32.7"
|
|
2001
|
+
resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.7.tgz#acc2377987095fc9abd0f5256442d5042b54dd68"
|
|
2002
|
+
integrity sha512-nxrMUYyLi171EllPssXKfr/D3+DBeTeeV+VUSqHVgTyRrGVVvlV86dVgyWaC7d5E8C6wgLMKiMu43zs4GRb9XQ==
|
|
2003
2003
|
dependencies:
|
|
2004
2004
|
"@salesforce/core" "^8.27.1"
|
|
2005
2005
|
"@salesforce/kit" "^3.2.4"
|
|
2006
2006
|
"@salesforce/ts-types" "^2.0.12"
|
|
2007
2007
|
"@salesforce/types" "^1.6.0"
|
|
2008
2008
|
fast-levenshtein "^3.0.0"
|
|
2009
|
-
fast-xml-parser "^5.5.
|
|
2009
|
+
fast-xml-parser "^5.5.11"
|
|
2010
2010
|
got "^11.8.6"
|
|
2011
2011
|
graceful-fs "^4.2.11"
|
|
2012
2012
|
ignore "^5.3.2"
|
|
2013
2013
|
jszip "^3.10.1"
|
|
2014
2014
|
mime "2.6.0"
|
|
2015
|
-
minimatch "^9.0.
|
|
2015
|
+
minimatch "^9.0.9"
|
|
2016
2016
|
proxy-agent "^6.5.0"
|
|
2017
2017
|
yaml "^2.8.3"
|
|
2018
2018
|
|
|
@@ -5564,7 +5564,7 @@ fast-xml-parser@5.5.8:
|
|
|
5564
5564
|
path-expression-matcher "^1.2.0"
|
|
5565
5565
|
strnum "^2.2.0"
|
|
5566
5566
|
|
|
5567
|
-
fast-xml-parser@^5.5.11, fast-xml-parser@^5.5.7
|
|
5567
|
+
fast-xml-parser@^5.5.11, fast-xml-parser@^5.5.7:
|
|
5568
5568
|
version "5.5.11"
|
|
5569
5569
|
resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.5.11.tgz#406a888587aed0ba6b3e60382dfbb3b1f80692ad"
|
|
5570
5570
|
integrity sha512-QL0eb0YbSTVWF6tTf1+LEMSgtCEjBYPpnAjoLC8SscESlAjXEIRJ7cHtLG0pLeDFaZLa4VKZLArtA/60ZS7vyA==
|
|
@@ -7575,7 +7575,7 @@ minimatch@^5.0.1, minimatch@^5.1.6:
|
|
|
7575
7575
|
dependencies:
|
|
7576
7576
|
brace-expansion "^2.0.1"
|
|
7577
7577
|
|
|
7578
|
-
minimatch@^9.0.4, minimatch@^9.0.5, minimatch@^9.0.
|
|
7578
|
+
minimatch@^9.0.4, minimatch@^9.0.5, minimatch@^9.0.9:
|
|
7579
7579
|
version "9.0.9"
|
|
7580
7580
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.9.tgz#9b0cb9fcb78087f6fd7eababe2511c4d3d60574e"
|
|
7581
7581
|
integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
3
3
|
"description": "A powerful Salesforce CLI plugin and Node.js library to effortlessly generate, clean up, and manage package.xml and destructiveChanges.xml manifests directly from your Salesforce orgs or from Git changes in your SF projects. Unlock faster, safer, and smarter Salesforce deployments.",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.65",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@salesforce/core": "^8.28.1",
|
|
12
12
|
"@salesforce/kit": "^3.2.6",
|
|
13
13
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
14
|
-
"@salesforce/source-deploy-retrieve": "12.32.
|
|
14
|
+
"@salesforce/source-deploy-retrieve": "12.32.7",
|
|
15
15
|
"@salesforce/source-tracking": "7.8.10",
|
|
16
16
|
"@salesforce/ts-types": "^2.0.12",
|
|
17
17
|
"fast-deep-equal": "^3.1.3",
|