@jayree/sfdx-plugin-manifest 2.9.0 → 2.9.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [2.9.1](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.9.0...v2.9.1) (2023-03-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @salesforce/sf-plugins-core from 2.2.2 to 2.2.4 ([#595](https://github.com/jayree/sfdx-plugin-manifest/issues/595)) ([f1b0c24](https://github.com/jayree/sfdx-plugin-manifest/commit/f1b0c2466d5652b60c1f066de9391a05815c219c))
7
+ * **deps:** bump @salesforce/source-deploy-retrieve from 7.10.1 to 7.11.0 ([#597](https://github.com/jayree/sfdx-plugin-manifest/issues/597)) ([1d5dafc](https://github.com/jayree/sfdx-plugin-manifest/commit/1d5dafc0f66f913a9ce1a4fd82cce15963357c40))
8
+ * **deps:** bump fast-xml-parser from 4.1.2 to 4.1.3 ([#604](https://github.com/jayree/sfdx-plugin-manifest/issues/604)) ([7076db4](https://github.com/jayree/sfdx-plugin-manifest/commit/7076db4082e7db9db04cec946e850c0f42b05136))
9
+
1
10
  # [2.9.0](https://github.com/jayree/sfdx-plugin-manifest/compare/v2.8.7...v2.9.0) (2023-02-27)
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.9.0/src/commands/jayree/manifest/beta/git/diff.ts)_
102
+ _See code: [src/commands/jayree/manifest/beta/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.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.9.0/src/commands/jayree/manifest/cleanup.ts)_
130
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.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.9.0/src/commands/jayree/manifest/generate.ts)_
166
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.1/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.9.0/src/commands/jayree/manifest/git/diff.ts)_
243
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.1/src/commands/jayree/manifest/git/diff.ts)_
244
244
  <!-- commandsstop -->
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.9.0",
2
+ "version": "2.9.1",
3
3
  "commands": {
4
4
  "jayree:manifest:cleanup": {
5
5
  "id": "jayree:manifest:cleanup",
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.9.0",
4
+ "version": "2.9.1",
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.3.0",
10
10
  "@salesforce/kit": "^1.9.0",
11
- "@salesforce/sf-plugins-core": "^2.2.2",
12
- "@salesforce/source-deploy-retrieve": "^7.10.1",
11
+ "@salesforce/sf-plugins-core": "^2.2.4",
12
+ "@salesforce/source-deploy-retrieve": "^7.11.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.1.2",
16
+ "fast-xml-parser": "^4.1.3",
17
17
  "fs-extra": "^11.1.0",
18
18
  "graceful-fs": "^4.2.10",
19
19
  "isomorphic-git": "^1.21.0",
@@ -24,8 +24,8 @@
24
24
  "tslib": "^2.5.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@oclif/plugin-command-snapshot": "^3.3.6",
28
- "@oclif/plugin-help": "^5.2.5",
27
+ "@oclif/plugin-command-snapshot": "^3.3.7",
28
+ "@oclif/plugin-help": "^5.2.6",
29
29
  "@salesforce/dev-config": "^3.1.0",
30
30
  "@salesforce/dev-scripts": "^4.1.1",
31
31
  "@salesforce/prettier-config": "^0.0.2",
@@ -36,11 +36,11 @@
36
36
  "@types/marked": "^4.0.8",
37
37
  "@types/marked-terminal": "^3.1.3",
38
38
  "@types/semver": "^7.3.13",
39
- "@typescript-eslint/eslint-plugin": "^5.53.0",
40
- "@typescript-eslint/parser": "^5.53.0",
39
+ "@typescript-eslint/eslint-plugin": "^5.54.0",
40
+ "@typescript-eslint/parser": "^5.54.0",
41
41
  "c8": "^7.12.0",
42
42
  "chai": "^4.3.7",
43
- "eslint": "^8.34.0",
43
+ "eslint": "^8.35.0",
44
44
  "eslint-config-oclif": "^4.0",
45
45
  "eslint-config-prettier": "^8.6.0",
46
46
  "eslint-config-salesforce": "^1.1.1",
@@ -48,9 +48,9 @@
48
48
  "eslint-config-salesforce-typescript": "^1.1.1",
49
49
  "eslint-plugin-header": "^3.1.1",
50
50
  "eslint-plugin-import": "2.27.5",
51
- "eslint-plugin-jsdoc": "^40.0.0",
51
+ "eslint-plugin-jsdoc": "^40.0.1",
52
52
  "eslint-plugin-prettier": "^4.2.1",
53
- "eslint-plugin-sf-plugin": "^1.8.1",
53
+ "eslint-plugin-sf-plugin": "^1.9.2",
54
54
  "husky": "^8.0.3",
55
55
  "is-ci": "^3.0.1",
56
56
  "mocha": "^10.2.0",