sfdx-hardis 6.1.1-beta202508240003.0 → 6.1.1

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,8 @@
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.1.1] 2025-08-24
8
+
7
9
  - Auto-detect which login type to use depending if we are in local or web context (Code Builder, CodeSpaces)
8
10
  - Add documentation for Ubuntu images
9
11
  - Wait for WebSocket Server to be initialized before continuing command.
@@ -5751,121 +5751,6 @@
5751
5751
  "import:files:org:hardis"
5752
5752
  ]
5753
5753
  },
5754
- "hardis:org:fix:listviewmine": {
5755
- "aliases": [],
5756
- "args": {},
5757
- "description": "Fix listviews whose scope Mine has been replaced by Everything\n\n[![Invalid scope:Mine, not allowed ? Deploy your ListViews anyway !](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-invalid-scope-mine.jpg)](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",
5758
- "examples": [
5759
- "$ sf hardis:org:fix:listviewmine",
5760
- "$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
5761
- ],
5762
- "flags": {
5763
- "json": {
5764
- "description": "Format output as json.",
5765
- "helpGroup": "GLOBAL",
5766
- "name": "json",
5767
- "allowNo": false,
5768
- "type": "boolean"
5769
- },
5770
- "flags-dir": {
5771
- "helpGroup": "GLOBAL",
5772
- "name": "flags-dir",
5773
- "summary": "Import flag values from a directory.",
5774
- "hasDynamicHelp": false,
5775
- "multiple": false,
5776
- "type": "option"
5777
- },
5778
- "listviews": {
5779
- "char": "l",
5780
- "description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
5781
- "name": "listviews",
5782
- "hasDynamicHelp": false,
5783
- "multiple": false,
5784
- "type": "option"
5785
- },
5786
- "debug": {
5787
- "char": "d",
5788
- "description": "Activate debug mode (more logs)",
5789
- "name": "debug",
5790
- "allowNo": false,
5791
- "type": "boolean"
5792
- },
5793
- "websocket": {
5794
- "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
5795
- "name": "websocket",
5796
- "hasDynamicHelp": false,
5797
- "multiple": false,
5798
- "type": "option"
5799
- },
5800
- "skipauth": {
5801
- "description": "Skip authentication check when a default username is required",
5802
- "name": "skipauth",
5803
- "allowNo": false,
5804
- "type": "boolean"
5805
- },
5806
- "target-org": {
5807
- "aliases": [
5808
- "targetusername",
5809
- "u"
5810
- ],
5811
- "char": "o",
5812
- "deprecateAliases": true,
5813
- "name": "target-org",
5814
- "noCacheDefault": true,
5815
- "required": true,
5816
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
5817
- "hasDynamicHelp": true,
5818
- "multiple": false,
5819
- "type": "option"
5820
- }
5821
- },
5822
- "hasDynamicHelp": true,
5823
- "hiddenAliases": [],
5824
- "id": "hardis:org:fix:listviewmine",
5825
- "pluginAlias": "sfdx-hardis",
5826
- "pluginName": "sfdx-hardis",
5827
- "pluginType": "core",
5828
- "strict": true,
5829
- "enableJsonFlag": true,
5830
- "title": "Fix listviews with ",
5831
- "requiresProject": true,
5832
- "isESM": true,
5833
- "relativePath": [
5834
- "lib",
5835
- "commands",
5836
- "hardis",
5837
- "org",
5838
- "fix",
5839
- "listviewmine.js"
5840
- ],
5841
- "aliasPermutations": [],
5842
- "permutations": [
5843
- "hardis:org:fix:listviewmine",
5844
- "org:hardis:fix:listviewmine",
5845
- "org:fix:hardis:listviewmine",
5846
- "org:fix:listviewmine:hardis",
5847
- "hardis:fix:org:listviewmine",
5848
- "fix:hardis:org:listviewmine",
5849
- "fix:org:hardis:listviewmine",
5850
- "fix:org:listviewmine:hardis",
5851
- "hardis:fix:listviewmine:org",
5852
- "fix:hardis:listviewmine:org",
5853
- "fix:listviewmine:hardis:org",
5854
- "fix:listviewmine:org:hardis",
5855
- "hardis:org:listviewmine:fix",
5856
- "org:hardis:listviewmine:fix",
5857
- "org:listviewmine:hardis:fix",
5858
- "org:listviewmine:fix:hardis",
5859
- "hardis:listviewmine:org:fix",
5860
- "listviewmine:hardis:org:fix",
5861
- "listviewmine:org:hardis:fix",
5862
- "listviewmine:org:fix:hardis",
5863
- "hardis:listviewmine:fix:org",
5864
- "listviewmine:hardis:fix:org",
5865
- "listviewmine:fix:hardis:org",
5866
- "listviewmine:fix:org:hardis"
5867
- ]
5868
- },
5869
5754
  "hardis:org:diagnose:audittrail": {
5870
5755
  "aliases": [],
5871
5756
  "args": {},
@@ -7015,6 +6900,121 @@
7015
6900
  "unusedusers:diagnose:org:hardis"
7016
6901
  ]
7017
6902
  },
6903
+ "hardis:org:fix:listviewmine": {
6904
+ "aliases": [],
6905
+ "args": {},
6906
+ "description": "Fix listviews whose scope Mine has been replaced by Everything\n\n[![Invalid scope:Mine, not allowed ? Deploy your ListViews anyway !](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-invalid-scope-mine.jpg)](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",
6907
+ "examples": [
6908
+ "$ sf hardis:org:fix:listviewmine",
6909
+ "$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
6910
+ ],
6911
+ "flags": {
6912
+ "json": {
6913
+ "description": "Format output as json.",
6914
+ "helpGroup": "GLOBAL",
6915
+ "name": "json",
6916
+ "allowNo": false,
6917
+ "type": "boolean"
6918
+ },
6919
+ "flags-dir": {
6920
+ "helpGroup": "GLOBAL",
6921
+ "name": "flags-dir",
6922
+ "summary": "Import flag values from a directory.",
6923
+ "hasDynamicHelp": false,
6924
+ "multiple": false,
6925
+ "type": "option"
6926
+ },
6927
+ "listviews": {
6928
+ "char": "l",
6929
+ "description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
6930
+ "name": "listviews",
6931
+ "hasDynamicHelp": false,
6932
+ "multiple": false,
6933
+ "type": "option"
6934
+ },
6935
+ "debug": {
6936
+ "char": "d",
6937
+ "description": "Activate debug mode (more logs)",
6938
+ "name": "debug",
6939
+ "allowNo": false,
6940
+ "type": "boolean"
6941
+ },
6942
+ "websocket": {
6943
+ "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
6944
+ "name": "websocket",
6945
+ "hasDynamicHelp": false,
6946
+ "multiple": false,
6947
+ "type": "option"
6948
+ },
6949
+ "skipauth": {
6950
+ "description": "Skip authentication check when a default username is required",
6951
+ "name": "skipauth",
6952
+ "allowNo": false,
6953
+ "type": "boolean"
6954
+ },
6955
+ "target-org": {
6956
+ "aliases": [
6957
+ "targetusername",
6958
+ "u"
6959
+ ],
6960
+ "char": "o",
6961
+ "deprecateAliases": true,
6962
+ "name": "target-org",
6963
+ "noCacheDefault": true,
6964
+ "required": true,
6965
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
6966
+ "hasDynamicHelp": true,
6967
+ "multiple": false,
6968
+ "type": "option"
6969
+ }
6970
+ },
6971
+ "hasDynamicHelp": true,
6972
+ "hiddenAliases": [],
6973
+ "id": "hardis:org:fix:listviewmine",
6974
+ "pluginAlias": "sfdx-hardis",
6975
+ "pluginName": "sfdx-hardis",
6976
+ "pluginType": "core",
6977
+ "strict": true,
6978
+ "enableJsonFlag": true,
6979
+ "title": "Fix listviews with ",
6980
+ "requiresProject": true,
6981
+ "isESM": true,
6982
+ "relativePath": [
6983
+ "lib",
6984
+ "commands",
6985
+ "hardis",
6986
+ "org",
6987
+ "fix",
6988
+ "listviewmine.js"
6989
+ ],
6990
+ "aliasPermutations": [],
6991
+ "permutations": [
6992
+ "hardis:org:fix:listviewmine",
6993
+ "org:hardis:fix:listviewmine",
6994
+ "org:fix:hardis:listviewmine",
6995
+ "org:fix:listviewmine:hardis",
6996
+ "hardis:fix:org:listviewmine",
6997
+ "fix:hardis:org:listviewmine",
6998
+ "fix:org:hardis:listviewmine",
6999
+ "fix:org:listviewmine:hardis",
7000
+ "hardis:fix:listviewmine:org",
7001
+ "fix:hardis:listviewmine:org",
7002
+ "fix:listviewmine:hardis:org",
7003
+ "fix:listviewmine:org:hardis",
7004
+ "hardis:org:listviewmine:fix",
7005
+ "org:hardis:listviewmine:fix",
7006
+ "org:listviewmine:hardis:fix",
7007
+ "org:listviewmine:fix:hardis",
7008
+ "hardis:listviewmine:org:fix",
7009
+ "listviewmine:hardis:org:fix",
7010
+ "listviewmine:org:hardis:fix",
7011
+ "listviewmine:org:fix:hardis",
7012
+ "hardis:listviewmine:fix:org",
7013
+ "listviewmine:hardis:fix:org",
7014
+ "listviewmine:fix:hardis:org",
7015
+ "listviewmine:fix:org:hardis"
7016
+ ]
7017
+ },
7018
7018
  "hardis:org:generate:packagexmlfull": {
7019
7019
  "aliases": [],
7020
7020
  "args": {},
@@ -15102,5 +15102,5 @@
15102
15102
  ]
15103
15103
  }
15104
15104
  },
15105
- "version": "6.1.1-beta202508240003.0"
15105
+ "version": "6.1.1"
15106
15106
  }
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.1.1-beta202508240003.0",
6
+ "version": "6.1.1",
7
7
  "dependencies": {
8
8
  "@actions/github": "^6.0.1",
9
9
  "@cparra/apexdocs": "^3.14.1",