@jayree/sfdx-plugin-manifest 3.1.21 → 3.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [3.1.22](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.21...v3.1.22) (2023-08-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @salesforce/source-deploy-retrieve from 9.7.7 to 9.7.8 ([#899](https://github.com/jayree/sfdx-plugin-manifest/issues/899)) ([3e90b1f](https://github.com/jayree/sfdx-plugin-manifest/commit/3e90b1f97ef2da14c0106cbe30e266192ddcb428))
7
+
1
8
  ## [3.1.21](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.20...v3.1.21) (2023-08-25)
2
9
 
3
10
 
package/README.md CHANGED
@@ -47,7 +47,7 @@ EXAMPLES
47
47
  $ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
48
48
  ```
49
49
 
50
- _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.21/src/commands/jayree/manifest/cleanup.ts)_
50
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.22/src/commands/jayree/manifest/cleanup.ts)_
51
51
 
52
52
  ### `sfdx jayree:manifest:generate`
53
53
 
@@ -83,7 +83,7 @@ EXAMPLES
83
83
  <Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
84
84
  ```
85
85
 
86
- _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.21/src/commands/jayree/manifest/generate.ts)_
86
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.22/src/commands/jayree/manifest/generate.ts)_
87
87
 
88
88
  ### `sfdx jayree:manifest:git:diff`
89
89
 
@@ -165,5 +165,5 @@ FLAG DESCRIPTIONS
165
165
  The location can be an absolute path or relative to the current working directory.
166
166
  ```
167
167
 
168
- _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.21/src/commands/jayree/manifest/git/diff.ts)_
168
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.22/src/commands/jayree/manifest/git/diff.ts)_
169
169
  <!-- commandsstop -->
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.1.21",
2
+ "version": "3.1.22",
3
3
  "commands": {
4
4
  "jayree:manifest:cleanup": {
5
5
  "id": "jayree:manifest:cleanup",
package/package.json CHANGED
@@ -1,14 +1,14 @@
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.1.21",
4
+ "version": "3.1.22",
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.5",
10
10
  "@salesforce/sf-plugins-core": "^3.1.18",
11
- "@salesforce/source-deploy-retrieve": "^9.7.7",
11
+ "@salesforce/source-deploy-retrieve": "^9.7.8",
12
12
  "debug": "^4.3.4",
13
13
  "fast-deep-equal": "^3.1.3",
14
14
  "fast-xml-parser": "^4.2.7",
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "devDependencies": {
21
21
  "@oclif/plugin-command-snapshot": "^4.0.14",
22
- "@oclif/plugin-help": "^5.2.17",
23
- "@salesforce/cli-plugins-testkit": "^4.3.1",
22
+ "@oclif/plugin-help": "^5.2.18",
23
+ "@salesforce/cli-plugins-testkit": "^4.3.2",
24
24
  "@salesforce/dev-config": "^4.0.1",
25
25
  "@salesforce/dev-scripts": "^5.7.0",
26
26
  "@salesforce/prettier-config": "^0.0.3",
@@ -33,7 +33,7 @@
33
33
  "@typescript-eslint/parser": "^6.4.1",
34
34
  "c8": "^8.0.1",
35
35
  "chai": "^4.3.8",
36
- "eslint": "^8.47.0",
36
+ "eslint": "^8.48.0",
37
37
  "eslint-config-oclif": "^4.0",
38
38
  "eslint-config-prettier": "^9.0.0",
39
39
  "eslint-config-salesforce": "^2.0.2",
@@ -54,8 +54,8 @@
54
54
  "shx": "^0.3.4",
55
55
  "sinon": "15.2.0",
56
56
  "ts-node": "^10.9.1",
57
- "typedoc": "0.24.8",
58
- "typedoc-plugin-missing-exports": "2.0.1",
57
+ "typedoc": "0.25.0",
58
+ "typedoc-plugin-missing-exports": "2.1.0",
59
59
  "typescript": "^5.2.2",
60
60
  "wireit": "^0.10.0"
61
61
  },