Skip to content

Commit 160a984

Browse files
authored
v1.7.23 - Updates Flow full recalc actions to global visibility (#715)
1 parent 317d4b4 commit 160a984

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ As well, don't miss [the Wiki](../../wiki), which includes even more info for co
2424

2525
## Deployment & Setup
2626

27-
<a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syARIAY">
27+
<a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syAgIAI">
2828
<img alt="Deploy to Salesforce" src="./media/deploy-package-to-prod.png">
2929
</a>
3030

31-
<a href="https://test.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syARIAY">
31+
<a href="https://test.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syAgIAI">
3232
<img alt="Deploy to Salesforce Sandbox" src="./media/deploy-package-to-sandbox.png">
3333
</a>
3434
<br/>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apex-rollup",
3-
"version": "1.7.22",
3+
"version": "1.7.23",
44
"description": "Fast, configurable, elastically scaling custom rollup solution. Apex Invocable action, one-liner Apex trigger/CMDT-driven logic, and scheduled Apex-ready.",
55
"repository": {
66
"type": "git",

rollup-namespaced/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ For more info, see the base `README`.
1818

1919
## Deployment & Setup
2020

21-
<a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syAWIAY">
21+
<a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syAlIAI">
2222
<img alt="Deploy to Salesforce"
2323
src="./media/deploy-package-to-prod.png">
2424
</a>
2525

26-
<a href="https://test.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syAWIAY">
26+
<a href="https://test.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syAlIAI">
2727
<img alt="Deploy to Salesforce Sandbox"
2828
src="./media/deploy-package-to-sandbox.png">
2929
</a>

rollup-namespaced/sfdx-project.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"default": true,
55
"package": "apex-rollup-namespaced",
66
"path": "rollup-namespaced/source/rollup",
7-
"versionName": "Trims down RollupRepository query and adds additional logging for no-op scenarios and finalizer start/finish",
8-
"versionNumber": "1.2.19.0",
7+
"versionName": "Updates Flow full recalc actions to global visibility",
8+
"versionNumber": "1.2.20.0",
99
"versionDescription": "Fast, configurable, elastically scaling custom rollup solution. Apex Invocable action, one-liner Apex trigger/CMDT-driven logic, and scheduled Apex-ready.",
1010
"releaseNotesUrl": "https://github.com/jamessimone/apex-rollup/releases/latest",
1111
"unpackagedMetadata": {
@@ -36,6 +36,7 @@
3636
"[email protected]": "04tKf000000sy4cIAA",
3737
"[email protected]": "04tKf000000sy9iIAA",
3838
"[email protected]": "04tKf000000syACIAY",
39-
"[email protected]": "04tKf000000syAWIAY"
39+
"[email protected]": "04tKf000000syAWIAY",
40+
"[email protected]": "04tKf000000syAlIAI"
4041
}
4142
}

rollup/core/classes/RollupFlowFullRecalcDispatcher.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ global without sharing class RollupFlowFullRecalcDispatcher {
1414
}
1515

1616
@InvocableMethod(category='Rollups' label='Full Recalc Comma-Separated Rollup DeveloperNames')
17-
public static List<Rollup.FlowOutput> performFullRecalcRollups(List<FlowInput> inputs) {
17+
global static List<Rollup.FlowOutput> performFullRecalcRollups(List<FlowInput> inputs) {
1818
return new RollupFlowFullRecalcDispatcher().process(inputs, new DeveloperNamePreprocessor());
1919
}
2020

rollup/core/classes/RollupFlowRecalculator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
public without sharing class RollupFlowRecalculator {
1+
global without sharing class RollupFlowRecalculator {
22
@InvocableMethod(category='Rollups' label='Full Recalc Comma-Separated Parent API Names')
3-
public static List<Rollup.FlowOutput> performFullRecalcRollups(List<RollupFlowFullRecalcDispatcher.FlowInput> inputs) {
3+
global static List<Rollup.FlowOutput> performFullRecalcRollups(List<RollupFlowFullRecalcDispatcher.FlowInput> inputs) {
44
return new RollupFlowFullRecalcDispatcher().process(inputs, new ParentNamePreprocessor());
55
}
66

rollup/core/classes/RollupLogger.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
global without sharing virtual class RollupLogger implements ILogger {
33
@TestVisible
44
// this gets updated via the pipeline as the version number gets incremented
5-
private static final String CURRENT_VERSION_NUMBER = 'v1.7.22';
5+
private static final String CURRENT_VERSION_NUMBER = 'v1.7.23';
66
private static final System.LoggingLevel FALLBACK_LOGGING_LEVEL = System.LoggingLevel.DEBUG;
77
private static final RollupPlugin PLUGIN = new RollupPlugin();
88

sfdx-project.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"package": "apex-rollup",
66
"path": "rollup",
77
"scopeProfiles": true,
8-
"versionName": "Trims down RollupRepository query and adds additional logging for no-op scenarios and finalizer start/finish",
9-
"versionNumber": "1.7.22.0",
8+
"versionName": "Updates Flow full recalc actions to global visibility",
9+
"versionNumber": "1.7.23.0",
1010
"versionDescription": "Fast, configurable, elastically scaling custom rollup solution. Apex Invocable action, one-liner Apex trigger/CMDT-driven logic, and scheduled Apex-ready.",
1111
"releaseNotesUrl": "https://github.com/jamessimone/apex-rollup/releases/latest",
1212
"unpackagedMetadata": {
@@ -102,10 +102,9 @@
102102
"Apex Rollup - Rollup [email protected]": "04t6g000008Sis0AAC",
103103
"Nebula Logger - [email protected]": "04t5Y0000015oRNQAY",
104104
"apex-rollup": "0Ho6g000000TNcOCAW",
105-
"[email protected]": "04tKf000000sy48IAA",
106-
"[email protected]": "04tKf000000sy4SIAQ",
107105
"[email protected]": "04tKf000000sy9dIAA",
108106
"[email protected]": "04tKf000000syA7IAI",
109-
"[email protected]": "04tKf000000syARIAY"
107+
"[email protected]": "04tKf000000syARIAY",
108+
"[email protected]": "04tKf000000syAgIAI"
110109
}
111110
}

0 commit comments

Comments
 (0)