-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V1.3.25 - Ultimate Parent Full Recalc Bugfix (#238)
* Fixes #237 by ensuring ultimate parent rollups don't run endlessly and properly abort at the top-level parents after calculating rollups - also ensures full recalc feature works for hierarchical parents
- Loading branch information
1 parent
cccf766
commit d307f7d
Showing
11 changed files
with
94 additions
and
46 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
trigger AccountTrigger on Account (after delete) { | ||
trigger AccountTrigger on Account(after insert, after update, after delete) { | ||
// included specifically to test merges | ||
Rollup.runFromTrigger(); | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
"default": true, | ||
"package": "apex-rollup", | ||
"path": "rollup", | ||
"versionName": "Flow bugfixes, logging readability improvements, some tooling work related to plugins", | ||
"versionNumber": "1.3.24.0", | ||
"versionName": "Fixing issue with ultimate parent rollups and full recalculation", | ||
"versionNumber": "1.3.25.0", | ||
"versionDescription": "Fast, configurable, elastically scaling custom rollup solution. Apex Invocable action, one-liner Apex trigger/CMDT-driven logic, and scheduled Apex-ready.", | ||
"releaseNotesUrl": "https://github.com/jamessimone/apex-rollup/releases/latest", | ||
"unpackagedMetadata": { | ||
|
@@ -71,11 +71,11 @@ | |
"path": "plugins\\ExtraCodeCoverage", | ||
"package": "Apex Rollup - Extra Code Coverage", | ||
"versionName": "Updating code coverage", | ||
"versionNumber": "0.0.4.0", | ||
"versionNumber": "0.0.5.0", | ||
"default": false, | ||
"dependencies": [ | ||
{ | ||
"package": "[email protected].23-0" | ||
"package": "[email protected].25-0" | ||
} | ||
] | ||
} | ||
|
@@ -97,16 +97,13 @@ | |
"Apex Rollup - Rollup [email protected]": "04t6g000008ShztAAC", | ||
"Apex Rollup - Rollup [email protected]": "04t6g000008Sis0AAC", | ||
"Apex Rollup - Extra Code Coverage": "0Ho6g000000GnCWCA0", | ||
"Apex Rollup - Extra Code [email protected]": "04t6g000008Sii9AAC", | ||
"Apex Rollup - Extra Code [email protected]": "04t6g000008SirqAAC", | ||
"[email protected]": "04t6g000008SiSdAAK", | ||
"[email protected]": "04t6g000008SiTgAAK", | ||
"[email protected]": "04t6g000008SiUyAAK", | ||
"[email protected]": "04t6g000008SiVIAA0", | ||
"Apex Rollup - Extra Code [email protected]": "04t6g000008SizvAAC", | ||
"[email protected]": "04t6g000008SiaJAAS", | ||
"[email protected]": "04t6g000008SigrAAC", | ||
"[email protected]": "04t6g000008SijvAAC", | ||
"[email protected]": "04t6g000008SitNAAS", | ||
"[email protected]": "04t6g000008Siv4AAC" | ||
"[email protected]": "04t6g000008Siv4AAC", | ||
"[email protected]": "04t6g000008Sj00AAC" | ||
} | ||
} |