@jayree/sfdx-plugin-manifest 4.0.81 → 4.0.82
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 +5 -5
- package/npm-shrinkwrap.json +660 -132
- package/oclif.lock +496 -117
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [4.0.82](https://github.com/jayree/sfdx-plugin-manifest/compare/4.0.81...4.0.82) (2025-10-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @oclif/core from 4.5.5 to 4.5.6 ([#1963](https://github.com/jayree/sfdx-plugin-manifest/issues/1963)) ([71a4058](https://github.com/jayree/sfdx-plugin-manifest/commit/71a4058003173493de1144e5ee59b2689faa4c73))
|
|
7
|
+
* first commit on custom autocomplete ([4bd2459](https://github.com/oclif/core/commit/4bd2459d0987b38a8334d024ba7630e7bb6861f2))
|
|
8
|
+
* indicate whether an argument is optional in the help command ([#1453](https://github.com/oclif/core/issues/1453)) ([#1482](https://github.com/oclif/core/issues/1482)) ([94e46f8](https://github.com/oclif/core/commit/94e46f8d0405a4e0f6c008c8dfad6d70a8276e38))
|
|
9
|
+
|
|
1
10
|
## [4.0.81](https://github.com/jayree/sfdx-plugin-manifest/compare/4.0.80...4.0.81) (2025-10-11)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -112,7 +112,7 @@ EXAMPLES
|
|
|
112
112
|
$ sf jayree manifest cleanup --manifest=package.xml --file=packageignore.xml
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.
|
|
115
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.82/src/commands/jayree/manifest/cleanup.ts)_
|
|
116
116
|
|
|
117
117
|
### `sf jayree manifest generate`
|
|
118
118
|
|
|
@@ -150,7 +150,7 @@ EXAMPLES
|
|
|
150
150
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
151
151
|
```
|
|
152
152
|
|
|
153
|
-
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.
|
|
153
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.82/src/commands/jayree/manifest/generate.ts)_
|
|
154
154
|
|
|
155
155
|
### `sf jayree manifest git diff REF1 [REF2]`
|
|
156
156
|
|
|
@@ -162,8 +162,8 @@ USAGE
|
|
|
162
162
|
<value>] [--destructive-changes-only]
|
|
163
163
|
|
|
164
164
|
ARGUMENTS
|
|
165
|
-
REF1
|
|
166
|
-
REF2 Commit or branch to compare to the base commit.
|
|
165
|
+
REF1 Base commit or branch.
|
|
166
|
+
[REF2] Commit or branch to compare to the base commit.
|
|
167
167
|
|
|
168
168
|
FLAGS
|
|
169
169
|
-d, --source-dir=<value>... Path to the local source files to include in the manifest.
|
|
@@ -230,7 +230,7 @@ FLAG DESCRIPTIONS
|
|
|
230
230
|
Use this flag to create a 'destructiveChanges.xml' and a blank 'package.xml'.
|
|
231
231
|
```
|
|
232
232
|
|
|
233
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.
|
|
233
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.82/src/commands/jayree/manifest/git/diff.ts)_
|
|
234
234
|
<!-- commandsstop -->
|
|
235
235
|
|
|
236
236
|
## Performance Testing
|