From 8e03528d6f56b61dd691dd949ac29c071e854a7b Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Mon, 4 May 2026 14:03:42 -0700 Subject: [PATCH 1/4] Add placeholder for upcoming release --- website/docs/releases.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/releases.md b/website/docs/releases.md index 8cf54ff..43875a7 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,8 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### Upcoming Release + ### 0.0.25080 [April 17 2026] * Performance improvements and defect fixes From 27d13c8b8af9f6d8bd58c6919b1fe27554561840 Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Fri, 7 Aug 2026 11:12:53 -0700 Subject: [PATCH 2/4] Update release.md with latest public changes --- website/docs/releases.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/docs/releases.md b/website/docs/releases.md index 43875a7..e88874c 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -25,6 +25,9 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: ### Upcoming Release +* ARRAY_AGG now supports ORDER BY and {NULL | ABSENT} ON NULL. +* Added LISTAGG, STRING_AGG, JSON_ARRAYAGG, SKEWNESS_POP, SKEWNESS_SAMP, and KURTOSIS [aggregate functions](https://developer.salesforce.com/docs/data/data-cloud-query-guide/references/dc-sql-reference/aggregate.html). +* Added ARRAY_TRANSFORM, ARRAY_FILTER functions ### 0.0.25080 [April 17 2026] * Performance improvements and defect fixes From aea72866721de1e86685b8f51f358b30c385e4cc Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Fri, 7 Aug 2026 11:37:39 -0700 Subject: [PATCH 3/4] Fixed release notes to have markdown on the function names --- website/docs/releases.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index e88874c..0c0ea14 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -25,9 +25,9 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: ### Upcoming Release -* ARRAY_AGG now supports ORDER BY and {NULL | ABSENT} ON NULL. -* Added LISTAGG, STRING_AGG, JSON_ARRAYAGG, SKEWNESS_POP, SKEWNESS_SAMP, and KURTOSIS [aggregate functions](https://developer.salesforce.com/docs/data/data-cloud-query-guide/references/dc-sql-reference/aggregate.html). -* Added ARRAY_TRANSFORM, ARRAY_FILTER functions +* `ARRAY_AGG` now supports `ORDER BY` and `{NULL | ABSENT} ON NULL`. +* Added `LISTAGG`, `STRING_AGG`, `JSON_ARRAYAGG`, `SKEWNESS_POP`, `SKEWNESS_SAMP` and `KURTOSIS` [aggregate functions](https://developer.salesforce.com/docs/data/data-cloud-query-guide/references/dc-sql-reference/aggregate.html). +* Added `ARRAY_TRANSFORM` and `ARRAY_FILTER` functions ### 0.0.25080 [April 17 2026] * Performance improvements and defect fixes From 60d42d90e0e5e4fea030144b270e54afb5a1e2fb Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Fri, 7 Aug 2026 11:46:34 -0700 Subject: [PATCH 4/4] Update release.md and config.ts * Updated for August 7th, 2026 release * Update config version to: 0.0.26225.rbf04a855 --- website/docs/releases.md | 3 ++- website/src/config.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index 0c0ea14..ed05aa1 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,10 +24,11 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: -### Upcoming Release +### 0.0.26225 [August 7 2026] * `ARRAY_AGG` now supports `ORDER BY` and `{NULL | ABSENT} ON NULL`. * Added `LISTAGG`, `STRING_AGG`, `JSON_ARRAYAGG`, `SKEWNESS_POP`, `SKEWNESS_SAMP` and `KURTOSIS` [aggregate functions](https://developer.salesforce.com/docs/data/data-cloud-query-guide/references/dc-sql-reference/aggregate.html). * Added `ARRAY_TRANSFORM` and `ARRAY_FILTER` functions +* Performance improvements and defect fixes ### 0.0.25080 [April 17 2026] * Performance improvements and defect fixes diff --git a/website/src/config.ts b/website/src/config.ts index 523d9e5..8310c37 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.25080.r2bfd835b'; +const version_long = '0.0.26225.rbf04a855'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/';