@jayree/sfdx-plugin-manifest 5.0.62 → 5.0.64

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
@@ -1,3 +1,18 @@
1
+ ## [5.0.64](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.63...5.0.64) (2026-04-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * proper directory ignoring ([afd5846](https://github.com/jayree/sfdx-plugin-manifest/commit/afd584645eb1580230cd5251c2a3e5201f823759))
7
+
8
+ ## [5.0.63](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.62...5.0.63) (2026-04-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** bump @salesforce/source-tracking from 7.8.9 to 7.8.10 ([#2180](https://github.com/jayree/sfdx-plugin-manifest/issues/2180)) ([4a83a17](https://github.com/jayree/sfdx-plugin-manifest/commit/4a83a175dfa03ca04693a413c12d4a48f545b7ce))
14
+ * **perf:** stl remote indexing, no node_modules in local tracking W-21986538 ([#847](https://github.com/forcedotcom/source-tracking/issues/847)) ([7bf1d7a](https://github.com/forcedotcom/source-tracking/commit/7bf1d7a7ae414026ef5b460f9e0b5f9aa080e42d))
15
+
1
16
  ## [5.0.62](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.61...5.0.62) (2026-04-11)
2
17
 
3
18
 
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.62/src/commands/jayree/manifest/cleanup.ts)_
115
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.64/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.62/src/commands/jayree/manifest/generate.ts)_
153
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.64/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.62/src/commands/jayree/manifest/git/diff.ts)_
233
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.64/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
- * To support use of MetadataResolver to also resolve metadata xmls file names can be provided
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 path from 'node:path';
17
+ import { sep } from 'node:path';
18
18
  import { VirtualTreeContainer } from '@salesforce/source-deploy-retrieve';
19
- import { parseMetadataXml } from '@salesforce/source-deploy-retrieve/lib/src/utils/index.js';
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
- * To support use of MetadataResolver to also resolve metadata xmls file names can be provided
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 virtualDirectoryByFullPath = new Map();
36
- // eslint-disable-next-line @typescript-eslint/await-thenable
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,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,oBAAoB,EAAoB,MAAM,oCAAoC,CAAC;AAC5F,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAC7F,OAAO,EAAE,OAAO,EAAE,MAAM,iCAAiC,CAAC;AAE1D,MAAM,OAAO,yBAA0B,SAAQ,oBAAoB;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,KAAK,CAAC,UAAU,CAC5B,GAAW,EACX,GAAW,EACX,qBAA+B;QAE/B,MAAM,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC;QAC/C,MAAM,KAAK,GAAG,MAAM,SAAS,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;QAC7C,MAAM,GAAG,GAAG,MAAM,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;QAC5C,MAAM,0BAA0B,GAAG,IAAI,GAAG,EAA4B,CAAC;QACvE,6DAA6D;QAC7D,IAAI,KAAK,EAAE,MAAM,QAAQ,IAAI,KAAK,EAAE,CAAC;YACnC,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;YACvC,0BAA0B,CAAC,GAAG,CAAC,OAAO,EAAE;gBACtC,OAAO;gBACP,QAAQ,EAAE,KAAK,CAAC,IAAI,CAClB,IAAI,GAAG,CAAC,0BAA0B,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,QAAQ,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC;oBACnE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;oBAC7B,IAAI,EACF,gBAAgB,CAAC,QAAQ,CAAC,IAAI,qBAAqB,CAAC,QAAQ,CAAC,QAAQ,CAAC;wBACpE,CAAC,CAAC,MAAM,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,GAAG,CAAC;wBACzC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;iBACtB,CAAC,CACH;aACF,CAAC,CAAC;YACH,MAAM,MAAM,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACxC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC3C,MAAM,aAAa,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;gBAC5D,MAAM,QAAQ,GAAG,0BAA0B,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;gBAC/D,0BAA0B,CAAC,GAAG,CAAC,aAAa,EAAE;oBAC5C,OAAO,EAAE,aAAa;oBACtB,mDAAmD;oBACnD,QAAQ,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,EAAE,QAAQ,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;iBAC3E,CAAC,CAAC;YACL,CAAC;QACH,CAAC;QAED,OAAO,IAAI,oBAAoB,CAAC,KAAK,CAAC,IAAI,CAAC,0BAA0B,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACnF,CAAC;CACF"}
1
+ {"version":3,"file":"treeContainersExtra.js","sourceRoot":"","sources":["../../../src/SDR-extra/resolve/treeContainersExtra.ts"],"names":[],"mappings":"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"}
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@jayree/sfdx-plugin-manifest",
3
- "version": "5.0.62",
3
+ "version": "5.0.64",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@jayree/sfdx-plugin-manifest",
9
- "version": "5.0.62",
9
+ "version": "5.0.64",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@jayree/changelog": "^1.2.28",
@@ -15,7 +15,7 @@
15
15
  "@salesforce/kit": "^3.2.6",
16
16
  "@salesforce/sf-plugins-core": "^12.2.6",
17
17
  "@salesforce/source-deploy-retrieve": "12.32.4",
18
- "@salesforce/source-tracking": "7.8.9",
18
+ "@salesforce/source-tracking": "7.8.10",
19
19
  "@salesforce/ts-types": "^2.0.12",
20
20
  "fast-deep-equal": "^3.1.3",
21
21
  "fast-xml-parser": "^5.5.11",
@@ -6344,14 +6344,14 @@
6344
6344
  }
6345
6345
  },
6346
6346
  "node_modules/@salesforce/source-tracking": {
6347
- "version": "7.8.9",
6348
- "resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.9.tgz",
6349
- "integrity": "sha512-ykXZQvjeG+r0LNxaGGvM4e9Mnn1SHx5KuaXP9ROOHfMqo6D9mxjNuI+VQprPbxOYPsH+ahmlrBaB/Ar3zZ8+Jg==",
6347
+ "version": "7.8.10",
6348
+ "resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.10.tgz",
6349
+ "integrity": "sha512-rCAz9mDWxAI/Gv5XJ+vKZU2+PVh38KUfvYezWv81audKeJc5ZD5H7IESGIIJCjLw2z3YLX+cDiemFG1wtM/Lgg==",
6350
6350
  "license": "Apache-2.0",
6351
6351
  "dependencies": {
6352
- "@salesforce/core": "^8.27.1",
6353
- "@salesforce/kit": "^3.2.4",
6354
- "@salesforce/source-deploy-retrieve": "^12.32.1",
6352
+ "@salesforce/core": "^8.28.1",
6353
+ "@salesforce/kit": "^3.2.6",
6354
+ "@salesforce/source-deploy-retrieve": "^12.32.3",
6355
6355
  "@salesforce/ts-types": "^2.0.12",
6356
6356
  "fast-xml-parser": "^5.5.7",
6357
6357
  "graceful-fs": "^4.2.11",
package/oclif.lock CHANGED
@@ -1996,7 +1996,7 @@
1996
1996
  cli-progress "^3.12.0"
1997
1997
  terminal-link "^3.0.0"
1998
1998
 
1999
- "@salesforce/source-deploy-retrieve@12.32.4", "@salesforce/source-deploy-retrieve@^12.32.1":
1999
+ "@salesforce/source-deploy-retrieve@12.32.4", "@salesforce/source-deploy-retrieve@^12.32.3":
2000
2000
  version "12.32.4"
2001
2001
  resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.4.tgz#d9dc6653b31b2e60b0b6411cc0619da7c9fb8fbe"
2002
2002
  integrity sha512-Eqo+OkbHkJWrgp9lRiz0l1NmJZ/N6SQdFcY+EtdA0wqKABtmV05BSvkgOA1Iab4e/fjcQCoi01v+oozPHat1Ag==
@@ -2016,14 +2016,14 @@
2016
2016
  proxy-agent "^6.5.0"
2017
2017
  yaml "^2.8.3"
2018
2018
 
2019
- "@salesforce/source-tracking@7.8.9":
2020
- version "7.8.9"
2021
- resolved "https://registry.yarnpkg.com/@salesforce/source-tracking/-/source-tracking-7.8.9.tgz#b40cd1b2c42a1a5f22294c17c7fc2ef779a8c1ca"
2022
- integrity sha512-ykXZQvjeG+r0LNxaGGvM4e9Mnn1SHx5KuaXP9ROOHfMqo6D9mxjNuI+VQprPbxOYPsH+ahmlrBaB/Ar3zZ8+Jg==
2019
+ "@salesforce/source-tracking@7.8.10":
2020
+ version "7.8.10"
2021
+ resolved "https://registry.yarnpkg.com/@salesforce/source-tracking/-/source-tracking-7.8.10.tgz#2e947b3b73562f42664c253611ac88f7b4ef0077"
2022
+ integrity sha512-rCAz9mDWxAI/Gv5XJ+vKZU2+PVh38KUfvYezWv81audKeJc5ZD5H7IESGIIJCjLw2z3YLX+cDiemFG1wtM/Lgg==
2023
2023
  dependencies:
2024
- "@salesforce/core" "^8.27.1"
2025
- "@salesforce/kit" "^3.2.4"
2026
- "@salesforce/source-deploy-retrieve" "^12.32.1"
2024
+ "@salesforce/core" "^8.28.1"
2025
+ "@salesforce/kit" "^3.2.6"
2026
+ "@salesforce/source-deploy-retrieve" "^12.32.3"
2027
2027
  "@salesforce/ts-types" "^2.0.12"
2028
2028
  fast-xml-parser "^5.5.7"
2029
2029
  graceful-fs "^4.2.11"
@@ -267,5 +267,5 @@
267
267
  ]
268
268
  }
269
269
  },
270
- "version": "5.0.62"
270
+ "version": "5.0.64"
271
271
  }
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.62",
4
+ "version": "5.0.64",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
@@ -12,7 +12,7 @@
12
12
  "@salesforce/kit": "^3.2.6",
13
13
  "@salesforce/sf-plugins-core": "^12.2.6",
14
14
  "@salesforce/source-deploy-retrieve": "12.32.4",
15
- "@salesforce/source-tracking": "7.8.9",
15
+ "@salesforce/source-tracking": "7.8.10",
16
16
  "@salesforce/ts-types": "^2.0.12",
17
17
  "fast-deep-equal": "^3.1.3",
18
18
  "fast-xml-parser": "^5.5.11",