@jayree/sfdx-plugin-manifest 3.0.8 → 3.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +15 -0
- package/README.md +4 -4
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## [3.0.10](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.9...v3.0.10) (2023-04-14)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @oclif/core from 2.8.0 to 2.8.2 ([#664](https://github.com/jayree/sfdx-plugin-manifest/issues/664)) ([d353da6](https://github.com/jayree/sfdx-plugin-manifest/commit/d353da6d6603ed2068aaf5632d34726a538bdfb1))
|
7
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.15.0 to 7.15.1 ([#657](https://github.com/jayree/sfdx-plugin-manifest/issues/657)) ([44c2d3f](https://github.com/jayree/sfdx-plugin-manifest/commit/44c2d3f6c4d94c8ddd9b1b2b47adf446f3515bc1))
|
8
|
+
|
9
|
+
## [3.0.9](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.8...v3.0.9) (2023-04-13)
|
10
|
+
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
* **deps:** bump vm2 from 3.9.15 to 3.9.16 ([#656](https://github.com/jayree/sfdx-plugin-manifest/issues/656)) ([1fa7432](https://github.com/jayree/sfdx-plugin-manifest/commit/1fa74322316312c93677b79071276ef476f2bb4e))
|
15
|
+
|
1
16
|
## [3.0.8](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.7...v3.0.8) (2023-04-08)
|
2
17
|
|
3
18
|
|
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.10/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.10/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.10/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.10/src/commands/jayree/manifest/legacy/git/diff.ts)_
|
248
248
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
@@ -1,16 +1,16 @@
|
|
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.10",
|
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.8.
|
10
|
+
"@oclif/core": "^2.8.2",
|
11
11
|
"@salesforce/kit": "^1.9.2",
|
12
12
|
"@salesforce/sf-plugins-core": "^2.2.7",
|
13
|
-
"@salesforce/source-deploy-retrieve": "^7.15.
|
13
|
+
"@salesforce/source-deploy-retrieve": "^7.15.1",
|
14
14
|
"@salesforce/ts-types": "^1.7.3",
|
15
15
|
"debug": "^4.3.4",
|
16
16
|
"fast-deep-equal": "^3.1.3",
|
@@ -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.58.0",
|
35
|
+
"@typescript-eslint/parser": "^5.58.0",
|
36
36
|
"c8": "^7.13.0",
|
37
37
|
"chai": "^4.3.7",
|
38
|
-
"eslint": "^8.
|
38
|
+
"eslint": "^8.38.0",
|
39
39
|
"eslint-config-oclif": "^4.0",
|
40
40
|
"eslint-config-prettier": "^8.8.0",
|
41
41
|
"eslint-config-salesforce": "^1.1.1",
|
@@ -43,21 +43,21 @@
|
|
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.
|
46
|
+
"eslint-plugin-jsdoc": "^40.3.0",
|
47
47
|
"eslint-plugin-prettier": "^4.2.1",
|
48
|
-
"eslint-plugin-sf-plugin": "^1.
|
48
|
+
"eslint-plugin-sf-plugin": "^1.15.1",
|
49
49
|
"husky": "^8.0.3",
|
50
50
|
"is-ci": "^3.0.1",
|
51
51
|
"mocha": "^10.2.0",
|
52
52
|
"nyc": "^15.1.0",
|
53
|
-
"oclif": "^3.
|
53
|
+
"oclif": "^3.8.0",
|
54
54
|
"patch-package": "^6.5.1",
|
55
55
|
"prettier": "^2.8.7",
|
56
56
|
"pretty-quick": "^3.1.3",
|
57
57
|
"shx": "^0.3.4",
|
58
58
|
"sinon": "15.0.3",
|
59
59
|
"ts-node": "^10.9.1",
|
60
|
-
"typescript": "^5.0.
|
60
|
+
"typescript": "^5.0.4",
|
61
61
|
"wireit": "^0.9.5"
|
62
62
|
},
|
63
63
|
"engines": {
|