Skip to content

Commit 5e76cd8

Browse files
authored
v1.7.25 - Fixes known issue with packaging first reported in #697
1 parent 02c4451 commit 5e76cd8

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
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=04tKf000000syBUIAY">
27+
<a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syBeIAI">
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=04tKf000000syBUIAY">
31+
<a href="https://test.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syBeIAI">
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.24",
3+
"version": "1.7.25",
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=04tKf000000syBZIAY">
21+
<a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syBjIAI">
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=04tKf000000syBZIAY">
26+
<a href="https://test.salesforce.com/packaging/installPackage.apexp?p0=04tKf000000syBjIAI">
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": "Restores ability to schedule rollups with a query starting from a parent object",
8-
"versionNumber": "1.2.21.0",
7+
"versionName": "Fixes managed packaging known issue a028c00000qQ7V6AAK",
8+
"versionNumber": "1.2.22.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": {
@@ -38,6 +38,7 @@
3838
"[email protected]": "04tKf000000syACIAY",
3939
"[email protected]": "04tKf000000syAWIAY",
4040
"[email protected]": "04tKf000000syAlIAI",
41-
"[email protected]": "04tKf000000syBZIAY"
41+
"[email protected]": "04tKf000000syBZIAY",
42+
"[email protected]": "04tKf000000syBjIAI"
4243
}
4344
}

rollup/core/classes/RollupAsyncProcessor.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ global virtual without sharing class RollupAsyncProcessor extends Rollup impleme
399399
}
400400
}
401401

402-
public without sharing virtual class QueueableProcessor extends RollupAsyncProcessor implements System.Queueable {
402+
global without sharing virtual class QueueableProcessor extends RollupAsyncProcessor implements System.Queueable {
403403
protected QueueableProcessor(InvocationPoint rollupInvokePoint) {
404404
super(rollupInvokePoint);
405405
}

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.24';
5+
private static final String CURRENT_VERSION_NUMBER = 'v1.7.25';
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 & 3 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": "Restores ability to schedule rollups with a query starting from a parent object",
9-
"versionNumber": "1.7.24.0",
8+
"versionName": "Fixes managed packaging known issue a028c00000qQ7V6AAK",
9+
"versionNumber": "1.7.25.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": {
@@ -106,6 +106,7 @@
106106
"[email protected]": "04tKf000000syA7IAI",
107107
"[email protected]": "04tKf000000syARIAY",
108108
"[email protected]": "04tKf000000syAgIAI",
109-
"[email protected]": "04tKf000000syBUIAY"
109+
"[email protected]": "04tKf000000syBUIAY",
110+
"[email protected]": "04tKf000000syBeIAI"
110111
}
111112
}

0 commit comments

Comments
 (0)