@jayree/sfdx-plugin-manifest 2.8.5 → 2.8.7
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
## [2.8.7](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.6...v2.8.7) (2023-02-24)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @salesforce/kit from 1.8.5 to 1.9.0 ([#594](https://github.com/jayree/sfdx-plugin-manifest/issues/594)) ([771e6c0](https://github.com/jayree/sfdx-plugin-manifest/commit/771e6c08efbdfd6155083c6bd098248710dca99d))
|
7
|
+
* **deps:** bump @salesforce/sf-plugins-core from 2.1.2 to 2.2.2 ([#586](https://github.com/jayree/sfdx-plugin-manifest/issues/586)) ([15c5d80](https://github.com/jayree/sfdx-plugin-manifest/commit/15c5d8027cf62b73bb51fb0c816e44160c6180ed))
|
8
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.9.3 to 7.10.1 ([#592](https://github.com/jayree/sfdx-plugin-manifest/issues/592)) ([d3c3d59](https://github.com/jayree/sfdx-plugin-manifest/commit/d3c3d5992b313ce3317c2873de2c64bfe5fd7e6c))
|
9
|
+
|
10
|
+
## [2.8.6](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.5...v2.8.6) (2023-02-22)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* **manifest:beta:git:diff:** fix final ComponentSet validation ([9295a35](https://github.com/jayree/sfdx-plugin-manifest/commit/9295a359ba8086fc37f3dd1c13f8d20e9f0fa55c))
|
16
|
+
|
1
17
|
## [2.8.5](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.4...v2.8.5) (2023-02-20)
|
2
18
|
|
3
19
|
|
package/README.md
CHANGED
@@ -99,7 +99,7 @@ FLAG DESCRIPTIONS
|
|
99
99
|
The location can be an absolute path or relative to the current working directory.
|
100
100
|
```
|
101
101
|
|
102
|
-
_See code: [src/commands/jayree/manifest/beta/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.
|
102
|
+
_See code: [src/commands/jayree/manifest/beta/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.7/src/commands/jayree/manifest/beta/git/diff.ts)_
|
103
103
|
|
104
104
|
### `sfdx jayree:manifest:cleanup`
|
105
105
|
|
@@ -127,7 +127,7 @@ EXAMPLES
|
|
127
127
|
$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
|
128
128
|
```
|
129
129
|
|
130
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.
|
130
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.7/src/commands/jayree/manifest/cleanup.ts)_
|
131
131
|
|
132
132
|
### `sfdx jayree:manifest:generate`
|
133
133
|
|
@@ -163,7 +163,7 @@ EXAMPLES
|
|
163
163
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
164
164
|
```
|
165
165
|
|
166
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.
|
166
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.7/src/commands/jayree/manifest/generate.ts)_
|
167
167
|
|
168
168
|
### `sfdx jayree:manifest:git:diff`
|
169
169
|
|
@@ -240,5 +240,5 @@ FLAG DESCRIPTIONS
|
|
240
240
|
The location can be an absolute path or relative to the current working directory.
|
241
241
|
```
|
242
242
|
|
243
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.
|
243
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.7/src/commands/jayree/manifest/git/diff.ts)_
|
244
244
|
<!-- commandsstop -->
|
@@ -69,13 +69,13 @@ export class ComponentSetExtra extends ComponentSet {
|
|
69
69
|
components.add(component, DestructiveChangesType.POST);
|
70
70
|
}
|
71
71
|
}
|
72
|
+
let localSourceComponents = [];
|
73
|
+
for (const localComponent of components.getSourceComponents()) {
|
74
|
+
localSourceComponents = localSourceComponents.concat(localComponent.getChildren());
|
75
|
+
localSourceComponents = localSourceComponents.concat(localComponent);
|
76
|
+
}
|
72
77
|
for await (const component of inclusiveFilter.getSourceComponents()) {
|
73
|
-
if (!
|
74
|
-
.getSourceComponents()
|
75
|
-
.find((localComponent) => !!localComponent
|
76
|
-
.getChildren()
|
77
|
-
.find((localChild) => component.type.name === localChild.type.name && component.fullName === localChild.fullName) ||
|
78
|
-
(component.type.name === localComponent.type.name && component.fullName === localComponent.fullName))) {
|
78
|
+
if (!localSourceComponents.find((localComponent) => component.type.name === localComponent.type.name && component.fullName === localComponent.fullName)) {
|
79
79
|
await Lifecycle.getInstance().emitWarning(`The component "${component.type.name}:${component.fullName}" was not found locally.`);
|
80
80
|
}
|
81
81
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"componentSetExtra.js","sourceRoot":"","sources":["../../../src/SDR-extra/collections/componentSetExtra.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EACL,YAAY,EAGZ,sBAAsB,EACtB,cAAc,EACd,QAAQ,IAAI,eAAe,
|
1
|
+
{"version":3,"file":"componentSetExtra.js","sourceRoot":"","sources":["../../../src/SDR-extra/collections/componentSetExtra.ts"],"names":[],"mappings":"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"}
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
3
3
|
"description": "A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.",
|
4
|
-
"version": "2.8.
|
4
|
+
"version": "2.8.7",
|
5
5
|
"author": "jayree",
|
6
6
|
"type": "module",
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
8
8
|
"dependencies": {
|
9
9
|
"@oclif/core": "^2.1.5",
|
10
|
-
"@salesforce/kit": "^1.
|
11
|
-
"@salesforce/sf-plugins-core": "^2.
|
12
|
-
"@salesforce/source-deploy-retrieve": "^7.
|
10
|
+
"@salesforce/kit": "^1.9.0",
|
11
|
+
"@salesforce/sf-plugins-core": "^2.2.2",
|
12
|
+
"@salesforce/source-deploy-retrieve": "^7.10.1",
|
13
13
|
"@salesforce/ts-types": "^1.7.3",
|
14
14
|
"debug": "^4.3.4",
|
15
15
|
"fast-deep-equal": "^3.1.3",
|
@@ -24,10 +24,10 @@
|
|
24
24
|
"tslib": "^2.5.0"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@commitlint/cli": "^17.4.
|
28
|
-
"@commitlint/config-conventional": "^17.4.
|
29
|
-
"@oclif/plugin-command-snapshot": "^3.3.
|
30
|
-
"@oclif/plugin-help": "^5.2.
|
27
|
+
"@commitlint/cli": "^17.4.4",
|
28
|
+
"@commitlint/config-conventional": "^17.4.4",
|
29
|
+
"@oclif/plugin-command-snapshot": "^3.3.6",
|
30
|
+
"@oclif/plugin-help": "^5.2.5",
|
31
31
|
"@salesforce/dev-config": "^3.1.0",
|
32
32
|
"@salesforce/dev-scripts": "^3.1.1",
|
33
33
|
"@salesforce/prettier-config": "^0.0.2",
|
@@ -39,11 +39,11 @@
|
|
39
39
|
"@types/marked": "^4.0.8",
|
40
40
|
"@types/marked-terminal": "^3.1.3",
|
41
41
|
"@types/mocha": "^10.0.1",
|
42
|
-
"@types/node": "^18.
|
42
|
+
"@types/node": "^18.14.1",
|
43
43
|
"@types/semver": "^7.3.13",
|
44
44
|
"@types/sinon": "10.0.13",
|
45
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
46
|
-
"@typescript-eslint/parser": "^5.
|
45
|
+
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
46
|
+
"@typescript-eslint/parser": "^5.53.0",
|
47
47
|
"chai": "^4.3.7",
|
48
48
|
"eslint": "^8.34.0",
|
49
49
|
"eslint-config-oclif": "^4.0",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"is-ci": "^3.0.1",
|
60
60
|
"mocha": "^10.2.0",
|
61
61
|
"nyc": "^15.1.0",
|
62
|
-
"oclif": "^3.
|
62
|
+
"oclif": "^3.7.0",
|
63
63
|
"patch-package": "^6.5.1",
|
64
64
|
"pinst": "^3.0.0",
|
65
65
|
"prettier": "^2.8.4",
|