diff --git a/website/docs/releases.md b/website/docs/releases.md index 8cf54ff..ed05aa1 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,12 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### 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/';