sfdx-git-delta 5.4.2 → 5.5.0
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 +7 -0
- package/README.md +18 -6
- package/lib/utils/cliHelper.js +3 -1
- package/lib/utils/cliHelper.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## 5.5.0 (2022-09-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* enable git diff on submodules ([#353](https://github.com/scolladon/sfdx-git-delta/issues/353)) ([263e37d](https://github.com/scolladon/sfdx-git-delta/commit/263e37dbc3991eae3893b330fe9856ee6b4569e9))
|
|
11
|
+
|
|
5
12
|
### [5.4.2](https://github.com/scolladon/sfdx-git-delta/compare/v5.4.1...v5.4.2) (2022-08-26)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ sfdx plugins:install sfdx-git-delta
|
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
```sh
|
|
64
|
-
sfdx sgd:source:delta --to "HEAD" --from "HEAD
|
|
64
|
+
sfdx sgd:source:delta --to "HEAD" --from "HEAD~1" --output "."
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
```sh
|
|
@@ -183,13 +183,25 @@ OPTIONS
|
|
|
183
183
|
this command invocation
|
|
184
184
|
```
|
|
185
185
|
|
|
186
|
-
_See code: [src/commands/sgd/source/delta.ts](https://github.com/scolladon/sfdx-git-delta/blob/v5.
|
|
186
|
+
_See code: [src/commands/sgd/source/delta.ts](https://github.com/scolladon/sfdx-git-delta/blob/v5.5.0/src/commands/sgd/source/delta.ts)_
|
|
187
187
|
<!-- commandsstop -->
|
|
188
188
|
|
|
189
189
|
### Windows users
|
|
190
190
|
|
|
191
191
|
If you run SGD on a Windows system, use double quotes [to prevent the terminal to interpret parameters](https://github.com/scolladon/sfdx-git-delta/issues/134)
|
|
192
192
|
|
|
193
|
+
You should also avoid using the "^" character ([shorthand for parent commit in git](https://git-scm.com/docs/git-rev-parse#Documentation/git-rev-parse.txt-emltrevgtltngtemegemHEADv1510em)) because it is the [escape character in Windows](https://ss64.com/nt/syntax-esc.html#:~:text=include%20the%20delimiters.-,Escape%20Character,-%5E%20%20Escape%20character.).
|
|
194
|
+
So instead of:
|
|
195
|
+
```sh
|
|
196
|
+
sfdx sgd:source:delta --from "HEAD^" # wrong git shortcut with windows because it uses "^" syntax
|
|
197
|
+
````
|
|
198
|
+
You should write:
|
|
199
|
+
```sh
|
|
200
|
+
sfdx sgd:source:delta --from "HEAD~1" # right git shortcut with windows because it does not use "^", it uses "~n" syntax
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
193
205
|
### CI/CD specificity
|
|
194
206
|
|
|
195
207
|
In CI/CD pipelines, branches are not checked out locally when the repository is cloned, so you must specify the remote prefix.
|
|
@@ -256,12 +268,12 @@ So let’s do it!
|
|
|
256
268
|
From the project repo folder, the CI pipeline will run the following command:
|
|
257
269
|
|
|
258
270
|
```sh
|
|
259
|
-
sfdx sgd:source:delta --to "HEAD" --from "HEAD
|
|
271
|
+
sfdx sgd:source:delta --to "HEAD" --from "HEAD~1" --output .
|
|
260
272
|
```
|
|
261
273
|
|
|
262
274
|
which means:
|
|
263
275
|
|
|
264
|
-
> Analyze the difference between HEAD (latest commit) and HEAD
|
|
276
|
+
> Analyze the difference between HEAD (latest commit) and HEAD~1 (previous commit), and output the result in the current folder.
|
|
265
277
|
|
|
266
278
|
The `sfdx sgd:source:delta` command produces 2 usefull artifacts:
|
|
267
279
|
|
|
@@ -325,7 +337,7 @@ Let's use this option with our previous example:
|
|
|
325
337
|
|
|
326
338
|
```sh
|
|
327
339
|
mkdir changed-sources
|
|
328
|
-
sfdx sgd:source:delta --to "HEAD" --from "HEAD
|
|
340
|
+
sfdx sgd:source:delta --to "HEAD" --from "HEAD~1" --output changed-sources/ --generate-delta
|
|
329
341
|
```
|
|
330
342
|
|
|
331
343
|
It generates the `package` and `destructiveChanges` folders, and copies added/changed files in the output folder.
|
|
@@ -341,7 +353,7 @@ _Content of the output folder when using the --generate-delta option, with the s
|
|
|
341
353
|
> # move HEAD to the wanted past commit
|
|
342
354
|
> $ git checkout <not-HEAD-commit-sha>
|
|
343
355
|
> # You can omit --to, it will take "HEAD" as default value
|
|
344
|
-
> $ sfdx sgd:source:delta --from "HEAD
|
|
356
|
+
> $ sfdx sgd:source:delta --from "HEAD~1" --output changed-sources/ --generate-delta
|
|
345
357
|
> ```
|
|
346
358
|
|
|
347
359
|
Then it is possible to deploy the `change-sources` folder using `force:source:deploy` command with `-p` parameter:
|
package/lib/utils/cliHelper.js
CHANGED
|
@@ -19,7 +19,9 @@ const fsExists = async (dir, fn) => {
|
|
|
19
19
|
const dirExists = async (dir) => await fsExists(dir, 'isDirectory');
|
|
20
20
|
const fileExists = async (file) => await fsExists(file, 'isFile');
|
|
21
21
|
const isGit = async (dir) => {
|
|
22
|
-
|
|
22
|
+
const isGitDir = await dirExists(join(dir, GIT_FOLDER));
|
|
23
|
+
const isGitFile = await fileExists(join(dir, GIT_FOLDER));
|
|
24
|
+
return isGitDir || isGitFile;
|
|
23
25
|
};
|
|
24
26
|
const isBlank = str => !str || /^\s*$/.test(str);
|
|
25
27
|
const GIT_SHA_PARAMETERS = ['to', 'from'];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cliHelper.js","sourceRoot":"","sources":["../../src/utils/cliHelper.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AACZ,MAAM,WAAW,GAAG,OAAO,CAAC,eAAe,CAAC,CAAA;AAC5C,MAAM,QAAQ,GAAG,OAAO,CAAC,eAAe,CAAC,CAAA;AACzC,MAAM,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC,CAAA;AACxC,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAA;AACvD,MAAM,EAAE,UAAU,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAA;AACnE,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;AAClC,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAA;AACvC,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;AAEhC,MAAM,QAAQ,GAAG,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE;IACjC,IAAI;QACF,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,CAAA;QAC1B,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAA;KAChB;IAAC,MAAM;QACN,OAAO,KAAK,CAAA;KACb;AACH,CAAC,CAAA;AAED,MAAM,SAAS,GAAG,KAAK,EAAC,GAAG,EAAC,EAAE,CAAC,MAAM,QAAQ,CAAC,GAAG,EAAE,aAAa,CAAC,CAAA;AAEjE,MAAM,UAAU,GAAG,KAAK,EAAC,IAAI,EAAC,EAAE,CAAC,MAAM,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAA;AAE/D,MAAM,KAAK,GAAG,KAAK,EAAC,GAAG,EAAC,EAAE;IACxB,
|
|
1
|
+
{"version":3,"file":"cliHelper.js","sourceRoot":"","sources":["../../src/utils/cliHelper.js"],"names":[],"mappings":"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"}
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"5.
|
|
1
|
+
{"version":"5.5.0","commands":{"sgd:source:delta":{"id":"sgd:source:delta","description":"Generate the sfdx content in source format and destructive change from two git commits","usage":"<%= command.id %> -f <string> [-t <string>] [-r <filepath>] [-i <filepath>] [-D <filepath>] [-s <filepath>] [-W] [-o <filepath>] [-a <number>] [-d] [-n <filepath>] [-N <filepath>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-git-delta","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"to":{"name":"to","type":"option","char":"t","description":"commit sha to where the diff is done","default":"HEAD"},"from":{"name":"from","type":"option","char":"f","description":"commit sha from where the diff is done [git rev-list --max-parents=0 HEAD]","required":true},"repo":{"name":"repo","type":"option","char":"r","description":"git repository location","default":"."},"ignore":{"name":"ignore","type":"option","char":"i","description":"file listing paths to explicitly ignore for any diff actions"},"ignore-destructive":{"name":"ignore-destructive","type":"option","char":"D","description":"file listing paths to explicitly ignore for any destructive actions"},"source":{"name":"source","type":"option","char":"s","description":"source folder focus location related to --repo","default":"."},"ignore-whitespace":{"name":"ignore-whitespace","type":"boolean","char":"W","description":"ignore git diff whitespace (space, tab, eol) changes","allowNo":false},"output":{"name":"output","type":"option","char":"o","description":"source package specific output","default":"./output"},"api-version":{"name":"api-version","type":"option","char":"a","description":"salesforce API version","default":55},"generate-delta":{"name":"generate-delta","type":"boolean","char":"d","description":"generate delta files in [--output] folder","allowNo":false},"include":{"name":"include","type":"option","char":"n","description":"file listing paths to explicitly include for any diff actions"},"include-destructive":{"name":"include-destructive","type":"option","char":"N","description":"file listing paths to explicitly include for any destructive actions"}},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfdx-git-delta",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"description": "Generate the sfdx content in source format and destructive change from two git commits",
|
|
5
5
|
"keyword": [
|
|
6
6
|
"salesforce",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"lint": "eslint .",
|
|
51
51
|
"lint:fix": "eslint --fix .",
|
|
52
52
|
"test": "jest",
|
|
53
|
+
"test:build:local": "rm -rf node_modules && yarn && yarn pack && yarn test",
|
|
53
54
|
"test:clear:cache": "jest --clearCache",
|
|
54
55
|
"test:coverage": "jest --coverage",
|
|
55
56
|
"test:debug": "node --inspect node_modules/.bin/jest",
|
|
@@ -66,20 +67,20 @@
|
|
|
66
67
|
"upgrade:dependencies": "yarn yarn-upgrade-all"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
|
-
"@commitlint/cli": "^17.
|
|
70
|
-
"@commitlint/config-angular": "^17.0
|
|
71
|
-
"@commitlint/prompt-cli": "^17.
|
|
70
|
+
"@commitlint/cli": "^17.1.2",
|
|
71
|
+
"@commitlint/config-angular": "^17.1.0",
|
|
72
|
+
"@commitlint/prompt-cli": "^17.1.2",
|
|
72
73
|
"@oclif/dev-cli": "^1.26.10",
|
|
73
74
|
"@oclif/plugin-help": "^5.1.12",
|
|
74
75
|
"@oclif/test": "^2.1.1",
|
|
75
76
|
"@salesforce/dev-config": "^3.1.0",
|
|
76
77
|
"@types/chai": "^4.3.3",
|
|
77
78
|
"@types/mocha": "^9.1.1",
|
|
78
|
-
"@types/node": "^18.7.
|
|
79
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
80
|
-
"@typescript-eslint/parser": "^5.
|
|
79
|
+
"@types/node": "^18.7.14",
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^5.36.1",
|
|
81
|
+
"@typescript-eslint/parser": "^5.36.1",
|
|
81
82
|
"conventional-github-releaser": "^3.1.5",
|
|
82
|
-
"eslint": "^8.
|
|
83
|
+
"eslint": "^8.23.0",
|
|
83
84
|
"eslint-config-prettier": "^8.5.0",
|
|
84
85
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
85
86
|
"eslint-plugin-import": "^2.26.0",
|