@jayree/sfdx-plugin-manifest 2.8.1 → 2.8.3
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 +18 -0
- package/README.md +6 -7
- package/oclif.manifest.json +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [2.8.3](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.2...v2.8.3) (2023-02-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @oclif/core from 2.0.11 to 2.1.5 ([#572](https://github.com/jayree/sfdx-plugin-manifest/issues/572)) ([d3a1146](https://github.com/jayree/sfdx-plugin-manifest/commit/d3a11463f1fff17ff23e21c2ca1c1592e123a1c4))
|
|
7
|
+
* **deps:** bump @salesforce/sf-plugins-core from 2.1.0 to 2.1.2 ([#573](https://github.com/jayree/sfdx-plugin-manifest/issues/573)) ([68ccf64](https://github.com/jayree/sfdx-plugin-manifest/commit/68ccf64e1e6a5c6b5b1707a3ecd21c821f9a0515))
|
|
8
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.9.1 to 7.9.3 ([#582](https://github.com/jayree/sfdx-plugin-manifest/issues/582)) ([803d125](https://github.com/jayree/sfdx-plugin-manifest/commit/803d12565f28d7938e54f157b40826cacf1ac42f))
|
|
9
|
+
* **deps:** bump fast-xml-parser from 4.1.1 to 4.1.2 ([#574](https://github.com/jayree/sfdx-plugin-manifest/issues/574)) ([206f49b](https://github.com/jayree/sfdx-plugin-manifest/commit/206f49b3e5358aff6507400646578b1a951d4fe4))
|
|
10
|
+
|
|
11
|
+
## [2.8.2](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.1...v2.8.2) (2023-02-10)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **deps:** bump @salesforce/sf-plugins-core from 2.0.1 to 2.1.0 ([#568](https://github.com/jayree/sfdx-plugin-manifest/issues/568)) ([298d77e](https://github.com/jayree/sfdx-plugin-manifest/commit/298d77ed3855a07632404c7449c65bbabe0dc2ff))
|
|
17
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.8.0 to 7.9.1 ([#563](https://github.com/jayree/sfdx-plugin-manifest/issues/563)) ([594e05f](https://github.com/jayree/sfdx-plugin-manifest/commit/594e05f45683c7880ab4580ef3f5874139d719a4))
|
|
18
|
+
|
|
1
19
|
## [2.8.1](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.0...v2.8.1) (2023-02-03)
|
|
2
20
|
|
|
3
21
|
|
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Create a project manifest and destructiveChanges manifest that lists the metadat
|
|
|
28
28
|
|
|
29
29
|
```
|
|
30
30
|
USAGE
|
|
31
|
-
$ sfdx jayree:manifest:beta:git:diff
|
|
31
|
+
$ sfdx jayree:manifest:beta:git:diff REF1 [REF2] [--json] [--api-version <value>] [-d <value>] [--output-dir <value>]
|
|
32
32
|
[--destructive-changes-only]
|
|
33
33
|
|
|
34
34
|
ARGUMENTS
|
|
@@ -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.3/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.3/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.3/src/commands/jayree/manifest/generate.ts)_
|
|
167
167
|
|
|
168
168
|
### `sfdx jayree:manifest:git:diff`
|
|
169
169
|
|
|
@@ -171,8 +171,7 @@ Create a project manifest and destructiveChanges manifest that lists the metadat
|
|
|
171
171
|
|
|
172
172
|
```
|
|
173
173
|
USAGE
|
|
174
|
-
$ sfdx jayree:manifest:git:diff
|
|
175
|
-
[--destructive-changes-only]
|
|
174
|
+
$ sfdx jayree:manifest:git:diff REF1 [REF2] [--json] [-d <value>] [--output-dir <value>] [--destructive-changes-only]
|
|
176
175
|
|
|
177
176
|
ARGUMENTS
|
|
178
177
|
REF1 Base commit or branch.
|
|
@@ -241,5 +240,5 @@ FLAG DESCRIPTIONS
|
|
|
241
240
|
The location can be an absolute path or relative to the current working directory.
|
|
242
241
|
```
|
|
243
242
|
|
|
244
|
-
_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.3/src/commands/jayree/manifest/git/diff.ts)_
|
|
245
244
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
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.3",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@oclif/core": "^2.
|
|
9
|
+
"@oclif/core": "^2.1.5",
|
|
10
10
|
"@salesforce/kit": "^1.8.4",
|
|
11
|
-
"@salesforce/sf-plugins-core": "^2.
|
|
12
|
-
"@salesforce/source-deploy-retrieve": "^7.
|
|
11
|
+
"@salesforce/sf-plugins-core": "^2.1.2",
|
|
12
|
+
"@salesforce/source-deploy-retrieve": "^7.9.3",
|
|
13
13
|
"@salesforce/ts-types": "^1.7.3",
|
|
14
14
|
"debug": "^4.3.4",
|
|
15
15
|
"fast-deep-equal": "^3.1.3",
|
|
16
|
-
"fast-xml-parser": "^4.1.
|
|
16
|
+
"fast-xml-parser": "^4.1.2",
|
|
17
17
|
"fs-extra": "^11.1.0",
|
|
18
18
|
"graceful-fs": "^4.2.10",
|
|
19
19
|
"isomorphic-git": "^1.21.0",
|
|
@@ -24,44 +24,44 @@
|
|
|
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.3",
|
|
28
|
+
"@commitlint/config-conventional": "^17.4.3",
|
|
29
|
+
"@oclif/plugin-command-snapshot": "^3.3.5",
|
|
30
|
+
"@oclif/plugin-help": "^5.2.4",
|
|
31
31
|
"@salesforce/dev-config": "^3.1.0",
|
|
32
32
|
"@salesforce/dev-scripts": "^3.1.1",
|
|
33
33
|
"@salesforce/prettier-config": "^0.0.2",
|
|
34
|
-
"@salesforce/ts-sinon": "^1.4.
|
|
34
|
+
"@salesforce/ts-sinon": "^1.4.6",
|
|
35
35
|
"@types/chai": "^4.3.4",
|
|
36
36
|
"@types/debug": "^4.1.7",
|
|
37
37
|
"@types/fs-extra": "^11.0.1",
|
|
38
38
|
"@types/marked": "^4.0.8",
|
|
39
39
|
"@types/marked-terminal": "^3.1.3",
|
|
40
40
|
"@types/mocha": "^10.0.1",
|
|
41
|
-
"@types/node": "^18.
|
|
41
|
+
"@types/node": "^18.13.0",
|
|
42
42
|
"@types/semver": "^7.3.13",
|
|
43
43
|
"@types/sinon": "10.0.13",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
45
|
-
"@typescript-eslint/parser": "^5.
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
45
|
+
"@typescript-eslint/parser": "^5.52.0",
|
|
46
46
|
"chai": "^4.3.7",
|
|
47
|
-
"eslint": "^8.
|
|
47
|
+
"eslint": "^8.34.0",
|
|
48
48
|
"eslint-config-oclif": "^4.0",
|
|
49
49
|
"eslint-config-prettier": "^8.6.0",
|
|
50
50
|
"eslint-config-salesforce": "^1.1.1",
|
|
51
51
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
52
52
|
"eslint-plugin-header": "^3.1.1",
|
|
53
53
|
"eslint-plugin-import": "2.27.5",
|
|
54
|
-
"eslint-plugin-jsdoc": "^39.
|
|
54
|
+
"eslint-plugin-jsdoc": "^39.9.1",
|
|
55
55
|
"eslint-plugin-prettier": "^4.2.1",
|
|
56
|
-
"eslint-plugin-sf-plugin": "^1.8.
|
|
56
|
+
"eslint-plugin-sf-plugin": "^1.8.1",
|
|
57
57
|
"husky": "^8.0.3",
|
|
58
58
|
"is-ci": "^3.0.1",
|
|
59
59
|
"mocha": "^10.2.0",
|
|
60
60
|
"nyc": "^15.1.0",
|
|
61
|
-
"oclif": "^3.6.
|
|
61
|
+
"oclif": "^3.6.5",
|
|
62
62
|
"patch-package": "^6.5.1",
|
|
63
63
|
"pinst": "^3.0.0",
|
|
64
|
-
"prettier": "^2.8.
|
|
64
|
+
"prettier": "^2.8.4",
|
|
65
65
|
"pretty-quick": "^3.1.3",
|
|
66
66
|
"shx": "^0.3.4",
|
|
67
67
|
"sinon": "15.0.1",
|