@jayree/sfdx-plugin-manifest 2.8.6 → 2.8.7
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 +12 -12
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [2.8.7](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.6...v2.8.7) (2023-02-24)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @salesforce/kit from 1.8.5 to 1.9.0 ([#594](https://github.com/jayree/sfdx-plugin-manifest/issues/594)) ([771e6c0](https://github.com/jayree/sfdx-plugin-manifest/commit/771e6c08efbdfd6155083c6bd098248710dca99d))
|
7
|
+
* **deps:** bump @salesforce/sf-plugins-core from 2.1.2 to 2.2.2 ([#586](https://github.com/jayree/sfdx-plugin-manifest/issues/586)) ([15c5d80](https://github.com/jayree/sfdx-plugin-manifest/commit/15c5d8027cf62b73bb51fb0c816e44160c6180ed))
|
8
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.9.3 to 7.10.1 ([#592](https://github.com/jayree/sfdx-plugin-manifest/issues/592)) ([d3c3d59](https://github.com/jayree/sfdx-plugin-manifest/commit/d3c3d5992b313ce3317c2873de2c64bfe5fd7e6c))
|
9
|
+
|
1
10
|
## [2.8.6](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.5...v2.8.6) (2023-02-22)
|
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.7/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.7/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.7/src/commands/jayree/manifest/generate.ts)_
|
167
167
|
|
168
168
|
### `sfdx jayree:manifest:git:diff`
|
169
169
|
|
@@ -240,5 +240,5 @@ FLAG DESCRIPTIONS
|
|
240
240
|
The location can be an absolute path or relative to the current working directory.
|
241
241
|
```
|
242
242
|
|
243
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.
|
243
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.8.7/src/commands/jayree/manifest/git/diff.ts)_
|
244
244
|
<!-- 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": "2.8.
|
4
|
+
"version": "2.8.7",
|
5
5
|
"author": "jayree",
|
6
6
|
"type": "module",
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
8
8
|
"dependencies": {
|
9
9
|
"@oclif/core": "^2.1.5",
|
10
|
-
"@salesforce/kit": "^1.
|
11
|
-
"@salesforce/sf-plugins-core": "^2.
|
12
|
-
"@salesforce/source-deploy-retrieve": "^7.
|
10
|
+
"@salesforce/kit": "^1.9.0",
|
11
|
+
"@salesforce/sf-plugins-core": "^2.2.2",
|
12
|
+
"@salesforce/source-deploy-retrieve": "^7.10.1",
|
13
13
|
"@salesforce/ts-types": "^1.7.3",
|
14
14
|
"debug": "^4.3.4",
|
15
15
|
"fast-deep-equal": "^3.1.3",
|
@@ -24,10 +24,10 @@
|
|
24
24
|
"tslib": "^2.5.0"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@commitlint/cli": "^17.4.
|
28
|
-
"@commitlint/config-conventional": "^17.4.
|
29
|
-
"@oclif/plugin-command-snapshot": "^3.3.
|
30
|
-
"@oclif/plugin-help": "^5.2.
|
27
|
+
"@commitlint/cli": "^17.4.4",
|
28
|
+
"@commitlint/config-conventional": "^17.4.4",
|
29
|
+
"@oclif/plugin-command-snapshot": "^3.3.6",
|
30
|
+
"@oclif/plugin-help": "^5.2.5",
|
31
31
|
"@salesforce/dev-config": "^3.1.0",
|
32
32
|
"@salesforce/dev-scripts": "^3.1.1",
|
33
33
|
"@salesforce/prettier-config": "^0.0.2",
|
@@ -39,11 +39,11 @@
|
|
39
39
|
"@types/marked": "^4.0.8",
|
40
40
|
"@types/marked-terminal": "^3.1.3",
|
41
41
|
"@types/mocha": "^10.0.1",
|
42
|
-
"@types/node": "^18.
|
42
|
+
"@types/node": "^18.14.1",
|
43
43
|
"@types/semver": "^7.3.13",
|
44
44
|
"@types/sinon": "10.0.13",
|
45
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
46
|
-
"@typescript-eslint/parser": "^5.
|
45
|
+
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
46
|
+
"@typescript-eslint/parser": "^5.53.0",
|
47
47
|
"chai": "^4.3.7",
|
48
48
|
"eslint": "^8.34.0",
|
49
49
|
"eslint-config-oclif": "^4.0",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"is-ci": "^3.0.1",
|
60
60
|
"mocha": "^10.2.0",
|
61
61
|
"nyc": "^15.1.0",
|
62
|
-
"oclif": "^3.
|
62
|
+
"oclif": "^3.7.0",
|
63
63
|
"patch-package": "^6.5.1",
|
64
64
|
"pinst": "^3.0.0",
|
65
65
|
"prettier": "^2.8.4",
|