@jayree/sfdx-plugin-manifest 5.0.99 → 5.0.100

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.0.100](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.99...5.0.100) (2026-05-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump fast-xml-parser from 5.7.3 to 5.8.0 ([#2243](https://github.com/jayree/sfdx-plugin-manifest/issues/2243)) ([aa4069d](https://github.com/jayree/sfdx-plugin-manifest/commit/aa4069d1a4a5ff0dda50f7f352751dddba9317ea))
7
+ * integrate xml-naming to validate DOCTYPE entity name and notation name (using qname becaue of backward compatibility)
8
+ * This will consider xml-version as well. '1.0' is default
9
+ * update strnum to 2.3.0
10
+ * You can set octal and binary parsing which is bydeault off
11
+ * update fast-xml-builder to 1.2.0
12
+ * can sanitize tag names if found invalid
13
+ * fix format output
14
+
1
15
  ## [5.0.99](https://github.com/jayree/sfdx-plugin-manifest/compare/5.0.98...5.0.99) (2026-05-16)
2
16
 
3
17
 
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/5.0.99/src/commands/jayree/manifest/cleanup.ts)_
115
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.100/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/5.0.99/src/commands/jayree/manifest/generate.ts)_
153
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.100/src/commands/jayree/manifest/generate.ts)_
154
154
 
155
155
  ### `sf jayree manifest git diff REF1 [REF2]`
156
156
 
@@ -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/5.0.99/src/commands/jayree/manifest/git/diff.ts)_
233
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/5.0.100/src/commands/jayree/manifest/git/diff.ts)_
234
234
  <!-- commandsstop -->
235
235
 
236
236
  ## Performance Testing
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@jayree/sfdx-plugin-manifest",
3
- "version": "5.0.99",
3
+ "version": "5.0.100",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@jayree/sfdx-plugin-manifest",
9
- "version": "5.0.99",
9
+ "version": "5.0.100",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@jayree/changelog": "^1.2.32",
@@ -18,7 +18,7 @@
18
18
  "@salesforce/source-tracking": "7.8.16",
19
19
  "@salesforce/ts-types": "^2.0.12",
20
20
  "fast-deep-equal": "^3.1.3",
21
- "fast-xml-parser": "^5.7.3",
21
+ "fast-xml-parser": "^5.8.0",
22
22
  "fs-extra": "^11.3.4",
23
23
  "graceful-fs": "^4.2.11",
24
24
  "isomorphic-git": "1.38.0"
@@ -773,6 +773,28 @@
773
773
  "node": ">=20.0.0"
774
774
  }
775
775
  },
776
+ "node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser": {
777
+ "version": "5.7.3",
778
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
779
+ "integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
780
+ "dev": true,
781
+ "funding": [
782
+ {
783
+ "type": "github",
784
+ "url": "https://github.com/sponsors/NaturalIntelligence"
785
+ }
786
+ ],
787
+ "license": "MIT",
788
+ "dependencies": {
789
+ "@nodable/entities": "^2.1.0",
790
+ "fast-xml-builder": "^1.1.7",
791
+ "path-expression-matcher": "^1.5.0",
792
+ "strnum": "^2.2.3"
793
+ },
794
+ "bin": {
795
+ "fxparser": "src/cli/cli.js"
796
+ }
797
+ },
776
798
  "node_modules/@aws/lambda-invoke-store": {
777
799
  "version": "0.2.3",
778
800
  "resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.3.tgz",
@@ -10180,9 +10202,9 @@
10180
10202
  }
10181
10203
  },
10182
10204
  "node_modules/fast-xml-parser": {
10183
- "version": "5.7.3",
10184
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
10185
- "integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
10205
+ "version": "5.8.0",
10206
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.8.0.tgz",
10207
+ "integrity": "sha512-6bIM7fsJxeo3uXv7OncQYsBAMPJ7V16Slahl/6M98C/i2q+vB1+4a0MtrvYwDFEUrwDSbAmeLDRXsOBwrL7yAg==",
10186
10208
  "funding": [
10187
10209
  {
10188
10210
  "type": "github",
@@ -10192,9 +10214,10 @@
10192
10214
  "license": "MIT",
10193
10215
  "dependencies": {
10194
10216
  "@nodable/entities": "^2.1.0",
10195
- "fast-xml-builder": "^1.1.7",
10217
+ "fast-xml-builder": "^1.2.0",
10196
10218
  "path-expression-matcher": "^1.5.0",
10197
- "strnum": "^2.2.3"
10219
+ "strnum": "^2.3.0",
10220
+ "xml-naming": "^0.1.0"
10198
10221
  },
10199
10222
  "bin": {
10200
10223
  "fxparser": "src/cli/cli.js"
@@ -17043,9 +17066,9 @@
17043
17066
  }
17044
17067
  },
17045
17068
  "node_modules/strnum": {
17046
- "version": "2.2.3",
17047
- "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.2.3.tgz",
17048
- "integrity": "sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg==",
17069
+ "version": "2.3.0",
17070
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
17071
+ "integrity": "sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==",
17049
17072
  "funding": [
17050
17073
  {
17051
17074
  "type": "github",
package/oclif.lock CHANGED
@@ -4562,7 +4562,7 @@ fast-wrap-ansi@^0.2.0:
4562
4562
  dependencies:
4563
4563
  fast-string-width "^3.0.2"
4564
4564
 
4565
- fast-xml-builder@^1.1.7:
4565
+ fast-xml-builder@^1.1.7, fast-xml-builder@^1.2.0:
4566
4566
  version "1.2.0"
4567
4567
  resolved "https://registry.yarnpkg.com/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz#abd2363145a7625d9789ad96da375fabe3cff28c"
4568
4568
  integrity sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==
@@ -4570,7 +4570,7 @@ fast-xml-builder@^1.1.7:
4570
4570
  path-expression-matcher "^1.5.0"
4571
4571
  xml-naming "^0.1.0"
4572
4572
 
4573
- fast-xml-parser@5.7.3, fast-xml-parser@^5.5.7, fast-xml-parser@^5.7.3:
4573
+ fast-xml-parser@5.7.3:
4574
4574
  version "5.7.3"
4575
4575
  resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz#309b04b08d835defc62ab657a0bb340c0e0fbe6a"
4576
4576
  integrity sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==
@@ -4580,6 +4580,17 @@ fast-xml-parser@5.7.3, fast-xml-parser@^5.5.7, fast-xml-parser@^5.7.3:
4580
4580
  path-expression-matcher "^1.5.0"
4581
4581
  strnum "^2.2.3"
4582
4582
 
4583
+ fast-xml-parser@^5.5.7, fast-xml-parser@^5.7.3, fast-xml-parser@^5.8.0:
4584
+ version "5.8.0"
4585
+ resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.8.0.tgz#64d71f0f8d4bf23621dffd762aef7e98c1884fc1"
4586
+ integrity sha512-6bIM7fsJxeo3uXv7OncQYsBAMPJ7V16Slahl/6M98C/i2q+vB1+4a0MtrvYwDFEUrwDSbAmeLDRXsOBwrL7yAg==
4587
+ dependencies:
4588
+ "@nodable/entities" "^2.1.0"
4589
+ fast-xml-builder "^1.2.0"
4590
+ path-expression-matcher "^1.5.0"
4591
+ strnum "^2.3.0"
4592
+ xml-naming "^0.1.0"
4593
+
4583
4594
  fastest-levenshtein@^1.0.7:
4584
4595
  version "1.0.16"
4585
4596
  resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5"
@@ -8476,10 +8487,10 @@ strip-json-comments@^3.1.1:
8476
8487
  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
8477
8488
  integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
8478
8489
 
8479
- strnum@^2.2.3:
8480
- version "2.2.3"
8481
- resolved "https://registry.yarnpkg.com/strnum/-/strnum-2.2.3.tgz#0119fce02749a11bb126a4d686ac5dbdf6e57586"
8482
- integrity sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg==
8490
+ strnum@^2.2.3, strnum@^2.3.0:
8491
+ version "2.3.0"
8492
+ resolved "https://registry.yarnpkg.com/strnum/-/strnum-2.3.0.tgz#81bfbfef53db8c3217ea62a98c026886ec4a2761"
8493
+ integrity sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==
8483
8494
 
8484
8495
  supports-color@^5.4.0:
8485
8496
  version "5.5.0"
@@ -267,5 +267,5 @@
267
267
  ]
268
268
  }
269
269
  },
270
- "version": "5.0.99"
270
+ "version": "5.0.100"
271
271
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jayree/sfdx-plugin-manifest",
3
3
  "description": "A powerful Salesforce CLI plugin and Node.js library to effortlessly generate, clean up, and manage package.xml and destructiveChanges.xml manifests directly from your Salesforce orgs or from Git changes in your SF projects. Unlock faster, safer, and smarter Salesforce deployments.",
4
- "version": "5.0.99",
4
+ "version": "5.0.100",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
@@ -15,7 +15,7 @@
15
15
  "@salesforce/source-tracking": "7.8.16",
16
16
  "@salesforce/ts-types": "^2.0.12",
17
17
  "fast-deep-equal": "^3.1.3",
18
- "fast-xml-parser": "^5.7.3",
18
+ "fast-xml-parser": "^5.8.0",
19
19
  "fs-extra": "^11.3.4",
20
20
  "graceful-fs": "^4.2.11",
21
21
  "isomorphic-git": "1.38.0"