diff --git a/README.md b/README.md index 6522188..577761b 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ Deploy to Salesforce -#### [Unlocked Package Installation (Production)](https://login.salesforce.com/packaging/installPackage.apexp?p0=04t3h000004OYUDAA4) +#### [Unlocked Package Installation (Production)](https://login.salesforce.com/packaging/installPackage.apexp?p0=04t3h000004juLaAAI) -#### [Unlocked Package Installation (Sandbox)](https://test.salesforce.com/packaging/installPackage.apexp?p0=04t3h000004OYUDAA4) +#### [Unlocked Package Installation (Sandbox)](https://test.salesforce.com/packaging/installPackage.apexp?p0=04t3h000004juLaAAI) --- diff --git a/sfdx-project.json b/sfdx-project.json index 395ecf7..fdf0855 100644 --- a/sfdx-project.json +++ b/sfdx-project.json @@ -1,32 +1,33 @@ { - "packageDirectories": [ - { - "path": "trigger-actions-framework", - "default": true, - "package": "Trigger Actions Framework", - "versionName": "Version 0.2", - "versionNumber": "0.2.1.NEXT" - } - ], - "namespace": "", - "sfdcLoginUrl": "https://login.salesforce.com", - "sourceApiVersion": "56.0", - "packageAliases": { - "Trigger Actions Framework": "0Ho3h0000008Om4CAE", - "Trigger Actions Framework@0.1.0-1": "04t3h000004VaHaAAK", - "Trigger Actions Framework@0.1.2": "04t3h000004VaIdAAK", - "Trigger Actions Framework@0.1.3": "04t3h000004VaInAAK", - "Trigger Actions Framework@0.1.4-0": "04t3h000004VaJWAA0", - "Trigger Actions Framework@0.1.4-1": "04t3h000004VaJbAAK", - "Trigger Actions Framework@0.1.5-0": "04t3h000004VaJqAAK", - "Trigger Actions Framework@0.1.6": "04t3h000004VaLDAA0", - "Trigger Actions Framework@0.1.7": "04t3h000004VaLIAA0", - "Trigger Actions Framework@0.1.8": "04t3h000004VaLNAA0", - "Trigger Actions Framework@0.1.9": "04t3h000004VaLSAA0", - "Trigger Actions Framework@0.2.0": "04t3h000004VaLmAAK", - "Trigger Actions Framework@0.2.1": "04t3h000004VaVFAA0", - "Trigger Actions Framework@0.2.2-1": "04t3h000004OYREAA4", - "Trigger Actions Framework@0.2.3-1": "04t3h000004OYTKAA4", - "Trigger Actions Framework@0.2.5-1": "04t3h000004OYUDAA4" - } -} + "packageDirectories": [ + { + "path": "trigger-actions-framework", + "default": true, + "package": "Trigger Actions Framework", + "versionName": "Version 0.2", + "versionNumber": "0.2.1.NEXT" + } + ], + "namespace": "", + "sfdcLoginUrl": "https://login.salesforce.com", + "sourceApiVersion": "56.0", + "packageAliases": { + "Trigger Actions Framework": "0Ho3h0000008Om4CAE", + "Trigger Actions Framework@0.1.0-1": "04t3h000004VaHaAAK", + "Trigger Actions Framework@0.1.2": "04t3h000004VaIdAAK", + "Trigger Actions Framework@0.1.3": "04t3h000004VaInAAK", + "Trigger Actions Framework@0.1.4-0": "04t3h000004VaJWAA0", + "Trigger Actions Framework@0.1.4-1": "04t3h000004VaJbAAK", + "Trigger Actions Framework@0.1.5-0": "04t3h000004VaJqAAK", + "Trigger Actions Framework@0.1.6": "04t3h000004VaLDAA0", + "Trigger Actions Framework@0.1.7": "04t3h000004VaLIAA0", + "Trigger Actions Framework@0.1.8": "04t3h000004VaLNAA0", + "Trigger Actions Framework@0.1.9": "04t3h000004VaLSAA0", + "Trigger Actions Framework@0.2.0": "04t3h000004VaLmAAK", + "Trigger Actions Framework@0.2.1": "04t3h000004VaVFAA0", + "Trigger Actions Framework@0.2.2-1": "04t3h000004OYREAA4", + "Trigger Actions Framework@0.2.3-1": "04t3h000004OYTKAA4", + "Trigger Actions Framework@0.2.5-1": "04t3h000004OYUDAA4", + "Trigger Actions Framework@0.2.6-1": "04t3h000004juLaAAI" + } +} \ No newline at end of file diff --git a/trigger-actions-framework/main/default/classes/FinalizerHandlerTest.cls b/trigger-actions-framework/main/default/classes/FinalizerHandlerTest.cls index 80dbfde..637fbb8 100644 --- a/trigger-actions-framework/main/default/classes/FinalizerHandlerTest.cls +++ b/trigger-actions-framework/main/default/classes/FinalizerHandlerTest.cls @@ -304,9 +304,7 @@ private with sharing class FinalizerHandlerTest { public class FinalizerWithDml implements TriggerAction.DmlFinalizer { public void execute(FinalizerHandler.Context context) { - TriggerBase.bypass(Account.class.getName()); - insert new Account(Name = 'Acme'); - TriggerBase.clearBypass(Account.class.getName()); + Database.setSavepoint(); } } }