sfdx-hardis 6.12.8 → 6.12.9

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
@@ -4,6 +4,10 @@
4
4
 
5
5
  Note: Can be used with `sfdx plugins:install sfdx-hardis@beta` and docker image `hardisgroupcom/sfdx-hardis@beta`
6
6
 
7
+ ## [6.12.9] 2025-11-25
8
+
9
+ - Fixes compatibility issues caused by upgrading to parse5 v8.0.0.
10
+
7
11
  ## [6.12.8] 2025-11-25
8
12
 
9
13
  - Upgrade isomorphic-dompurify
package/oclif.lock CHANGED
@@ -10563,12 +10563,10 @@ parse-json@^8.0.0:
10563
10563
  index-to-position "^1.1.0"
10564
10564
  type-fest "^4.39.1"
10565
10565
 
10566
- parse5@^8.0.0:
10567
- version "8.0.0"
10568
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-8.0.0.tgz#aceb267f6b15f9b6e6ba9e35bfdd481fc2167b12"
10569
- integrity sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==
10570
- dependencies:
10571
- entities "^6.0.0"
10566
+ parse5@6.0.1, parse5@^8.0.0:
10567
+ version "6.0.1"
10568
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
10569
+ integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
10572
10570
 
10573
10571
  pascal-case@^3.1.2:
10574
10572
  version "3.1.2"
@@ -57,12 +57,13 @@
57
57
  "world:hello"
58
58
  ]
59
59
  },
60
- "hardis:cache:clear": {
60
+ "hardis:auth:login": {
61
61
  "aliases": [],
62
62
  "args": {},
63
- "description": "\n## Command Behavior\n\n**Clears the local cache generated by the sfdx-hardis plugin.**\n\nThis command is designed to remove temporary files, stored configurations, and other cached data that sfdx-hardis uses to optimize its operations. Clearing the cache can be beneficial for:\n\n- **Troubleshooting:** Resolving unexpected behavior or inconsistencies.\n- **Disk Space Management:** Freeing up storage on your local machine.\n- **Ensuring Fresh Data:** Guaranteeing that the plugin operates with the most current data and configurations.\n\n## Technical explanations\n\nThe command's technical implementation is straightforward:\n\n- **Direct Function Call:** It directly invokes the `clearCache()` function, which is imported from \buri../../../common/cache/index.js\buri.\n- **Cache Management Logic:** The \buriclearCache()` function encapsulates the logic for identifying and removing the specific files and directories that constitute the sfdx-hardis cache.\n",
63
+ "description": "\n## Command Behavior\n\n**Authenticates to a Salesforce org, primarily designed for CI/CD workflows.**\n\nThis command facilitates secure and automated logins to Salesforce organizations within continuous integration and continuous delivery pipelines. It leverages pre-configured authentication details, ensuring that CI/CD processes can interact with Salesforce without manual intervention.\n\nKey aspects:\n\n- **Configuration-Driven:** It relies on authentication variables and files set up by dedicated configuration commands:\n - For CI/CD repositories: [Configure Org CI Authentication](https://sfdx-hardis.cloudity.com/hardis/project/configure/auth/)\n - For Monitoring repositories: [Configure Org Monitoring](https://sfdx-hardis.cloudity.com/hardis/org/configure/monitoring/)\n- **Technical Org Support:** Supports authentication to a 'technical org' (e.g., for calling Agentforce from another org) by utilizing the `SFDX_AUTH_URL_TECHNICAL_ORG` environment variable. If this variable is set, the command authenticates to this org with the alias `TECHNICAL_ORG`.\n\nTo obtain the `SFDX_AUTH_URL_TECHNICAL_ORG` value, you can run `sf org display --verbose --json` and copy the `sfdxAuthUrl` field from the output.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical flow involves:\n\n- **Flag Parsing:** It parses command-line flags such as `instanceurl`, `devhub`, `scratchorg`, and `debug` to determine the authentication context.\n- **Authentication Hook:** It triggers an internal authentication hook (`this.config.runHook('auth', ...`)) which is responsible for executing the actual authentication logic based on the provided flags (e.g., whether it's a Dev Hub or a scratch org).\n- **Environment Variable Check:** It checks for the presence of `SFDX_AUTH_URL_TECHNICAL_ORG` or `TECHNICAL_ORG_ALIAS` environment variables.\n- **`authOrg` Utility:** If a technical org is configured, it calls the `authOrg` utility function to perform the authentication for that specific org, ensuring it's connected and available for subsequent operations.\n- **Salesforce CLI Integration:** It integrates with the Salesforce CLI's authentication mechanisms to establish and manage org connections.\n</details>\n",
64
64
  "examples": [
65
- "$ sf hardis:cache:clear"
65
+ "$ sf hardis:auth:login",
66
+ "CI=true CI_COMMIT_REF_NAME=monitoring_myclient sf hardis:auth:login"
66
67
  ],
67
68
  "flags": {
68
69
  "json": {
@@ -80,6 +81,28 @@
80
81
  "multiple": false,
81
82
  "type": "option"
82
83
  },
84
+ "instanceurl": {
85
+ "char": "r",
86
+ "description": "URL of org instance",
87
+ "name": "instanceurl",
88
+ "hasDynamicHelp": false,
89
+ "multiple": false,
90
+ "type": "option"
91
+ },
92
+ "devhub": {
93
+ "char": "h",
94
+ "description": "Also connect associated DevHub",
95
+ "name": "devhub",
96
+ "allowNo": false,
97
+ "type": "boolean"
98
+ },
99
+ "scratchorg": {
100
+ "char": "s",
101
+ "description": "Scratch org",
102
+ "name": "scratchorg",
103
+ "allowNo": false,
104
+ "type": "boolean"
105
+ },
83
106
  "debug": {
84
107
  "char": "d",
85
108
  "description": "Activate debug mode (more logs)",
@@ -103,42 +126,38 @@
103
126
  },
104
127
  "hasDynamicHelp": false,
105
128
  "hiddenAliases": [],
106
- "id": "hardis:cache:clear",
129
+ "id": "hardis:auth:login",
107
130
  "pluginAlias": "sfdx-hardis",
108
131
  "pluginName": "sfdx-hardis",
109
132
  "pluginType": "core",
110
133
  "strict": true,
111
134
  "enableJsonFlag": true,
112
- "title": "Clear sfdx-hardis cache",
113
- "uiConfig": {
114
- "hide": true
115
- },
135
+ "title": "Login",
116
136
  "requiresProject": false,
117
137
  "isESM": true,
118
138
  "relativePath": [
119
139
  "lib",
120
140
  "commands",
121
141
  "hardis",
122
- "cache",
123
- "clear.js"
142
+ "auth",
143
+ "login.js"
124
144
  ],
125
145
  "aliasPermutations": [],
126
146
  "permutations": [
127
- "hardis:cache:clear",
128
- "cache:hardis:clear",
129
- "cache:clear:hardis",
130
- "hardis:clear:cache",
131
- "clear:hardis:cache",
132
- "clear:cache:hardis"
147
+ "hardis:auth:login",
148
+ "auth:hardis:login",
149
+ "auth:login:hardis",
150
+ "hardis:login:auth",
151
+ "login:hardis:auth",
152
+ "login:auth:hardis"
133
153
  ]
134
154
  },
135
- "hardis:auth:login": {
155
+ "hardis:cache:clear": {
136
156
  "aliases": [],
137
157
  "args": {},
138
- "description": "\n## Command Behavior\n\n**Authenticates to a Salesforce org, primarily designed for CI/CD workflows.**\n\nThis command facilitates secure and automated logins to Salesforce organizations within continuous integration and continuous delivery pipelines. It leverages pre-configured authentication details, ensuring that CI/CD processes can interact with Salesforce without manual intervention.\n\nKey aspects:\n\n- **Configuration-Driven:** It relies on authentication variables and files set up by dedicated configuration commands:\n - For CI/CD repositories: [Configure Org CI Authentication](https://sfdx-hardis.cloudity.com/hardis/project/configure/auth/)\n - For Monitoring repositories: [Configure Org Monitoring](https://sfdx-hardis.cloudity.com/hardis/org/configure/monitoring/)\n- **Technical Org Support:** Supports authentication to a 'technical org' (e.g., for calling Agentforce from another org) by utilizing the `SFDX_AUTH_URL_TECHNICAL_ORG` environment variable. If this variable is set, the command authenticates to this org with the alias `TECHNICAL_ORG`.\n\nTo obtain the `SFDX_AUTH_URL_TECHNICAL_ORG` value, you can run `sf org display --verbose --json` and copy the `sfdxAuthUrl` field from the output.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical flow involves:\n\n- **Flag Parsing:** It parses command-line flags such as `instanceurl`, `devhub`, `scratchorg`, and `debug` to determine the authentication context.\n- **Authentication Hook:** It triggers an internal authentication hook (`this.config.runHook('auth', ...`)) which is responsible for executing the actual authentication logic based on the provided flags (e.g., whether it's a Dev Hub or a scratch org).\n- **Environment Variable Check:** It checks for the presence of `SFDX_AUTH_URL_TECHNICAL_ORG` or `TECHNICAL_ORG_ALIAS` environment variables.\n- **`authOrg` Utility:** If a technical org is configured, it calls the `authOrg` utility function to perform the authentication for that specific org, ensuring it's connected and available for subsequent operations.\n- **Salesforce CLI Integration:** It integrates with the Salesforce CLI's authentication mechanisms to establish and manage org connections.\n</details>\n",
158
+ "description": "\n## Command Behavior\n\n**Clears the local cache generated by the sfdx-hardis plugin.**\n\nThis command is designed to remove temporary files, stored configurations, and other cached data that sfdx-hardis uses to optimize its operations. Clearing the cache can be beneficial for:\n\n- **Troubleshooting:** Resolving unexpected behavior or inconsistencies.\n- **Disk Space Management:** Freeing up storage on your local machine.\n- **Ensuring Fresh Data:** Guaranteeing that the plugin operates with the most current data and configurations.\n\n## Technical explanations\n\nThe command's technical implementation is straightforward:\n\n- **Direct Function Call:** It directly invokes the `clearCache()` function, which is imported from \buri../../../common/cache/index.js\buri.\n- **Cache Management Logic:** The \buriclearCache()` function encapsulates the logic for identifying and removing the specific files and directories that constitute the sfdx-hardis cache.\n",
139
159
  "examples": [
140
- "$ sf hardis:auth:login",
141
- "CI=true CI_COMMIT_REF_NAME=monitoring_myclient sf hardis:auth:login"
160
+ "$ sf hardis:cache:clear"
142
161
  ],
143
162
  "flags": {
144
163
  "json": {
@@ -156,28 +175,6 @@
156
175
  "multiple": false,
157
176
  "type": "option"
158
177
  },
159
- "instanceurl": {
160
- "char": "r",
161
- "description": "URL of org instance",
162
- "name": "instanceurl",
163
- "hasDynamicHelp": false,
164
- "multiple": false,
165
- "type": "option"
166
- },
167
- "devhub": {
168
- "char": "h",
169
- "description": "Also connect associated DevHub",
170
- "name": "devhub",
171
- "allowNo": false,
172
- "type": "boolean"
173
- },
174
- "scratchorg": {
175
- "char": "s",
176
- "description": "Scratch org",
177
- "name": "scratchorg",
178
- "allowNo": false,
179
- "type": "boolean"
180
- },
181
178
  "debug": {
182
179
  "char": "d",
183
180
  "description": "Activate debug mode (more logs)",
@@ -201,30 +198,33 @@
201
198
  },
202
199
  "hasDynamicHelp": false,
203
200
  "hiddenAliases": [],
204
- "id": "hardis:auth:login",
201
+ "id": "hardis:cache:clear",
205
202
  "pluginAlias": "sfdx-hardis",
206
203
  "pluginName": "sfdx-hardis",
207
204
  "pluginType": "core",
208
205
  "strict": true,
209
206
  "enableJsonFlag": true,
210
- "title": "Login",
207
+ "title": "Clear sfdx-hardis cache",
208
+ "uiConfig": {
209
+ "hide": true
210
+ },
211
211
  "requiresProject": false,
212
212
  "isESM": true,
213
213
  "relativePath": [
214
214
  "lib",
215
215
  "commands",
216
216
  "hardis",
217
- "auth",
218
- "login.js"
217
+ "cache",
218
+ "clear.js"
219
219
  ],
220
220
  "aliasPermutations": [],
221
221
  "permutations": [
222
- "hardis:auth:login",
223
- "auth:hardis:login",
224
- "auth:login:hardis",
225
- "hardis:login:auth",
226
- "login:hardis:auth",
227
- "login:auth:hardis"
222
+ "hardis:cache:clear",
223
+ "cache:hardis:clear",
224
+ "cache:clear:hardis",
225
+ "hardis:clear:cache",
226
+ "clear:hardis:cache",
227
+ "clear:cache:hardis"
228
228
  ]
229
229
  },
230
230
  "hardis:config:get": {
@@ -9825,135 +9825,6 @@
9825
9825
  "remotesites:audit:project:hardis"
9826
9826
  ]
9827
9827
  },
9828
- "hardis:project:configure:auth": {
9829
- "aliases": [],
9830
- "args": {},
9831
- "description": "\n## Command Behavior\n\n**Configures authentication between a Git branch and a target Salesforce org for CI/CD deployments.**\n\nThis command facilitates the setup of automated CI/CD pipelines, enabling seamless deployments from specific Git branches to designated Salesforce orgs. It supports both standard Salesforce orgs and Dev Hub configurations, catering to various enterprise deployment workflows.\n\nKey functionalities include:\n\n- **Org Selection/Login:** Guides the user to select an existing Salesforce org or log in to a new one.\n- **Git Branch Association:** Allows associating a specific Git branch with the chosen Salesforce org.\n- **Merge Target Definition:** Enables defining target Git branches into which the configured branch can merge, ensuring controlled deployment flows.\n- **Salesforce Username Configuration:** Prompts for the Salesforce username to be used by the CI server for deployments.\n- **SSL Certificate Generation:** Automatically generates an SSL certificate for secure authentication.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's implementation involves several key technical aspects:\n\n- **SF CLI Integration:** Utilizes \n@salesforce/sf-plugins-core\n for command structure and flag parsing.\n- **Interactive Prompts:** Employs the \nprompts\n library for interactive user input, guiding the configuration process.\n- **Git Integration:** Interacts with Git to retrieve branch information using \n`git().branch([\"--list\", \"-r\"])`\n.\n- **Configuration Management:** Leverages internal utilities (`checkConfig`, `getConfig`, `setConfig`, `setInConfigFile`) to read from and write to project-specific configuration files (e.g., `.sfdx-hardis.<branchName>.yml`).\n- **Salesforce CLI Execution:** Executes Salesforce CLI commands programmatically via `execSfdxJson` for org interactions.\n- **SSL Certificate Generation:** Calls `generateSSLCertificate` to create necessary SSL certificates for JWT-based authentication.\n- **WebSocket Communication:** Uses `WebSocketClient` for potential communication with external tools or processes, such as restarting the command in VS Code.\n- **Dependency Check:** Ensures the presence of `openssl` on the system, which is required for SSL certificate generation.\n",
9832
- "examples": [
9833
- "$ sf hardis:project:configure:auth"
9834
- ],
9835
- "flags": {
9836
- "json": {
9837
- "description": "Format output as json.",
9838
- "helpGroup": "GLOBAL",
9839
- "name": "json",
9840
- "allowNo": false,
9841
- "type": "boolean"
9842
- },
9843
- "flags-dir": {
9844
- "helpGroup": "GLOBAL",
9845
- "name": "flags-dir",
9846
- "summary": "Import flag values from a directory.",
9847
- "hasDynamicHelp": false,
9848
- "multiple": false,
9849
- "type": "option"
9850
- },
9851
- "devhub": {
9852
- "char": "b",
9853
- "description": "Configure project DevHub",
9854
- "name": "devhub",
9855
- "allowNo": false,
9856
- "type": "boolean"
9857
- },
9858
- "debug": {
9859
- "char": "d",
9860
- "description": "Activate debug mode (more logs)",
9861
- "name": "debug",
9862
- "allowNo": false,
9863
- "type": "boolean"
9864
- },
9865
- "websocket": {
9866
- "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
9867
- "name": "websocket",
9868
- "hasDynamicHelp": false,
9869
- "multiple": false,
9870
- "type": "option"
9871
- },
9872
- "skipauth": {
9873
- "description": "Skip authentication check when a default username is required",
9874
- "name": "skipauth",
9875
- "allowNo": false,
9876
- "type": "boolean"
9877
- },
9878
- "target-org": {
9879
- "aliases": [
9880
- "targetusername",
9881
- "u"
9882
- ],
9883
- "char": "o",
9884
- "deprecateAliases": true,
9885
- "name": "target-org",
9886
- "noCacheDefault": true,
9887
- "summary": "Username or alias of the target org.",
9888
- "hasDynamicHelp": true,
9889
- "multiple": false,
9890
- "type": "option"
9891
- },
9892
- "target-dev-hub": {
9893
- "aliases": [
9894
- "targetdevhubusername"
9895
- ],
9896
- "char": "v",
9897
- "deprecateAliases": true,
9898
- "name": "target-dev-hub",
9899
- "noCacheDefault": true,
9900
- "required": false,
9901
- "summary": "Username or alias of the Dev Hub org.",
9902
- "hasDynamicHelp": true,
9903
- "multiple": false,
9904
- "type": "option"
9905
- }
9906
- },
9907
- "hasDynamicHelp": true,
9908
- "hiddenAliases": [],
9909
- "id": "hardis:project:configure:auth",
9910
- "pluginAlias": "sfdx-hardis",
9911
- "pluginName": "sfdx-hardis",
9912
- "pluginType": "core",
9913
- "strict": true,
9914
- "enableJsonFlag": true,
9915
- "title": "Configure authentication",
9916
- "requiresProject": false,
9917
- "requiresDependencies": [
9918
- "openssl"
9919
- ],
9920
- "isESM": true,
9921
- "relativePath": [
9922
- "lib",
9923
- "commands",
9924
- "hardis",
9925
- "project",
9926
- "configure",
9927
- "auth.js"
9928
- ],
9929
- "aliasPermutations": [],
9930
- "permutations": [
9931
- "hardis:project:configure:auth",
9932
- "project:hardis:configure:auth",
9933
- "project:configure:hardis:auth",
9934
- "project:configure:auth:hardis",
9935
- "hardis:configure:project:auth",
9936
- "configure:hardis:project:auth",
9937
- "configure:project:hardis:auth",
9938
- "configure:project:auth:hardis",
9939
- "hardis:configure:auth:project",
9940
- "configure:hardis:auth:project",
9941
- "configure:auth:hardis:project",
9942
- "configure:auth:project:hardis",
9943
- "hardis:project:auth:configure",
9944
- "project:hardis:auth:configure",
9945
- "project:auth:hardis:configure",
9946
- "project:auth:configure:hardis",
9947
- "hardis:auth:project:configure",
9948
- "auth:hardis:project:configure",
9949
- "auth:project:hardis:configure",
9950
- "auth:project:configure:hardis",
9951
- "hardis:auth:configure:project",
9952
- "auth:hardis:configure:project",
9953
- "auth:configure:hardis:project",
9954
- "auth:configure:project:hardis"
9955
- ]
9956
- },
9957
9828
  "hardis:project:clean:emptyitems": {
9958
9829
  "aliases": [],
9959
9830
  "args": {},
@@ -11439,6 +11310,135 @@
11439
11310
  "xml:clean:project:hardis"
11440
11311
  ]
11441
11312
  },
11313
+ "hardis:project:configure:auth": {
11314
+ "aliases": [],
11315
+ "args": {},
11316
+ "description": "\n## Command Behavior\n\n**Configures authentication between a Git branch and a target Salesforce org for CI/CD deployments.**\n\nThis command facilitates the setup of automated CI/CD pipelines, enabling seamless deployments from specific Git branches to designated Salesforce orgs. It supports both standard Salesforce orgs and Dev Hub configurations, catering to various enterprise deployment workflows.\n\nKey functionalities include:\n\n- **Org Selection/Login:** Guides the user to select an existing Salesforce org or log in to a new one.\n- **Git Branch Association:** Allows associating a specific Git branch with the chosen Salesforce org.\n- **Merge Target Definition:** Enables defining target Git branches into which the configured branch can merge, ensuring controlled deployment flows.\n- **Salesforce Username Configuration:** Prompts for the Salesforce username to be used by the CI server for deployments.\n- **SSL Certificate Generation:** Automatically generates an SSL certificate for secure authentication.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's implementation involves several key technical aspects:\n\n- **SF CLI Integration:** Utilizes \n@salesforce/sf-plugins-core\n for command structure and flag parsing.\n- **Interactive Prompts:** Employs the \nprompts\n library for interactive user input, guiding the configuration process.\n- **Git Integration:** Interacts with Git to retrieve branch information using \n`git().branch([\"--list\", \"-r\"])`\n.\n- **Configuration Management:** Leverages internal utilities (`checkConfig`, `getConfig`, `setConfig`, `setInConfigFile`) to read from and write to project-specific configuration files (e.g., `.sfdx-hardis.<branchName>.yml`).\n- **Salesforce CLI Execution:** Executes Salesforce CLI commands programmatically via `execSfdxJson` for org interactions.\n- **SSL Certificate Generation:** Calls `generateSSLCertificate` to create necessary SSL certificates for JWT-based authentication.\n- **WebSocket Communication:** Uses `WebSocketClient` for potential communication with external tools or processes, such as restarting the command in VS Code.\n- **Dependency Check:** Ensures the presence of `openssl` on the system, which is required for SSL certificate generation.\n",
11317
+ "examples": [
11318
+ "$ sf hardis:project:configure:auth"
11319
+ ],
11320
+ "flags": {
11321
+ "json": {
11322
+ "description": "Format output as json.",
11323
+ "helpGroup": "GLOBAL",
11324
+ "name": "json",
11325
+ "allowNo": false,
11326
+ "type": "boolean"
11327
+ },
11328
+ "flags-dir": {
11329
+ "helpGroup": "GLOBAL",
11330
+ "name": "flags-dir",
11331
+ "summary": "Import flag values from a directory.",
11332
+ "hasDynamicHelp": false,
11333
+ "multiple": false,
11334
+ "type": "option"
11335
+ },
11336
+ "devhub": {
11337
+ "char": "b",
11338
+ "description": "Configure project DevHub",
11339
+ "name": "devhub",
11340
+ "allowNo": false,
11341
+ "type": "boolean"
11342
+ },
11343
+ "debug": {
11344
+ "char": "d",
11345
+ "description": "Activate debug mode (more logs)",
11346
+ "name": "debug",
11347
+ "allowNo": false,
11348
+ "type": "boolean"
11349
+ },
11350
+ "websocket": {
11351
+ "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
11352
+ "name": "websocket",
11353
+ "hasDynamicHelp": false,
11354
+ "multiple": false,
11355
+ "type": "option"
11356
+ },
11357
+ "skipauth": {
11358
+ "description": "Skip authentication check when a default username is required",
11359
+ "name": "skipauth",
11360
+ "allowNo": false,
11361
+ "type": "boolean"
11362
+ },
11363
+ "target-org": {
11364
+ "aliases": [
11365
+ "targetusername",
11366
+ "u"
11367
+ ],
11368
+ "char": "o",
11369
+ "deprecateAliases": true,
11370
+ "name": "target-org",
11371
+ "noCacheDefault": true,
11372
+ "summary": "Username or alias of the target org.",
11373
+ "hasDynamicHelp": true,
11374
+ "multiple": false,
11375
+ "type": "option"
11376
+ },
11377
+ "target-dev-hub": {
11378
+ "aliases": [
11379
+ "targetdevhubusername"
11380
+ ],
11381
+ "char": "v",
11382
+ "deprecateAliases": true,
11383
+ "name": "target-dev-hub",
11384
+ "noCacheDefault": true,
11385
+ "required": false,
11386
+ "summary": "Username or alias of the Dev Hub org.",
11387
+ "hasDynamicHelp": true,
11388
+ "multiple": false,
11389
+ "type": "option"
11390
+ }
11391
+ },
11392
+ "hasDynamicHelp": true,
11393
+ "hiddenAliases": [],
11394
+ "id": "hardis:project:configure:auth",
11395
+ "pluginAlias": "sfdx-hardis",
11396
+ "pluginName": "sfdx-hardis",
11397
+ "pluginType": "core",
11398
+ "strict": true,
11399
+ "enableJsonFlag": true,
11400
+ "title": "Configure authentication",
11401
+ "requiresProject": false,
11402
+ "requiresDependencies": [
11403
+ "openssl"
11404
+ ],
11405
+ "isESM": true,
11406
+ "relativePath": [
11407
+ "lib",
11408
+ "commands",
11409
+ "hardis",
11410
+ "project",
11411
+ "configure",
11412
+ "auth.js"
11413
+ ],
11414
+ "aliasPermutations": [],
11415
+ "permutations": [
11416
+ "hardis:project:configure:auth",
11417
+ "project:hardis:configure:auth",
11418
+ "project:configure:hardis:auth",
11419
+ "project:configure:auth:hardis",
11420
+ "hardis:configure:project:auth",
11421
+ "configure:hardis:project:auth",
11422
+ "configure:project:hardis:auth",
11423
+ "configure:project:auth:hardis",
11424
+ "hardis:configure:auth:project",
11425
+ "configure:hardis:auth:project",
11426
+ "configure:auth:hardis:project",
11427
+ "configure:auth:project:hardis",
11428
+ "hardis:project:auth:configure",
11429
+ "project:hardis:auth:configure",
11430
+ "project:auth:hardis:configure",
11431
+ "project:auth:configure:hardis",
11432
+ "hardis:auth:project:configure",
11433
+ "auth:hardis:project:configure",
11434
+ "auth:project:hardis:configure",
11435
+ "auth:project:configure:hardis",
11436
+ "hardis:auth:configure:project",
11437
+ "auth:hardis:configure:project",
11438
+ "auth:configure:hardis:project",
11439
+ "auth:configure:project:hardis"
11440
+ ]
11441
+ },
11442
11442
  "hardis:project:convert:profilestopermsets": {
11443
11443
  "aliases": [],
11444
11444
  "args": {},
@@ -15504,5 +15504,5 @@
15504
15504
  ]
15505
15505
  }
15506
15506
  },
15507
- "version": "6.12.8"
15507
+ "version": "6.12.9"
15508
15508
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Swiss-army-knife Toolbox for Salesforce.\n Allows you to define a complete CD/CD Pipeline.\n Orchestrate base commands and assist users with interactive wizards",
4
4
  "author": "NicolasVuillamy @nvuillam",
5
5
  "bugs": "https://github.com/hardisgroupcom/sfdx-hardis/issues",
6
- "version": "6.12.8",
6
+ "version": "6.12.9",
7
7
  "dependencies": {
8
8
  "@actions/github": "^6.0.1",
9
9
  "@cparra/apexdocs": "^3.14.1",
@@ -78,7 +78,8 @@
78
78
  "form-data": "4.0.5",
79
79
  "tmp": "0.2.5",
80
80
  "prebuild-install/tar-fs": "2.1.4",
81
- "@puppeteer/browsers/tar-fs": "3.1.1"
81
+ "@puppeteer/browsers/tar-fs": "3.1.1",
82
+ "parse5": "6.0.1"
82
83
  },
83
84
  "devDependencies": {
84
85
  "@oclif/plugin-command-snapshot": "^5.3.8",