@jayree/sfdx-plugin-manifest 3.0.2 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -0
- package/README.md +4 -4
- package/oclif.manifest.json +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
## [3.0.3](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.2...v3.0.3) (2023-03-17)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @oclif/core from 2.6.2 to 2.6.4 ([#618](https://github.com/jayree/sfdx-plugin-manifest/issues/618)) ([be7b542](https://github.com/jayree/sfdx-plugin-manifest/commit/be7b5421fe5d7e0d06f043481de17ecfaee9c70f))
|
7
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.11.3 to 7.12.0 ([#616](https://github.com/jayree/sfdx-plugin-manifest/issues/616)) ([04578d9](https://github.com/jayree/sfdx-plugin-manifest/commit/04578d96c57abac31ea91f277bf7873bc6214a11))
|
8
|
+
* **deps:** bump graceful-fs from 4.2.10 to 4.2.11 ([#620](https://github.com/jayree/sfdx-plugin-manifest/issues/620)) ([0b33da8](https://github.com/jayree/sfdx-plugin-manifest/commit/0b33da83fa59b7041e228b5e25d59cec0980985e))
|
9
|
+
* **deps:** bump isomorphic-git from 1.21.0 to 1.22.0 ([#624](https://github.com/jayree/sfdx-plugin-manifest/issues/624)) ([c57739c](https://github.com/jayree/sfdx-plugin-manifest/commit/c57739c80a926a719c61ef9d65c7f477b2923282))
|
10
|
+
* **deps:** bump listr2 from 5.0.7 to 5.0.8 ([#623](https://github.com/jayree/sfdx-plugin-manifest/issues/623)) ([4ae28a2](https://github.com/jayree/sfdx-plugin-manifest/commit/4ae28a29a214bd0add6fc2d55319ee380d8a8c44))
|
11
|
+
|
1
12
|
## [3.0.2](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.1...v3.0.2) (2023-03-15)
|
2
13
|
|
3
14
|
|
package/README.md
CHANGED
@@ -48,7 +48,7 @@ EXAMPLES
|
|
48
48
|
$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
|
49
49
|
```
|
50
50
|
|
51
|
-
_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.3/src/commands/jayree/manifest/cleanup.ts)_
|
52
52
|
|
53
53
|
### `sfdx jayree:manifest:generate`
|
54
54
|
|
@@ -84,7 +84,7 @@ EXAMPLES
|
|
84
84
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
85
85
|
```
|
86
86
|
|
87
|
-
_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.3/src/commands/jayree/manifest/generate.ts)_
|
88
88
|
|
89
89
|
### `sfdx jayree:manifest:git:diff`
|
90
90
|
|
@@ -166,7 +166,7 @@ FLAG DESCRIPTIONS
|
|
166
166
|
The location can be an absolute path or relative to the current working directory.
|
167
167
|
```
|
168
168
|
|
169
|
-
_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.3/src/commands/jayree/manifest/git/diff.ts)_
|
170
170
|
|
171
171
|
### `sfdx jayree:manifest:legacy:git:diff`
|
172
172
|
|
@@ -244,5 +244,5 @@ FLAG DESCRIPTIONS
|
|
244
244
|
The location can be an absolute path or relative to the current working directory.
|
245
245
|
```
|
246
246
|
|
247
|
-
_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.3/src/commands/jayree/manifest/legacy/git/diff.ts)_
|
248
248
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
@@ -1,29 +1,29 @@
|
|
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.3",
|
5
5
|
"author": "jayree",
|
6
6
|
"type": "module",
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
8
8
|
"dependencies": {
|
9
9
|
"@jayree/changelog": "^1.1.0",
|
10
|
-
"@oclif/core": "^2.6.
|
10
|
+
"@oclif/core": "^2.6.4",
|
11
11
|
"@salesforce/kit": "^1.9.2",
|
12
12
|
"@salesforce/sf-plugins-core": "^2.2.4",
|
13
|
-
"@salesforce/source-deploy-retrieve": "^7.
|
13
|
+
"@salesforce/source-deploy-retrieve": "^7.12.0",
|
14
14
|
"@salesforce/ts-types": "^1.7.3",
|
15
15
|
"debug": "^4.3.4",
|
16
16
|
"fast-deep-equal": "^3.1.3",
|
17
17
|
"fast-xml-parser": "^4.1.3",
|
18
18
|
"fs-extra": "^11.1.0",
|
19
|
-
"graceful-fs": "^4.2.
|
20
|
-
"isomorphic-git": "^1.
|
21
|
-
"listr2": "^5.0.
|
19
|
+
"graceful-fs": "^4.2.11",
|
20
|
+
"isomorphic-git": "^1.22.0",
|
21
|
+
"listr2": "^5.0.8",
|
22
22
|
"tslib": "^2.5.0"
|
23
23
|
},
|
24
24
|
"devDependencies": {
|
25
25
|
"@oclif/plugin-command-snapshot": "^3.3.8",
|
26
|
-
"@oclif/plugin-help": "^5.2.
|
26
|
+
"@oclif/plugin-help": "^5.2.8",
|
27
27
|
"@salesforce/dev-config": "^3.1.0",
|
28
28
|
"@salesforce/dev-scripts": "^4.1.2",
|
29
29
|
"@salesforce/prettier-config": "^0.0.2",
|
@@ -31,11 +31,11 @@
|
|
31
31
|
"@types/debug": "^4.1.7",
|
32
32
|
"@types/fs-extra": "^11.0.1",
|
33
33
|
"@types/inquirer": "^9.0.3",
|
34
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
35
|
-
"@typescript-eslint/parser": "^5.
|
34
|
+
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
35
|
+
"@typescript-eslint/parser": "^5.55.0",
|
36
36
|
"c8": "^7.13.0",
|
37
37
|
"chai": "^4.3.7",
|
38
|
-
"eslint": "^8.
|
38
|
+
"eslint": "^8.36.0",
|
39
39
|
"eslint-config-oclif": "^4.0",
|
40
40
|
"eslint-config-prettier": "^8.7.0",
|
41
41
|
"eslint-config-salesforce": "^1.1.1",
|
@@ -43,9 +43,9 @@
|
|
43
43
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
44
44
|
"eslint-plugin-header": "^3.1.1",
|
45
45
|
"eslint-plugin-import": "2.27.5",
|
46
|
-
"eslint-plugin-jsdoc": "^40.0.
|
46
|
+
"eslint-plugin-jsdoc": "^40.0.3",
|
47
47
|
"eslint-plugin-prettier": "^4.2.1",
|
48
|
-
"eslint-plugin-sf-plugin": "^1.
|
48
|
+
"eslint-plugin-sf-plugin": "^1.14.0",
|
49
49
|
"husky": "^8.0.3",
|
50
50
|
"is-ci": "^3.0.1",
|
51
51
|
"mocha": "^10.2.0",
|
@@ -55,7 +55,7 @@
|
|
55
55
|
"prettier": "^2.8.4",
|
56
56
|
"pretty-quick": "^3.1.3",
|
57
57
|
"shx": "^0.3.4",
|
58
|
-
"sinon": "15.0.
|
58
|
+
"sinon": "15.0.2",
|
59
59
|
"ts-node": "^10.9.1",
|
60
60
|
"typescript": "^4.9.5",
|
61
61
|
"wireit": "^0.9.5"
|