@jayree/sfdx-plugin-manifest 3.1.15 → 3.1.16

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
+ ## [3.1.16](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.15...v3.1.16) (2023-07-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @salesforce/sf-plugins-core from 3.1.10 to 3.1.12 ([#832](https://github.com/jayree/sfdx-plugin-manifest/issues/832)) ([e4f52f6](https://github.com/jayree/sfdx-plugin-manifest/commit/e4f52f65e0ce905bfdbeded5ffc71dcb4e90b11a))
7
+ * **deps:** bump @salesforce/source-deploy-retrieve from 9.4.2 to 9.5.0 ([#841](https://github.com/jayree/sfdx-plugin-manifest/issues/841)) ([19c0ae9](https://github.com/jayree/sfdx-plugin-manifest/commit/19c0ae9223740722b20972f28fc360bf1f02ec9e))
8
+ * **deps:** bump tslib from 2.6.0 to 2.6.1 ([#833](https://github.com/jayree/sfdx-plugin-manifest/issues/833)) ([44f34e2](https://github.com/jayree/sfdx-plugin-manifest/commit/44f34e2158eee12c309079aca64d2c9e9442fce7))
9
+
1
10
  ## [3.1.15](https://github.com/jayree/sfdx-plugin-manifest/compare/v3.1.14...v3.1.15) (2023-07-21)
2
11
 
3
12
 
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.15/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.16/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.15/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.16/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.15/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.16/src/commands/jayree/manifest/git/diff.ts)_
169
169
  <!-- commandsstop -->
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.1.15",
2
+ "version": "3.1.16",
3
3
  "commands": {
4
4
  "jayree:manifest:cleanup": {
5
5
  "id": "jayree:manifest:cleanup",
package/package.json CHANGED
@@ -1,26 +1,26 @@
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.15",
4
+ "version": "3.1.16",
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.4",
10
- "@salesforce/sf-plugins-core": "^3.1.10",
11
- "@salesforce/source-deploy-retrieve": "^9.4.2",
10
+ "@salesforce/sf-plugins-core": "^3.1.12",
11
+ "@salesforce/source-deploy-retrieve": "^9.5.0",
12
12
  "debug": "^4.3.4",
13
13
  "fast-deep-equal": "^3.1.3",
14
14
  "fast-xml-parser": "^4.2.6",
15
15
  "fs-extra": "^11.1.1",
16
16
  "graceful-fs": "^4.2.11",
17
17
  "isomorphic-git": "1.24.5",
18
- "tslib": "^2.6.0"
18
+ "tslib": "^2.6.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@oclif/plugin-command-snapshot": "^4.0.9",
22
22
  "@oclif/plugin-help": "^5.2.14",
23
- "@salesforce/cli-plugins-testkit": "^4.2.6",
23
+ "@salesforce/cli-plugins-testkit": "^4.2.7",
24
24
  "@salesforce/dev-config": "^4.0.1",
25
25
  "@salesforce/dev-scripts": "^5.4.2",
26
26
  "@salesforce/prettier-config": "^0.0.3",
@@ -29,26 +29,26 @@
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": "^6.1.0",
33
- "@typescript-eslint/parser": "^6.1.0",
34
- "c8": "^8.0.0",
32
+ "@typescript-eslint/eslint-plugin": "^6.2.0",
33
+ "@typescript-eslint/parser": "^6.2.0",
34
+ "c8": "^8.0.1",
35
35
  "chai": "^4.3.7",
36
36
  "eslint": "^8.45.0",
37
37
  "eslint-config-oclif": "^4.0",
38
- "eslint-config-prettier": "^8.8.0",
38
+ "eslint-config-prettier": "^8.9.0",
39
39
  "eslint-config-salesforce": "^2.0.2",
40
40
  "eslint-config-salesforce-typescript": "^1.1.2",
41
41
  "eslint-plugin-header": "^3.1.1",
42
42
  "eslint-plugin-import": "2.27.5",
43
- "eslint-plugin-jsdoc": "^46.4.4",
43
+ "eslint-plugin-jsdoc": "^46.4.5",
44
44
  "eslint-plugin-prettier": "^4.2.1",
45
- "eslint-plugin-sf-plugin": "^1.15.13",
45
+ "eslint-plugin-sf-plugin": "^1.16.0",
46
46
  "husky": "^8.0.3",
47
47
  "is-ci": "^3.0.1",
48
48
  "mocha": "^10.2.0",
49
49
  "nyc": "^15.1.0",
50
- "oclif": "^3.9.2",
51
- "patch-package": "^7.0.2",
50
+ "oclif": "^3.10.0",
51
+ "patch-package": "^8.0.0",
52
52
  "prettier": "^2.8.8",
53
53
  "pretty-quick": "^3.1.3",
54
54
  "shx": "^0.3.4",