sfdx-hardis 6.10.1-alpha202511022157.0 → 6.11.0
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 +3 -1
- package/oclif.manifest.json +116 -116
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
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
|
-
|
|
7
|
+
## [6.11.0] 2025-11-02
|
|
8
|
+
|
|
9
|
+
- New feature: [**Deployment actions**](https://sfdx-hardis.cloudity.com/salesforce-ci-cd-work-on-task-deployment-actions/) at Pull Request level
|
|
8
10
|
- Define pre-deploy and post-deploy commands to be executed during CI/CD deployments
|
|
9
11
|
- Display summary in Pull Request with details of each command execution
|
|
10
12
|
- Update CI/CD documentation & screenshots
|
package/oclif.manifest.json
CHANGED
|
@@ -5808,6 +5808,121 @@
|
|
|
5808
5808
|
"import:files:org:hardis"
|
|
5809
5809
|
]
|
|
5810
5810
|
},
|
|
5811
|
+
"hardis:org:fix:listviewmine": {
|
|
5812
|
+
"aliases": [],
|
|
5813
|
+
"args": {},
|
|
5814
|
+
"description": "Fix listviews whose scope Mine has been replaced by Everything\n\n[](https://nicolas.vuillamy.fr/invalid-scope-mine-not-allowed-deploy-your-listviews-anyway-443aceca8ac7)\n\nList of ListViews can be:\n\n- read from .sfdx-hardis.yml file in property **listViewsToSetToMine**\n- sent in argument listviews\n\nNote: property **listViewsToSetToMine** can be auto-generated by command hardis:work:save if .sfdx-hardis.yml contains the following configuration\n\n```yaml\nautoCleanTypes:\n - listViewsMine\n```\n\n- Example of sfdx-hardis.yml property `listViewsToSetToMine`:\n\n```yaml\nlistViewsToSetToMine:\n - \"force-app/main/default/objects/Operation__c/listViews/MyCurrentOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Operation__c/listViews/MyFinalizedOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/Default_Opportunity_Pipeline.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MyCurrentSubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MySubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Account/listViews/MyActivePartners.listView-meta.xml\"\n```\n\n- If manually written, this could also be:\n\n```yaml\nlistViewsToSetToMine:\n - \"Operation__c:MyCurrentOperations\"\n - \"Operation__c:MyFinalizedOperations\"\n - \"Opportunity:Default_Opportunity_Pipeline\"\n - \"Opportunity:MyCurrentSubscriptions\"\n - \"Opportunity:MySubscriptions\"\n - \"Account:MyActivePartners\"\n```\n\nTroubleshooting: if you need to run this command from an alpine-linux based docker image, use this workaround in your dockerfile:\n\n```dockerfile\n# Do not use puppeteer embedded chromium\nRUN apk add --update --no-cache chromium\nENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=\"true\"\nENV CHROMIUM_PATH=\"/usr/bin/chromium-browser\"\nENV PUPPETEER_EXECUTABLE_PATH=\"$\\{CHROMIUM_PATH}\" // remove \\ before {\n```\n",
|
|
5815
|
+
"examples": [
|
|
5816
|
+
"$ sf hardis:org:fix:listviewmine",
|
|
5817
|
+
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
5818
|
+
],
|
|
5819
|
+
"flags": {
|
|
5820
|
+
"json": {
|
|
5821
|
+
"description": "Format output as json.",
|
|
5822
|
+
"helpGroup": "GLOBAL",
|
|
5823
|
+
"name": "json",
|
|
5824
|
+
"allowNo": false,
|
|
5825
|
+
"type": "boolean"
|
|
5826
|
+
},
|
|
5827
|
+
"flags-dir": {
|
|
5828
|
+
"helpGroup": "GLOBAL",
|
|
5829
|
+
"name": "flags-dir",
|
|
5830
|
+
"summary": "Import flag values from a directory.",
|
|
5831
|
+
"hasDynamicHelp": false,
|
|
5832
|
+
"multiple": false,
|
|
5833
|
+
"type": "option"
|
|
5834
|
+
},
|
|
5835
|
+
"listviews": {
|
|
5836
|
+
"char": "l",
|
|
5837
|
+
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
5838
|
+
"name": "listviews",
|
|
5839
|
+
"hasDynamicHelp": false,
|
|
5840
|
+
"multiple": false,
|
|
5841
|
+
"type": "option"
|
|
5842
|
+
},
|
|
5843
|
+
"debug": {
|
|
5844
|
+
"char": "d",
|
|
5845
|
+
"description": "Activate debug mode (more logs)",
|
|
5846
|
+
"name": "debug",
|
|
5847
|
+
"allowNo": false,
|
|
5848
|
+
"type": "boolean"
|
|
5849
|
+
},
|
|
5850
|
+
"websocket": {
|
|
5851
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5852
|
+
"name": "websocket",
|
|
5853
|
+
"hasDynamicHelp": false,
|
|
5854
|
+
"multiple": false,
|
|
5855
|
+
"type": "option"
|
|
5856
|
+
},
|
|
5857
|
+
"skipauth": {
|
|
5858
|
+
"description": "Skip authentication check when a default username is required",
|
|
5859
|
+
"name": "skipauth",
|
|
5860
|
+
"allowNo": false,
|
|
5861
|
+
"type": "boolean"
|
|
5862
|
+
},
|
|
5863
|
+
"target-org": {
|
|
5864
|
+
"aliases": [
|
|
5865
|
+
"targetusername",
|
|
5866
|
+
"u"
|
|
5867
|
+
],
|
|
5868
|
+
"char": "o",
|
|
5869
|
+
"deprecateAliases": true,
|
|
5870
|
+
"name": "target-org",
|
|
5871
|
+
"noCacheDefault": true,
|
|
5872
|
+
"required": true,
|
|
5873
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5874
|
+
"hasDynamicHelp": true,
|
|
5875
|
+
"multiple": false,
|
|
5876
|
+
"type": "option"
|
|
5877
|
+
}
|
|
5878
|
+
},
|
|
5879
|
+
"hasDynamicHelp": true,
|
|
5880
|
+
"hiddenAliases": [],
|
|
5881
|
+
"id": "hardis:org:fix:listviewmine",
|
|
5882
|
+
"pluginAlias": "sfdx-hardis",
|
|
5883
|
+
"pluginName": "sfdx-hardis",
|
|
5884
|
+
"pluginType": "core",
|
|
5885
|
+
"strict": true,
|
|
5886
|
+
"enableJsonFlag": true,
|
|
5887
|
+
"title": "Fix listviews with ",
|
|
5888
|
+
"requiresProject": true,
|
|
5889
|
+
"isESM": true,
|
|
5890
|
+
"relativePath": [
|
|
5891
|
+
"lib",
|
|
5892
|
+
"commands",
|
|
5893
|
+
"hardis",
|
|
5894
|
+
"org",
|
|
5895
|
+
"fix",
|
|
5896
|
+
"listviewmine.js"
|
|
5897
|
+
],
|
|
5898
|
+
"aliasPermutations": [],
|
|
5899
|
+
"permutations": [
|
|
5900
|
+
"hardis:org:fix:listviewmine",
|
|
5901
|
+
"org:hardis:fix:listviewmine",
|
|
5902
|
+
"org:fix:hardis:listviewmine",
|
|
5903
|
+
"org:fix:listviewmine:hardis",
|
|
5904
|
+
"hardis:fix:org:listviewmine",
|
|
5905
|
+
"fix:hardis:org:listviewmine",
|
|
5906
|
+
"fix:org:hardis:listviewmine",
|
|
5907
|
+
"fix:org:listviewmine:hardis",
|
|
5908
|
+
"hardis:fix:listviewmine:org",
|
|
5909
|
+
"fix:hardis:listviewmine:org",
|
|
5910
|
+
"fix:listviewmine:hardis:org",
|
|
5911
|
+
"fix:listviewmine:org:hardis",
|
|
5912
|
+
"hardis:org:listviewmine:fix",
|
|
5913
|
+
"org:hardis:listviewmine:fix",
|
|
5914
|
+
"org:listviewmine:hardis:fix",
|
|
5915
|
+
"org:listviewmine:fix:hardis",
|
|
5916
|
+
"hardis:listviewmine:org:fix",
|
|
5917
|
+
"listviewmine:hardis:org:fix",
|
|
5918
|
+
"listviewmine:org:hardis:fix",
|
|
5919
|
+
"listviewmine:org:fix:hardis",
|
|
5920
|
+
"hardis:listviewmine:fix:org",
|
|
5921
|
+
"listviewmine:hardis:fix:org",
|
|
5922
|
+
"listviewmine:fix:hardis:org",
|
|
5923
|
+
"listviewmine:fix:org:hardis"
|
|
5924
|
+
]
|
|
5925
|
+
},
|
|
5811
5926
|
"hardis:org:diagnose:audittrail": {
|
|
5812
5927
|
"aliases": [],
|
|
5813
5928
|
"args": {},
|
|
@@ -7185,121 +7300,6 @@
|
|
|
7185
7300
|
"unusedusers:diagnose:org:hardis"
|
|
7186
7301
|
]
|
|
7187
7302
|
},
|
|
7188
|
-
"hardis:org:fix:listviewmine": {
|
|
7189
|
-
"aliases": [],
|
|
7190
|
-
"args": {},
|
|
7191
|
-
"description": "Fix listviews whose scope Mine has been replaced by Everything\n\n[](https://nicolas.vuillamy.fr/invalid-scope-mine-not-allowed-deploy-your-listviews-anyway-443aceca8ac7)\n\nList of ListViews can be:\n\n- read from .sfdx-hardis.yml file in property **listViewsToSetToMine**\n- sent in argument listviews\n\nNote: property **listViewsToSetToMine** can be auto-generated by command hardis:work:save if .sfdx-hardis.yml contains the following configuration\n\n```yaml\nautoCleanTypes:\n - listViewsMine\n```\n\n- Example of sfdx-hardis.yml property `listViewsToSetToMine`:\n\n```yaml\nlistViewsToSetToMine:\n - \"force-app/main/default/objects/Operation__c/listViews/MyCurrentOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Operation__c/listViews/MyFinalizedOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/Default_Opportunity_Pipeline.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MyCurrentSubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MySubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Account/listViews/MyActivePartners.listView-meta.xml\"\n```\n\n- If manually written, this could also be:\n\n```yaml\nlistViewsToSetToMine:\n - \"Operation__c:MyCurrentOperations\"\n - \"Operation__c:MyFinalizedOperations\"\n - \"Opportunity:Default_Opportunity_Pipeline\"\n - \"Opportunity:MyCurrentSubscriptions\"\n - \"Opportunity:MySubscriptions\"\n - \"Account:MyActivePartners\"\n```\n\nTroubleshooting: if you need to run this command from an alpine-linux based docker image, use this workaround in your dockerfile:\n\n```dockerfile\n# Do not use puppeteer embedded chromium\nRUN apk add --update --no-cache chromium\nENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=\"true\"\nENV CHROMIUM_PATH=\"/usr/bin/chromium-browser\"\nENV PUPPETEER_EXECUTABLE_PATH=\"$\\{CHROMIUM_PATH}\" // remove \\ before {\n```\n",
|
|
7192
|
-
"examples": [
|
|
7193
|
-
"$ sf hardis:org:fix:listviewmine",
|
|
7194
|
-
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
7195
|
-
],
|
|
7196
|
-
"flags": {
|
|
7197
|
-
"json": {
|
|
7198
|
-
"description": "Format output as json.",
|
|
7199
|
-
"helpGroup": "GLOBAL",
|
|
7200
|
-
"name": "json",
|
|
7201
|
-
"allowNo": false,
|
|
7202
|
-
"type": "boolean"
|
|
7203
|
-
},
|
|
7204
|
-
"flags-dir": {
|
|
7205
|
-
"helpGroup": "GLOBAL",
|
|
7206
|
-
"name": "flags-dir",
|
|
7207
|
-
"summary": "Import flag values from a directory.",
|
|
7208
|
-
"hasDynamicHelp": false,
|
|
7209
|
-
"multiple": false,
|
|
7210
|
-
"type": "option"
|
|
7211
|
-
},
|
|
7212
|
-
"listviews": {
|
|
7213
|
-
"char": "l",
|
|
7214
|
-
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
7215
|
-
"name": "listviews",
|
|
7216
|
-
"hasDynamicHelp": false,
|
|
7217
|
-
"multiple": false,
|
|
7218
|
-
"type": "option"
|
|
7219
|
-
},
|
|
7220
|
-
"debug": {
|
|
7221
|
-
"char": "d",
|
|
7222
|
-
"description": "Activate debug mode (more logs)",
|
|
7223
|
-
"name": "debug",
|
|
7224
|
-
"allowNo": false,
|
|
7225
|
-
"type": "boolean"
|
|
7226
|
-
},
|
|
7227
|
-
"websocket": {
|
|
7228
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7229
|
-
"name": "websocket",
|
|
7230
|
-
"hasDynamicHelp": false,
|
|
7231
|
-
"multiple": false,
|
|
7232
|
-
"type": "option"
|
|
7233
|
-
},
|
|
7234
|
-
"skipauth": {
|
|
7235
|
-
"description": "Skip authentication check when a default username is required",
|
|
7236
|
-
"name": "skipauth",
|
|
7237
|
-
"allowNo": false,
|
|
7238
|
-
"type": "boolean"
|
|
7239
|
-
},
|
|
7240
|
-
"target-org": {
|
|
7241
|
-
"aliases": [
|
|
7242
|
-
"targetusername",
|
|
7243
|
-
"u"
|
|
7244
|
-
],
|
|
7245
|
-
"char": "o",
|
|
7246
|
-
"deprecateAliases": true,
|
|
7247
|
-
"name": "target-org",
|
|
7248
|
-
"noCacheDefault": true,
|
|
7249
|
-
"required": true,
|
|
7250
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7251
|
-
"hasDynamicHelp": true,
|
|
7252
|
-
"multiple": false,
|
|
7253
|
-
"type": "option"
|
|
7254
|
-
}
|
|
7255
|
-
},
|
|
7256
|
-
"hasDynamicHelp": true,
|
|
7257
|
-
"hiddenAliases": [],
|
|
7258
|
-
"id": "hardis:org:fix:listviewmine",
|
|
7259
|
-
"pluginAlias": "sfdx-hardis",
|
|
7260
|
-
"pluginName": "sfdx-hardis",
|
|
7261
|
-
"pluginType": "core",
|
|
7262
|
-
"strict": true,
|
|
7263
|
-
"enableJsonFlag": true,
|
|
7264
|
-
"title": "Fix listviews with ",
|
|
7265
|
-
"requiresProject": true,
|
|
7266
|
-
"isESM": true,
|
|
7267
|
-
"relativePath": [
|
|
7268
|
-
"lib",
|
|
7269
|
-
"commands",
|
|
7270
|
-
"hardis",
|
|
7271
|
-
"org",
|
|
7272
|
-
"fix",
|
|
7273
|
-
"listviewmine.js"
|
|
7274
|
-
],
|
|
7275
|
-
"aliasPermutations": [],
|
|
7276
|
-
"permutations": [
|
|
7277
|
-
"hardis:org:fix:listviewmine",
|
|
7278
|
-
"org:hardis:fix:listviewmine",
|
|
7279
|
-
"org:fix:hardis:listviewmine",
|
|
7280
|
-
"org:fix:listviewmine:hardis",
|
|
7281
|
-
"hardis:fix:org:listviewmine",
|
|
7282
|
-
"fix:hardis:org:listviewmine",
|
|
7283
|
-
"fix:org:hardis:listviewmine",
|
|
7284
|
-
"fix:org:listviewmine:hardis",
|
|
7285
|
-
"hardis:fix:listviewmine:org",
|
|
7286
|
-
"fix:hardis:listviewmine:org",
|
|
7287
|
-
"fix:listviewmine:hardis:org",
|
|
7288
|
-
"fix:listviewmine:org:hardis",
|
|
7289
|
-
"hardis:org:listviewmine:fix",
|
|
7290
|
-
"org:hardis:listviewmine:fix",
|
|
7291
|
-
"org:listviewmine:hardis:fix",
|
|
7292
|
-
"org:listviewmine:fix:hardis",
|
|
7293
|
-
"hardis:listviewmine:org:fix",
|
|
7294
|
-
"listviewmine:hardis:org:fix",
|
|
7295
|
-
"listviewmine:org:hardis:fix",
|
|
7296
|
-
"listviewmine:org:fix:hardis",
|
|
7297
|
-
"hardis:listviewmine:fix:org",
|
|
7298
|
-
"listviewmine:hardis:fix:org",
|
|
7299
|
-
"listviewmine:fix:hardis:org",
|
|
7300
|
-
"listviewmine:fix:org:hardis"
|
|
7301
|
-
]
|
|
7302
|
-
},
|
|
7303
7303
|
"hardis:org:generate:packagexmlfull": {
|
|
7304
7304
|
"aliases": [],
|
|
7305
7305
|
"args": {},
|
|
@@ -15484,5 +15484,5 @@
|
|
|
15484
15484
|
]
|
|
15485
15485
|
}
|
|
15486
15486
|
},
|
|
15487
|
-
"version": "6.
|
|
15487
|
+
"version": "6.11.0"
|
|
15488
15488
|
}
|
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.
|
|
6
|
+
"version": "6.11.0",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@actions/github": "^6.0.1",
|
|
9
9
|
"@cparra/apexdocs": "^3.14.1",
|