@jayree/sfdx-plugin-manifest 3.3.26 → 3.3.28

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## [3.3.28](https://github.com/jayree/sfdx-plugin-manifest/compare/3.3.27...3.3.28) (2024-08-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @salesforce/sf-plugins-core from 11.2.1 to 11.2.4 ([#1418](https://github.com/jayree/sfdx-plugin-manifest/issues/1418)) ([1ce46b1](https://github.com/jayree/sfdx-plugin-manifest/commit/1ce46b12647deb1a2e5054fb234bbfc6ca0b1c4b))
7
+ * **deps:** bump @salesforce/source-deploy-retrieve from 12.1.8 to 12.1.11 ([#1411](https://github.com/jayree/sfdx-plugin-manifest/issues/1411)) ([5fb3351](https://github.com/jayree/sfdx-plugin-manifest/commit/5fb3351edc2dfe49c18b83cc98eee32b51c4a2ed))
8
+
9
+
10
+
11
+ ## [3.3.27](https://github.com/jayree/sfdx-plugin-manifest/compare/3.3.26...3.3.27) (2024-08-03)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **deps:** bump @oclif/core from 4.0.16 to 4.0.17 ([#1420](https://github.com/jayree/sfdx-plugin-manifest/issues/1420)) ([2bb8261](https://github.com/jayree/sfdx-plugin-manifest/commit/2bb82612f59a5208a2e2013332b7d02b61920e0f))
17
+
18
+
19
+
1
20
  ## [3.3.26](https://github.com/jayree/sfdx-plugin-manifest/compare/3.3.25...3.3.26) (2024-08-03)
2
21
 
3
22
 
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.3.26/src/commands/jayree/manifest/cleanup.ts)_
63
+ _See code: [src/commands/jayree/manifest/cleanup.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.3.28/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.3.26/src/commands/jayree/manifest/generate.ts)_
101
+ _See code: [src/commands/jayree/manifest/generate.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.3.28/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.3.26/src/commands/jayree/manifest/git/diff.ts)_
184
+ _See code: [src/commands/jayree/manifest/git/diff.ts](https://github.com/jayree/sfdx-plugin-manifest/blob/3.3.28/src/commands/jayree/manifest/git/diff.ts)_
185
185
  <!-- commandsstop -->
@@ -32,7 +32,7 @@ export default class GeneratePackageXML extends SfCommand<PackageManifestObject>
32
32
  static readonly flags: {
33
33
  'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
34
34
  'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
35
- 'quick-filter': import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
35
+ 'quick-filter': import("@oclif/core/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/interfaces").CustomOptions>;
36
36
  'match-case': import("@oclif/core/interfaces").BooleanFlag<boolean>;
37
37
  'match-whole-word': import("@oclif/core/interfaces").BooleanFlag<boolean>;
38
38
  'include-flow-versions': import("@oclif/core/interfaces").BooleanFlag<boolean>;
@@ -23,7 +23,7 @@ export default class GitDiffCommand extends SfCommand<GitDiffCommandResult> {
23
23
  static readonly aliases: string[];
24
24
  static readonly flags: {
25
25
  'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
26
- 'source-dir': import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
26
+ 'source-dir': import("@oclif/core/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/interfaces").CustomOptions>;
27
27
  'output-dir': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
28
28
  'destructive-changes-only': import("@oclif/core/interfaces").BooleanFlag<boolean>;
29
29
  };