@jayree/sfdx-plugin-manifest 4.0.0 → 4.0.2
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 +16 -0
- package/README.md +3 -6
- package/npm-shrinkwrap.json +236 -163
- package/oclif.lock +275 -211
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
## [4.0.2](https://github.com/jayree/sfdx-plugin-manifest/compare/4.0.1...4.0.2) (2025-05-11)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump @salesforce/source-tracking from 7.3.23 to 7.3.24 ([#1776](https://github.com/jayree/sfdx-plugin-manifest/issues/1776)) ([70243c6](https://github.com/jayree/sfdx-plugin-manifest/commit/70243c6079b090e7ab5db107a6c19493d0b14957))
|
7
|
+
* **deps:** bump @salesforce/source-deploy-retrieve ([7f5d447](https://github.com/forcedotcom/source-tracking/commit/7f5d44799e59bb564bea6bd4b8b818d6b3954cd5))
|
8
|
+
|
9
|
+
## [4.0.1](https://github.com/jayree/sfdx-plugin-manifest/compare/4.0.0...4.0.1) (2025-05-11)
|
10
|
+
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
* **deps:** bump fast-xml-parser from 5.2.2 to 5.2.3 ([#1779](https://github.com/jayree/sfdx-plugin-manifest/issues/1779)) ([cb5c441](https://github.com/jayree/sfdx-plugin-manifest/commit/cb5c441ae79182965392d5ee0e2c3c8daf6cbfd6))
|
15
|
+
* fix ([#747](https://redirect.github.com/NaturalIntelligence/fast-xml-parser/issues/747)): support EMPTY and ANY with ELEMENT in DOCTYPE
|
16
|
+
|
1
17
|
## [4.0.0](https://github.com/jayree/sfdx-plugin-manifest/compare/3.7.25...4.0.0) (2025-05-08)
|
2
18
|
|
3
19
|
|
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/
|
115
|
+
_See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.2/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/
|
153
|
+
_See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.2/src/commands/jayree/manifest/generate.ts)_
|
154
154
|
|
155
155
|
### `sf jayree manifest git diff REF1 [REF2]`
|
156
156
|
|
@@ -184,9 +184,6 @@ DESCRIPTION
|
|
184
184
|
|
185
185
|
You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
|
186
186
|
|
187
|
-
ALIASES
|
188
|
-
$ sf jayree manifest beta git diff
|
189
|
-
|
190
187
|
EXAMPLES
|
191
188
|
Uses the changes between two arbitrary <commit>.
|
192
189
|
|
@@ -233,7 +230,7 @@ FLAG DESCRIPTIONS
|
|
233
230
|
Use this flag to create a 'destructiveChanges.xml' and a blank 'package.xml'.
|
234
231
|
```
|
235
232
|
|
236
|
-
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/
|
233
|
+
_See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/4.0.2/src/commands/jayree/manifest/git/diff.ts)_
|
237
234
|
<!-- commandsstop -->
|
238
235
|
|
239
236
|
## Performance Testing
|