@jayree/sfdx-plugin-manifest 3.0.0 → 3.0.1
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 +9 -0
- package/README.md +4 -85
- package/oclif.manifest.json +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [3.0.1](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.0...v3.0.1) (2023-03-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @oclif/core from 2.4.0 to 2.6.2 ([#606](https://github.com/jayree/sfdx-plugin-manifest/issues/606)) ([9d5cd36](https://github.com/jayree/sfdx-plugin-manifest/commit/9d5cd3605fa0cd702a1fa2ef46d2069813a370c0))
|
|
7
|
+
* **deps:** bump @salesforce/kit from 1.9.0 to 1.9.2 ([#609](https://github.com/jayree/sfdx-plugin-manifest/issues/609)) ([2872e65](https://github.com/jayree/sfdx-plugin-manifest/commit/2872e65fb21053dc9b93c5466249fb28b9d33f4a))
|
|
8
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.11.0 to 7.11.3 ([#607](https://github.com/jayree/sfdx-plugin-manifest/issues/607)) ([8dbf910](https://github.com/jayree/sfdx-plugin-manifest/commit/8dbf91005c6a45ad9562cf05e56b4505db765983))
|
|
9
|
+
|
|
1
10
|
# [3.0.0](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.9.1...v3.0.0) (2023-03-03)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -17,92 +17,11 @@ sfdx plugins:install @jayree/sfdx-plugin-manifest
|
|
|
17
17
|
## Commands
|
|
18
18
|
|
|
19
19
|
<!-- commands -->
|
|
20
|
-
* [`sfdx jayree:manifest:beta:git:diff`](#sfdx-jayreemanifestbetagitdiff)
|
|
21
20
|
* [`sfdx jayree:manifest:cleanup`](#sfdx-jayreemanifestcleanup)
|
|
22
21
|
* [`sfdx jayree:manifest:generate`](#sfdx-jayreemanifestgenerate)
|
|
23
22
|
* [`sfdx jayree:manifest:git:diff`](#sfdx-jayreemanifestgitdiff)
|
|
24
23
|
* [`sfdx jayree:manifest:legacy:git:diff`](#sfdx-jayreemanifestlegacygitdiff)
|
|
25
24
|
|
|
26
|
-
### `sfdx jayree:manifest:beta:git:diff`
|
|
27
|
-
|
|
28
|
-
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or delete based on changes in your git history.
|
|
29
|
-
|
|
30
|
-
```
|
|
31
|
-
USAGE
|
|
32
|
-
$ sfdx jayree:manifest:beta:git:diff REF1 [REF2] [--json] [--api-version <value>] [-d <value>] [--output-dir <value>]
|
|
33
|
-
[--destructive-changes-only]
|
|
34
|
-
|
|
35
|
-
ARGUMENTS
|
|
36
|
-
REF1 Base commit or branch.
|
|
37
|
-
REF2 Commit or branch to compare to the base commit.
|
|
38
|
-
|
|
39
|
-
FLAGS
|
|
40
|
-
-d, --source-dir=<value>... Path to the local source files to include in the manifest.
|
|
41
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
42
|
-
--destructive-changes-only Create a destructiveChanges manifest only.
|
|
43
|
-
--output-dir=<value> Directory to save the created manifest files.
|
|
44
|
-
|
|
45
|
-
GLOBAL FLAGS
|
|
46
|
-
--json Format output as json.
|
|
47
|
-
|
|
48
|
-
DESCRIPTION
|
|
49
|
-
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or
|
|
50
|
-
delete based on changes in your git history.
|
|
51
|
-
|
|
52
|
-
Use this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two
|
|
53
|
-
git refs.
|
|
54
|
-
|
|
55
|
-
You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
|
|
56
|
-
|
|
57
|
-
ALIASES
|
|
58
|
-
$ sfdx jayree:manifest:beta:git:diff
|
|
59
|
-
|
|
60
|
-
EXAMPLES
|
|
61
|
-
Uses the changes between two arbitrary <commit>.
|
|
62
|
-
|
|
63
|
-
$ sfdx jayree:manifest:beta:git:diff <commit> <commit>
|
|
64
|
-
$ sfdx jayree:manifest:beta:git:diff <commit>..<commit>
|
|
65
|
-
|
|
66
|
-
Uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both
|
|
67
|
-
<commit>.
|
|
68
|
-
|
|
69
|
-
$ sfdx jayree:manifest:beta:git:diff <commit>...<commit>
|
|
70
|
-
|
|
71
|
-
Uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1).
|
|
72
|
-
|
|
73
|
-
$ sfdx jayree:manifest:beta:git:diff branchA..branchB
|
|
74
|
-
|
|
75
|
-
Uses the diff of what is unique in branchB (REF2).
|
|
76
|
-
|
|
77
|
-
$ sfdx jayree:manifest:beta:git:diff branchA...branchB
|
|
78
|
-
|
|
79
|
-
Specify the flags before or after the REF args
|
|
80
|
-
|
|
81
|
-
$ sfdx jayree:manifest:beta:git:diff --output-dir package <commit> <commit>
|
|
82
|
-
$ sfdx jayree:manifest:beta:git:diff <commit> <commit> --output-dir package
|
|
83
|
-
|
|
84
|
-
If you specify the 'source-dir' flag before the REF args, use '--' to separate the args from the 'source-dir'
|
|
85
|
-
values.
|
|
86
|
-
|
|
87
|
-
$ sfdx jayree:manifest:beta:git:diff --source-dir force-app -- <commit> <commit>
|
|
88
|
-
|
|
89
|
-
FLAG DESCRIPTIONS
|
|
90
|
-
-d, --source-dir=<value>... Path to the local source files to include in the manifest.
|
|
91
|
-
|
|
92
|
-
The supplied path can be to a single file (in which case the operation is applied to only one file) or to a folder
|
|
93
|
-
(in which case the operation is applied to all metadata types in the directory and its subdirectories).
|
|
94
|
-
|
|
95
|
-
You can specify this flag more than once.
|
|
96
|
-
|
|
97
|
-
--destructive-changes-only Create a destructiveChanges manifest only.
|
|
98
|
-
|
|
99
|
-
Use this flag to create a 'destructiveChanges.xml' and a blank 'package.xml'.
|
|
100
|
-
|
|
101
|
-
--output-dir=<value> Directory to save the created manifest files.
|
|
102
|
-
|
|
103
|
-
The location can be an absolute path or relative to the current working directory.
|
|
104
|
-
```
|
|
105
|
-
|
|
106
25
|
### `sfdx jayree:manifest:cleanup`
|
|
107
26
|
|
|
108
27
|
Removes those tags from a manifest file that are present in a second manifest file.
|
|
@@ -129,7 +48,7 @@ EXAMPLES
|
|
|
129
48
|
$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
|
|
130
49
|
```
|
|
131
50
|
|
|
132
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.
|
|
51
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.1/src/commands/jayree/manifest/cleanup.ts)_
|
|
133
52
|
|
|
134
53
|
### `sfdx jayree:manifest:generate`
|
|
135
54
|
|
|
@@ -165,7 +84,7 @@ EXAMPLES
|
|
|
165
84
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
166
85
|
```
|
|
167
86
|
|
|
168
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.
|
|
87
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.1/src/commands/jayree/manifest/generate.ts)_
|
|
169
88
|
|
|
170
89
|
### `sfdx jayree:manifest:git:diff`
|
|
171
90
|
|
|
@@ -247,7 +166,7 @@ FLAG DESCRIPTIONS
|
|
|
247
166
|
The location can be an absolute path or relative to the current working directory.
|
|
248
167
|
```
|
|
249
168
|
|
|
250
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.
|
|
169
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.1/src/commands/jayree/manifest/git/diff.ts)_
|
|
251
170
|
|
|
252
171
|
### `sfdx jayree:manifest:legacy:git:diff`
|
|
253
172
|
|
|
@@ -325,5 +244,5 @@ FLAG DESCRIPTIONS
|
|
|
325
244
|
The location can be an absolute path or relative to the current working directory.
|
|
326
245
|
```
|
|
327
246
|
|
|
328
|
-
_See code: [src/commands/jayree/manifest/legacy/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.
|
|
247
|
+
_See code: [src/commands/jayree/manifest/legacy/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.1/src/commands/jayree/manifest/legacy/git/diff.ts)_
|
|
329
248
|
<!-- commandsstop -->
|
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": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
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.
|
|
10
|
-
"@salesforce/kit": "^1.9.
|
|
9
|
+
"@oclif/core": "^2.6.2",
|
|
10
|
+
"@salesforce/kit": "^1.9.2",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^2.2.4",
|
|
12
|
-
"@salesforce/source-deploy-retrieve": "^7.11.
|
|
12
|
+
"@salesforce/source-deploy-retrieve": "^7.11.3",
|
|
13
13
|
"@salesforce/ts-types": "^1.7.3",
|
|
14
14
|
"debug": "^4.3.4",
|
|
15
15
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"tslib": "^2.5.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@oclif/plugin-command-snapshot": "^3.3.
|
|
28
|
-
"@oclif/plugin-help": "^5.2.
|
|
27
|
+
"@oclif/plugin-command-snapshot": "^3.3.8",
|
|
28
|
+
"@oclif/plugin-help": "^5.2.7",
|
|
29
29
|
"@salesforce/dev-config": "^3.1.0",
|
|
30
30
|
"@salesforce/dev-scripts": "^4.1.2",
|
|
31
31
|
"@salesforce/prettier-config": "^0.0.2",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"@types/marked": "^4.0.8",
|
|
37
37
|
"@types/marked-terminal": "^3.1.3",
|
|
38
38
|
"@types/semver": "^7.3.13",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "^5.54.
|
|
40
|
-
"@typescript-eslint/parser": "^5.54.
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
40
|
+
"@typescript-eslint/parser": "^5.54.1",
|
|
41
41
|
"c8": "^7.13.0",
|
|
42
42
|
"chai": "^4.3.7",
|
|
43
43
|
"eslint": "^8.35.0",
|
|
44
44
|
"eslint-config-oclif": "^4.0",
|
|
45
|
-
"eslint-config-prettier": "^8.
|
|
45
|
+
"eslint-config-prettier": "^8.7.0",
|
|
46
46
|
"eslint-config-salesforce": "^1.1.1",
|
|
47
47
|
"eslint-config-salesforce-license": "^0.2.0",
|
|
48
48
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"eslint-plugin-import": "2.27.5",
|
|
51
51
|
"eslint-plugin-jsdoc": "^40.0.1",
|
|
52
52
|
"eslint-plugin-prettier": "^4.2.1",
|
|
53
|
-
"eslint-plugin-sf-plugin": "^1.
|
|
53
|
+
"eslint-plugin-sf-plugin": "^1.11.0",
|
|
54
54
|
"husky": "^8.0.3",
|
|
55
55
|
"is-ci": "^3.0.1",
|
|
56
56
|
"mocha": "^10.2.0",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"prepack": "sf-prepack",
|
|
143
143
|
"prepare": "patch-package && sf-install",
|
|
144
144
|
"test": "wireit",
|
|
145
|
-
"version": "oclif readme"
|
|
145
|
+
"version": "oclif readme --no-aliases"
|
|
146
146
|
},
|
|
147
147
|
"publishConfig": {
|
|
148
148
|
"access": "public"
|