@jayree/sfdx-plugin-manifest 3.0.15 → 3.0.17

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.0.17](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.16...v3.0.17) (2023-05-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump vm2 from 3.9.17 to 3.9.18 ([#702](https://github.com/jayree/sfdx-plugin-manifest/issues/702)) ([2b679f7](https://github.com/jayree/sfdx-plugin-manifest/commit/2b679f7a6fbc57deb3209788eac2fe85e4902912))
7
+
8
+ ## [3.0.16](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.15...v3.0.16) (2023-05-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** bump @salesforce/source-deploy-retrieve from 8.0.6 to 8.4.0 ([#700](https://github.com/jayree/sfdx-plugin-manifest/issues/700)) ([b6ed75c](https://github.com/jayree/sfdx-plugin-manifest/commit/b6ed75ce2ac7ff09a8507cdc99a9591d5efe0411))
14
+
1
15
  ## [3.0.15](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.0.14...v3.0.15) (2023-05-06)
2
16
 
3
17
 
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.15/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.17/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.15/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.17/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.15/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.17/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.15/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.17/src/commands/jayree/manifest/legacy/git/diff.ts)_
248
248
  <!-- commandsstop -->
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.0.15",
2
+ "version": "3.0.17",
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.0.15",
4
+ "version": "3.0.17",
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.1",
10
10
  "@salesforce/sf-plugins-core": "^2.4.2",
11
- "@salesforce/source-deploy-retrieve": "^8.0.6",
11
+ "@salesforce/source-deploy-retrieve": "^8.4.0",
12
12
  "debug": "^4.3.4",
13
13
  "fast-deep-equal": "^3.1.3",
14
14
  "fast-xml-parser": "^4.2.2",
@@ -19,7 +19,7 @@
19
19
  "tslib": "^2.5.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@oclif/plugin-command-snapshot": "^3.3.13",
22
+ "@oclif/plugin-command-snapshot": "^3.3.14",
23
23
  "@oclif/plugin-help": "^5.2.9",
24
24
  "@salesforce/dev-config": "^4.0.1",
25
25
  "@salesforce/dev-scripts": "^5.0.1",
@@ -29,11 +29,11 @@
29
29
  "@types/fs-extra": "^11.0.1",
30
30
  "@types/graceful-fs": "^4.1.6",
31
31
  "@types/inquirer": "^9.0.3",
32
- "@typescript-eslint/eslint-plugin": "^5.59.2",
33
- "@typescript-eslint/parser": "^5.59.2",
32
+ "@typescript-eslint/eslint-plugin": "^5.59.5",
33
+ "@typescript-eslint/parser": "^5.59.5",
34
34
  "c8": "^7.13.0",
35
35
  "chai": "^4.3.7",
36
- "eslint": "^8.39.0",
36
+ "eslint": "^8.40.0",
37
37
  "eslint-config-oclif": "^4.0",
38
38
  "eslint-config-prettier": "^8.8.0",
39
39
  "eslint-config-salesforce": "^2.0.1",
@@ -43,7 +43,7 @@
43
43
  "eslint-plugin-import": "2.27.5",
44
44
  "eslint-plugin-jsdoc": "^43.2.0",
45
45
  "eslint-plugin-prettier": "^4.2.1",
46
- "eslint-plugin-sf-plugin": "^1.15.1",
46
+ "eslint-plugin-sf-plugin": "^1.15.2",
47
47
  "husky": "^8.0.3",
48
48
  "is-ci": "^3.0.1",
49
49
  "mocha": "^10.2.0",