@jayree/sfdx-plugin-manifest 3.0.11 → 3.0.12

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## [3.0.12](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.11...v3.0.12) (2023-04-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @salesforce/sf-plugins-core from 2.2.8 to 2.2.9 ([#678](https://github.com/jayree/sfdx-plugin-manifest/issues/678)) ([79ef6e7](https://github.com/jayree/sfdx-plugin-manifest/commit/79ef6e7215f26412e658c20a400fcd383f72a9c8))
7
+ * **deps:** bump @salesforce/source-deploy-retrieve from 8.0.1 to 8.0.2 ([#677](https://github.com/jayree/sfdx-plugin-manifest/issues/677)) ([0e36f16](https://github.com/jayree/sfdx-plugin-manifest/commit/0e36f164489277ed924fcd9391cc3cbda17279f4))
8
+ * **deps:** bump fast-xml-parser from 4.2.0 to 4.2.2 ([#676](https://github.com/jayree/sfdx-plugin-manifest/issues/676)) ([1b6d295](https://github.com/jayree/sfdx-plugin-manifest/commit/1b6d295da26b8a8e7fd00fe90e698142d837cc6d))
9
+ * **deps:** bump listr2 from 6.2.0 to 6.3.1 ([#674](https://github.com/jayree/sfdx-plugin-manifest/issues/674)) ([5b7923e](https://github.com/jayree/sfdx-plugin-manifest/commit/5b7923e286ea51177831a6f465576e016c745630))
10
+ * **deps:** bump vm2 from 3.9.16 to 3.9.17 ([#670](https://github.com/jayree/sfdx-plugin-manifest/issues/670)) ([a72e1ae](https://github.com/jayree/sfdx-plugin-manifest/commit/a72e1ae463245698181ca58b45277af75eb4cdda))
11
+
1
12
  ## [3.0.11](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.10...v3.0.11) (2023-04-16)
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.11/src/commands/jayree/manifest/cleanup.ts)_
51
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.12/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.11/src/commands/jayree/manifest/generate.ts)_
87
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.12/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.11/src/commands/jayree/manifest/git/diff.ts)_
169
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.12/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.11/src/commands/jayree/manifest/legacy/git/diff.ts)_
247
+ _See code: [src/commands/jayree/manifest/legacy/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.12/src/commands/jayree/manifest/legacy/git/diff.ts)_
248
248
  <!-- commandsstop -->
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.0.11",
2
+ "version": "3.0.12",
3
3
  "commands": {
4
4
  "jayree:manifest:cleanup": {
5
5
  "id": "jayree:manifest:cleanup",
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.11",
4
+ "version": "3.0.12",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
@@ -9,16 +9,16 @@
9
9
  "@jayree/changelog": "^1.1.0",
10
10
  "@oclif/core": "^2.8.2",
11
11
  "@salesforce/kit": "^1.9.2",
12
- "@salesforce/sf-plugins-core": "^2.2.8",
13
- "@salesforce/source-deploy-retrieve": "^8.0.1",
12
+ "@salesforce/sf-plugins-core": "^2.2.9",
13
+ "@salesforce/source-deploy-retrieve": "^8.0.2",
14
14
  "@salesforce/ts-types": "^1.7.3",
15
15
  "debug": "^4.3.4",
16
16
  "fast-deep-equal": "^3.1.3",
17
- "fast-xml-parser": "^4.2.0",
17
+ "fast-xml-parser": "^4.2.2",
18
18
  "fs-extra": "^11.1.1",
19
19
  "graceful-fs": "^4.2.11",
20
20
  "isomorphic-git": "^1.23.0",
21
- "listr2": "^6.2.0",
21
+ "listr2": "^6.3.1",
22
22
  "tslib": "^2.5.0"
23
23
  },
24
24
  "devDependencies": {
@@ -31,8 +31,8 @@
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.58.0",
35
- "@typescript-eslint/parser": "^5.58.0",
34
+ "@typescript-eslint/eslint-plugin": "^5.59.0",
35
+ "@typescript-eslint/parser": "^5.59.0",
36
36
  "c8": "^7.13.0",
37
37
  "chai": "^4.3.7",
38
38
  "eslint": "^8.38.0",
@@ -43,7 +43,7 @@
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": "^41.1.1",
46
+ "eslint-plugin-jsdoc": "^41.1.2",
47
47
  "eslint-plugin-prettier": "^4.2.1",
48
48
  "eslint-plugin-sf-plugin": "^1.15.1",
49
49
  "husky": "^8.0.3",
@@ -55,7 +55,7 @@
55
55
  "prettier": "^2.8.7",
56
56
  "pretty-quick": "^3.1.3",
57
57
  "shx": "^0.3.4",
58
- "sinon": "15.0.3",
58
+ "sinon": "15.0.4",
59
59
  "ts-node": "^10.9.1",
60
60
  "typescript": "^5.0.4",
61
61
  "wireit": "^0.9.5"