@jayree/sfdx-plugin-manifest 2.8.0 → 2.8.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +9 -0
- package/README.md +4 -4
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [2.8.1](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.0...v2.8.1) (2023-02-03)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @oclif/core from 2.0.7 to 2.0.8 ([#554](https://github.com/jayree/sfdx-plugin-manifest/issues/554)) ([f74ea1c](https://github.com/jayree/sfdx-plugin-manifest/commit/f74ea1c5853baef38287580e5b5687f77c87c20e))
|
7
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.7.6 to 7.8.0 ([#556](https://github.com/jayree/sfdx-plugin-manifest/issues/556)) ([69b7336](https://github.com/jayree/sfdx-plugin-manifest/commit/69b7336fd0ae4516d07d57d0205d9676cef1d345))
|
8
|
+
* **deps:** bump fast-xml-parser from 4.0.15 to 4.1.1 ([#549](https://github.com/jayree/sfdx-plugin-manifest/issues/549)) ([c8262dc](https://github.com/jayree/sfdx-plugin-manifest/commit/c8262dc72c813c798df3b0839e97df7f3f85913d))
|
9
|
+
|
1
10
|
# [2.8.0](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.7.4...v2.8.0) (2023-01-30)
|
2
11
|
|
3
12
|
|
package/README.md
CHANGED
@@ -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.1/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.1/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.1/src/commands/jayree/manifest/generate.ts)_
|
167
167
|
|
168
168
|
### `sfdx jayree:manifest:git:diff`
|
169
169
|
|
@@ -241,5 +241,5 @@ FLAG DESCRIPTIONS
|
|
241
241
|
The location can be an absolute path or relative to the current working directory.
|
242
242
|
```
|
243
243
|
|
244
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.
|
244
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.1/src/commands/jayree/manifest/git/diff.ts)_
|
245
245
|
<!-- 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.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.0.
|
9
|
+
"@oclif/core": "^2.0.8",
|
10
10
|
"@salesforce/kit": "^1.8.4",
|
11
11
|
"@salesforce/sf-plugins-core": "^2.0.1",
|
12
|
-
"@salesforce/source-deploy-retrieve": "^7.
|
12
|
+
"@salesforce/source-deploy-retrieve": "^7.8.0",
|
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.
|
16
|
+
"fast-xml-parser": "^4.1.1",
|
17
17
|
"fs-extra": "^11.1.0",
|
18
18
|
"graceful-fs": "^4.2.10",
|
19
19
|
"isomorphic-git": "^1.21.0",
|
@@ -41,8 +41,8 @@
|
|
41
41
|
"@types/node": "^18.11.18",
|
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.50.0",
|
45
|
+
"@typescript-eslint/parser": "^5.50.0",
|
46
46
|
"chai": "^4.3.7",
|
47
47
|
"eslint": "^8.33.0",
|
48
48
|
"eslint-config-oclif": "^4.0",
|
@@ -51,14 +51,14 @@
|
|
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.7.
|
54
|
+
"eslint-plugin-jsdoc": "^39.7.5",
|
55
55
|
"eslint-plugin-prettier": "^4.2.1",
|
56
56
|
"eslint-plugin-sf-plugin": "^1.8.0",
|
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.2",
|
62
62
|
"patch-package": "^6.5.1",
|
63
63
|
"pinst": "^3.0.0",
|
64
64
|
"prettier": "^2.8.3",
|
@@ -67,7 +67,7 @@
|
|
67
67
|
"sinon": "15.0.1",
|
68
68
|
"source-map-support": "~0.5.21",
|
69
69
|
"ts-node": "^10.9.1",
|
70
|
-
"typescript": "^4.9.
|
70
|
+
"typescript": "^4.9.5"
|
71
71
|
},
|
72
72
|
"engines": {
|
73
73
|
"node": ">=14.0.0"
|