-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split deployment into several package.xml + DeferSharingCalc manageme…
…nt for scratch org (#66) hardis:work:save: Do not git add manifest files when they have not been updated Select type of org to connect: enhance label Multi-Select default to 9999 items displayed Display tips about deployment failures when they happen Create scratch org: When DeferSharingCalc in features, suspend and resume sharing calc during force:source:push Allow to define a file manifest/deploymentPlan.json to split the deployment into separate package.xml files Example: { "packages": [ { "label": "SharingRulesAccount", "packageXmlFile": "splits/packageXmlSharingRulesAccount.xml", "order": 10, "waitAfter": 60 }, { "label": "SharingRulesVisit__c", "packageXmlFile": "splits/packageXmlSharingRulesAccountVisit__c.xml", "order": 10 } ] }
- Loading branch information
Showing
14 changed files
with
349 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | ||
<Package xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<types> | ||
<members>SfdxHardisDeferSharingRecalc</members> | ||
<name>PermissionSet</name> | ||
</types> | ||
<version>51.0</version> | ||
</Package> |
65 changes: 65 additions & 0 deletions
65
...utils/deferSharingCalc/permissionsets/SfdxHardisDeferSharingRecalc.permissionset-meta.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<PermissionSet xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<hasActivationRequired>false</hasActivationRequired> | ||
<label>SharingRulesCalculation</label> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>AssignPermissionSets</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>DeferSharingCalculations</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>DelegatedTwoFactor</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageInternalUsers</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageIpAddresses</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageLoginAccessPolicies</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManagePasswordPolicies</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageProfilesPermissionsets</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageRoles</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageSharing</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ManageUsers</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ResetPasswords</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ViewAllUsers</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ViewRoles</name> | ||
</userPermissions> | ||
<userPermissions> | ||
<enabled>true</enabled> | ||
<name>ViewSetup</name> | ||
</userPermissions> | ||
</PermissionSet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.