Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0d1d5d3
feat!: add time-range indexes for trending/leaderboard queries
QuantumExplorer May 25, 2026
606c0a8
test(drive-abci): verify time-range aggregates through the SDK FromPr…
QuantumExplorer Aug 25, 2026
550eed3
feat!: phase-only time-range grids with grid-qualified index levels
QuantumExplorer Aug 25, 2026
72f70e1
refactor(platform-queries): one shared time-range proof normalization…
QuantumExplorer Aug 25, 2026
8c59f7c
fix(dpp)!: cap timeRange.phase at one year so no valid timestamp prec…
QuantumExplorer Aug 25, 2026
6e99f91
fix(drive)!: refuse time-range selections on the ranked and HAVING su…
QuantumExplorer Aug 25, 2026
a6d6aa0
docs(dapi-grpc): tighten the IN_TIME_RANGE operator comment
QuantumExplorer Aug 25, 2026
a317c86
test: deterministic time-range fixtures; direct WASM grid-parser cove…
QuantumExplorer Aug 26, 2026
b3bb244
fix: address review findings on the time-range query surfaces
QuantumExplorer Aug 26, 2026
c8045af
test(suite): tolerate the protocol v14 $contractVersion stamp in docu…
QuantumExplorer Aug 26, 2026
3c1dfc9
test(sdk): pin the protocol gate's typed error variant
QuantumExplorer Aug 26, 2026
4b1d348
fix(drive)!: apply in-bucket cursors at the document-id terminal, not…
QuantumExplorer Aug 26, 2026
77a31b3
refactor(drive): derive time-range provenance's field from its transform
QuantumExplorer Aug 26, 2026
808c766
refactor(dpp): keep the grammar-admission mapping crate-private
QuantumExplorer Aug 26, 2026
dd061f9
refactor(drive)!: route ranked and having-range proofs through groved…
QuantumExplorer Aug 26, 2026
cf759a3
fix(drive-abci): eta-reduce the savepoint-rollback error mapping
QuantumExplorer Aug 26, 2026
60b786b
style(drive-abci): sort the GroveDBError import where rustfmt puts it
QuantumExplorer Aug 26, 2026
aacc446
test(drive): sibling file for the time-range e2e module; pin cursor i…
QuantumExplorer Aug 26, 2026
36d8f28
docs(drive): drop the last references to the deleted cross-index grid…
QuantumExplorer Aug 26, 2026
1cb58ee
test(drive-abci): re-sign tampered metadata so the negatives pin the …
QuantumExplorer Aug 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 33 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/dapi-grpc/clients/drive/v0/nodejs/drive_pbjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -20039,6 +20039,7 @@ $root.org = (function() {
* @property {number} BETWEEN_EXCLUDE_RIGHT=8 BETWEEN_EXCLUDE_RIGHT value
* @property {number} IN=9 IN value
* @property {number} STARTS_WITH=10 STARTS_WITH value
* @property {number} IN_TIME_RANGE=11 IN_TIME_RANGE value
*/
GetDocumentsRequest.WhereOperator = (function() {
var valuesById = {}, values = Object.create(valuesById);
Expand All @@ -20053,6 +20054,7 @@ $root.org = (function() {
values[valuesById[8] = "BETWEEN_EXCLUDE_RIGHT"] = 8;
values[valuesById[9] = "IN"] = 9;
values[valuesById[10] = "STARTS_WITH"] = 10;
values[valuesById[11] = "IN_TIME_RANGE"] = 11;
return values;
})();

Expand Down Expand Up @@ -20870,6 +20872,7 @@ $root.org = (function() {
case 8:
case 9:
case 10:
case 11:
break;
}
if (message.value != null && message.hasOwnProperty("value")) {
Expand Down Expand Up @@ -20939,6 +20942,10 @@ $root.org = (function() {
case 10:
message.operator = 10;
break;
case "IN_TIME_RANGE":
case 11:
message.operator = 11;
break;
}
if (object.value != null) {
if (typeof object.value !== "object")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19531,6 +19531,7 @@ $root.org = (function() {
* @property {number} BETWEEN_EXCLUDE_RIGHT=8 BETWEEN_EXCLUDE_RIGHT value
* @property {number} IN=9 IN value
* @property {number} STARTS_WITH=10 STARTS_WITH value
* @property {number} IN_TIME_RANGE=11 IN_TIME_RANGE value
*/
GetDocumentsRequest.WhereOperator = (function() {
var valuesById = {}, values = Object.create(valuesById);
Expand All @@ -19545,6 +19546,7 @@ $root.org = (function() {
values[valuesById[8] = "BETWEEN_EXCLUDE_RIGHT"] = 8;
values[valuesById[9] = "IN"] = 9;
values[valuesById[10] = "STARTS_WITH"] = 10;
values[valuesById[11] = "IN_TIME_RANGE"] = 11;
return values;
})();

Expand Down Expand Up @@ -20362,6 +20364,7 @@ $root.org = (function() {
case 8:
case 9:
case 10:
case 11:
break;
}
if (message.value != null && message.hasOwnProperty("value")) {
Expand Down Expand Up @@ -20431,6 +20434,10 @@ $root.org = (function() {
case 10:
message.operator = 10;
break;
case "IN_TIME_RANGE":
case 11:
message.operator = 11;
break;
}
if (object.value != null) {
if (typeof object.value !== "object")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24389,7 +24389,8 @@ proto.org.dash.platform.dapi.v0.GetDocumentsRequest.WhereOperator = {
BETWEEN_EXCLUDE_LEFT: 7,
BETWEEN_EXCLUDE_RIGHT: 8,
IN: 9,
STARTS_WITH: 10
STARTS_WITH: 10,
IN_TIME_RANGE: 11
};


Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading