-
-
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.7.4 - Allow Cursor Usage From Batch Apex (#648)
* Fixes issue reported by internal colleague with RollupCalcItemReplacer when two rollups with parent-level fields use mutually exclusive where clauses on the same parent-level field * Fixes #646 by providing escape hatch for cursor usage when batch apex is the originating point for Apex Rollup
- Loading branch information
1 parent
1a1134b
commit 98f7b13
Showing
11 changed files
with
145 additions
and
27 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
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,7 +4,7 @@ | |
"default": true, | ||
"package": "apex-rollup-namespaced", | ||
"path": "rollup-namespaced/source/rollup", | ||
"versionName": "Fixes namespace shadowing issue in RollupFieldInitializer", | ||
"versionName": "Fixes RollupCalcItemReplacer usage with mutually exclusive where clauses, and enables Cursor usage from batch apex jobs", | ||
"versionNumber": "1.2.3.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", | ||
|
@@ -27,6 +27,7 @@ | |
"[email protected]": "04t6g000008OfSJAA0", | ||
"[email protected]": "04t6g000008OfU0AAK", | ||
"[email protected]": "04t6g000008OfWVAA0", | ||
"[email protected]": "04t6g000008OfXYAA0" | ||
"[email protected]": "04t6g000008OfXYAA0", | ||
"[email protected]": "04t6g000008Off4AAC" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
"package": "apex-rollup", | ||
"path": "rollup", | ||
"scopeProfiles": true, | ||
"versionName": "Fixes namespace shadowing issue in RollupFieldInitializer", | ||
"versionNumber": "1.7.3.0", | ||
"versionName": "Fixes RollupCalcItemReplacer usage with mutually exclusive where clauses, and enables Cursor usage from batch apex jobs", | ||
"versionNumber": "1.7.4.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": { | ||
|
@@ -109,6 +109,7 @@ | |
"[email protected]": "04t6g000008OfTvAAK", | ||
"[email protected]": "04t6g000008OfWQAA0", | ||
"[email protected]": "04t6g000008OfXTAA0", | ||
"[email protected]": "04t6g000008OfdwAAC" | ||
"[email protected]": "04t6g000008OfdwAAC", | ||
"[email protected]": "04t6g000008OfezAAC" | ||
} | ||
} |