@jayree/sfdx-plugin-manifest 3.5.21 → 3.5.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 +9 -0
- package/README.md +3 -3
- package/npm-shrinkwrap.json +14 -14
- package/oclif.lock +12 -12
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [3.5.22](https://github.com/jayree/sfdx-plugin-manifest/compare/3.5.21...3.5.22) (2024-10-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 12.7.2 to 12.7.4 ([#1511](https://github.com/jayree/sfdx-plugin-manifest/issues/1511)) ([a40547a](https://github.com/jayree/sfdx-plugin-manifest/commit/a40547a46d3110d8c98ce7732ba6caff7ee110bb))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## [3.5.21](https://github.com/jayree/sfdx-plugin-manifest/compare/3.5.20...3.5.21) (2024-09-29)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ EXAMPLES
|
|
|
60
60
|
$ sf jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.5.
|
|
63
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.5.22/src/commands/jayree/manifest/cleanup.ts)_
|
|
64
64
|
|
|
65
65
|
### `sf jayree manifest generate`
|
|
66
66
|
|
|
@@ -98,7 +98,7 @@ EXAMPLES
|
|
|
98
98
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.5.
|
|
101
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.5.22/src/commands/jayree/manifest/generate.ts)_
|
|
102
102
|
|
|
103
103
|
### `sf jayree manifest git diff REF1 [REF2]`
|
|
104
104
|
|
|
@@ -181,5 +181,5 @@ FLAG DESCRIPTIONS
|
|
|
181
181
|
The location can be an absolute path or relative to the current working directory.
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.5.
|
|
184
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.5.22/src/commands/jayree/manifest/git/diff.ts)_
|
|
185
185
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.22",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@jayree/sfdx-plugin-manifest",
|
|
9
|
-
"version": "3.5.
|
|
9
|
+
"version": "3.5.22",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@jayree/changelog": "^1.2.4",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@salesforce/core": "^8.5.7",
|
|
15
15
|
"@salesforce/kit": "^3.2.2",
|
|
16
16
|
"@salesforce/sf-plugins-core": "^11.3.10",
|
|
17
|
-
"@salesforce/source-deploy-retrieve": "^12.7.
|
|
17
|
+
"@salesforce/source-deploy-retrieve": "^12.7.4",
|
|
18
18
|
"@salesforce/source-tracking": "^7.1.16",
|
|
19
19
|
"@salesforce/ts-types": "^2.0.12",
|
|
20
20
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"isomorphic-git": "1.27.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@oclif/plugin-command-snapshot": "^5.2.
|
|
28
|
-
"@oclif/plugin-help": "^6.2.
|
|
27
|
+
"@oclif/plugin-command-snapshot": "^5.2.17",
|
|
28
|
+
"@oclif/plugin-help": "^6.2.13",
|
|
29
29
|
"@salesforce/cli-plugins-testkit": "^5.3.33",
|
|
30
30
|
"@salesforce/dev-scripts": "^10.2.10",
|
|
31
31
|
"@salesforce/ts-sinon": "^1.4.27",
|
|
@@ -4178,9 +4178,9 @@
|
|
|
4178
4178
|
}
|
|
4179
4179
|
},
|
|
4180
4180
|
"node_modules/@oclif/plugin-command-snapshot": {
|
|
4181
|
-
"version": "5.2.
|
|
4182
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.2.
|
|
4183
|
-
"integrity": "sha512-
|
|
4181
|
+
"version": "5.2.17",
|
|
4182
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.2.17.tgz",
|
|
4183
|
+
"integrity": "sha512-vfvGjpPywLLbH8cbGyfcA+7PP1fI4aDa5sJRW2yx6SuNJbNJvIbGvthGs8Qy3q+d2T1DTHR39yHpEOolhSOfNQ==",
|
|
4184
4184
|
"dev": true,
|
|
4185
4185
|
"license": "MIT",
|
|
4186
4186
|
"dependencies": {
|
|
@@ -4246,9 +4246,9 @@
|
|
|
4246
4246
|
}
|
|
4247
4247
|
},
|
|
4248
4248
|
"node_modules/@oclif/plugin-help": {
|
|
4249
|
-
"version": "6.2.
|
|
4250
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.2.
|
|
4251
|
-
"integrity": "sha512-
|
|
4249
|
+
"version": "6.2.13",
|
|
4250
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.2.13.tgz",
|
|
4251
|
+
"integrity": "sha512-IgLytXXYfuTs6dV7xhgt4xhE4Mjx8/29/4iH6jp9TKDblopCBnZ3q1VMlHfhhLsJ4Q+rSjP/QCHtiO3HnXk69Q==",
|
|
4252
4252
|
"dev": true,
|
|
4253
4253
|
"license": "MIT",
|
|
4254
4254
|
"dependencies": {
|
|
@@ -4742,9 +4742,9 @@
|
|
|
4742
4742
|
}
|
|
4743
4743
|
},
|
|
4744
4744
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
4745
|
-
"version": "12.7.
|
|
4746
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.7.
|
|
4747
|
-
"integrity": "sha512-
|
|
4745
|
+
"version": "12.7.4",
|
|
4746
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.7.4.tgz",
|
|
4747
|
+
"integrity": "sha512-aJ/U2k+2vXj8LQ3zrB0ohOzCyNLQATaq2WLm9yIhLq8CItjNcVhp+jE6s+EBMnGulv/A3G4EVTvC1gi7s7FW6A==",
|
|
4748
4748
|
"license": "BSD-3-Clause",
|
|
4749
4749
|
"dependencies": {
|
|
4750
4750
|
"@salesforce/core": "^8.6.1",
|
package/oclif.lock
CHANGED
|
@@ -1686,10 +1686,10 @@
|
|
|
1686
1686
|
wordwrap "^1.0.0"
|
|
1687
1687
|
wrap-ansi "^7.0.0"
|
|
1688
1688
|
|
|
1689
|
-
"@oclif/plugin-command-snapshot@^5.2.
|
|
1690
|
-
version "5.2.
|
|
1691
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.2.
|
|
1692
|
-
integrity sha512-
|
|
1689
|
+
"@oclif/plugin-command-snapshot@^5.2.17":
|
|
1690
|
+
version "5.2.17"
|
|
1691
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.2.17.tgz#c3e2bcefc581a69eae3984a0ed09ac6db44504ed"
|
|
1692
|
+
integrity sha512-vfvGjpPywLLbH8cbGyfcA+7PP1fI4aDa5sJRW2yx6SuNJbNJvIbGvthGs8Qy3q+d2T1DTHR39yHpEOolhSOfNQ==
|
|
1693
1693
|
dependencies:
|
|
1694
1694
|
"@oclif/core" "^4"
|
|
1695
1695
|
ansis "^3.3.2"
|
|
@@ -1701,10 +1701,10 @@
|
|
|
1701
1701
|
semver "^7.6.3"
|
|
1702
1702
|
ts-json-schema-generator "^1.5.1"
|
|
1703
1703
|
|
|
1704
|
-
"@oclif/plugin-help@^6.2.10", "@oclif/plugin-help@^6.2.
|
|
1705
|
-
version "6.2.
|
|
1706
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-6.2.
|
|
1707
|
-
integrity sha512-
|
|
1704
|
+
"@oclif/plugin-help@^6.2.10", "@oclif/plugin-help@^6.2.13":
|
|
1705
|
+
version "6.2.13"
|
|
1706
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-6.2.13.tgz#51ef4a22afb65b860d557c559e20f91f162f5b76"
|
|
1707
|
+
integrity sha512-IgLytXXYfuTs6dV7xhgt4xhE4Mjx8/29/4iH6jp9TKDblopCBnZ3q1VMlHfhhLsJ4Q+rSjP/QCHtiO3HnXk69Q==
|
|
1708
1708
|
dependencies:
|
|
1709
1709
|
"@oclif/core" "^4"
|
|
1710
1710
|
|
|
@@ -1851,10 +1851,10 @@
|
|
|
1851
1851
|
string-width "^7.2.0"
|
|
1852
1852
|
terminal-link "^3.0.0"
|
|
1853
1853
|
|
|
1854
|
-
"@salesforce/source-deploy-retrieve@^12.7.1", "@salesforce/source-deploy-retrieve@^12.7.
|
|
1855
|
-
version "12.7.
|
|
1856
|
-
resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.7.
|
|
1857
|
-
integrity sha512-
|
|
1854
|
+
"@salesforce/source-deploy-retrieve@^12.7.1", "@salesforce/source-deploy-retrieve@^12.7.4":
|
|
1855
|
+
version "12.7.4"
|
|
1856
|
+
resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.7.4.tgz#57d3156d1fb5f0ac7021e8e9f871358adaf31b0d"
|
|
1857
|
+
integrity sha512-aJ/U2k+2vXj8LQ3zrB0ohOzCyNLQATaq2WLm9yIhLq8CItjNcVhp+jE6s+EBMnGulv/A3G4EVTvC1gi7s7FW6A==
|
|
1858
1858
|
dependencies:
|
|
1859
1859
|
"@salesforce/core" "^8.6.1"
|
|
1860
1860
|
"@salesforce/kit" "^3.2.2"
|
package/oclif.manifest.json
CHANGED
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.5.
|
|
4
|
+
"version": "3.5.22",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@salesforce/core": "^8.5.7",
|
|
12
12
|
"@salesforce/kit": "^3.2.2",
|
|
13
13
|
"@salesforce/sf-plugins-core": "^11.3.10",
|
|
14
|
-
"@salesforce/source-deploy-retrieve": "^12.7.
|
|
14
|
+
"@salesforce/source-deploy-retrieve": "^12.7.4",
|
|
15
15
|
"@salesforce/source-tracking": "^7.1.16",
|
|
16
16
|
"@salesforce/ts-types": "^2.0.12",
|
|
17
17
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"isomorphic-git": "1.27.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@oclif/plugin-command-snapshot": "^5.2.
|
|
25
|
-
"@oclif/plugin-help": "^6.2.
|
|
24
|
+
"@oclif/plugin-command-snapshot": "^5.2.17",
|
|
25
|
+
"@oclif/plugin-help": "^6.2.13",
|
|
26
26
|
"@salesforce/cli-plugins-testkit": "^5.3.33",
|
|
27
27
|
"@salesforce/dev-scripts": "^10.2.10",
|
|
28
28
|
"@salesforce/ts-sinon": "^1.4.27",
|