From 6487f442039d0cb67499e31bc22b0202557b01f3 Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Thu, 23 Oct 2025 12:40:06 -0700 Subject: [PATCH 1/6] 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 d14eeac..5506587 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.23576 [October 16 2025] * The default_database_version is upgraded to version 2 * This version better supports UPDATE and DELETE on extracts From fda93ab590202918347cad64a25114973bcc02fa Mon Sep 17 00:00:00 2001 From: Marcel Kost Date: Wed, 10 Dec 2025 16:28:07 +0100 Subject: [PATCH 2/6] Add regexp_split_to_array and split to release notes --- website/docs/releases.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/docs/releases.md b/website/docs/releases.md index 5506587..948c89b 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -26,6 +26,11 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ### Upcoming Release +* Added support for two new SQL functions: +* `split` splits a string into an array based on a delimiter. +* `regexp_split_to_array` returns all captured substrings as an array after splitting the input text +string using a regular expression pattern as a delimiter. + ### 0.0.23576 [October 16 2025] * The default_database_version is upgraded to version 2 * This version better supports UPDATE and DELETE on extracts From e4ae303209b889db01a92146b52815e0484c7431 Mon Sep 17 00:00:00 2001 From: Marcel Kost Date: Wed, 10 Dec 2025 16:28:55 +0100 Subject: [PATCH 3/6] Fix indentation --- website/docs/releases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index 948c89b..28009b7 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -27,8 +27,8 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ### Upcoming Release * Added support for two new SQL functions: -* `split` splits a string into an array based on a delimiter. -* `regexp_split_to_array` returns all captured substrings as an array after splitting the input text + * `split` splits a string into an array based on a delimiter. + * `regexp_split_to_array` returns all captured substrings as an array after splitting the input text string using a regular expression pattern as a delimiter. ### 0.0.23576 [October 16 2025] From 774f695e27a64779cc79e2184e83efb2ce81898b Mon Sep 17 00:00:00 2001 From: Marcel Kost Date: Wed, 10 Dec 2025 16:50:42 +0100 Subject: [PATCH 4/6] Update description --- website/docs/releases.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index 28009b7..1af0bd9 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -28,8 +28,7 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ * Added support for two new SQL functions: * `split` splits a string into an array based on a delimiter. - * `regexp_split_to_array` returns all captured substrings as an array after splitting the input text -string using a regular expression pattern as a delimiter. + * `regexp_split_to_array` splits a string into an array by using a POSIX regular expression as the delimiter and returns the text from the end of the last match (or the beginning of the string) to the beginning of the match. When there are no more matches, it returns the text from the end of the last match to the end of the string. ### 0.0.23576 [October 16 2025] * The default_database_version is upgraded to version 2 From edd0690750d234313e8e96bcc4f07585a93e49e2 Mon Sep 17 00:00:00 2001 From: Marcel Kost Date: Wed, 10 Dec 2025 16:51:47 +0100 Subject: [PATCH 5/6] Update description --- website/docs/releases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index 1af0bd9..7e4885f 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -27,7 +27,7 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ### Upcoming Release * Added support for two new SQL functions: - * `split` splits a string into an array based on a delimiter. + * `split` splits a string into an array based on a delimiter. If the delimiter is null, it returns null. If the delimiter is empty, it splits the string into individual characters. * `regexp_split_to_array` splits a string into an array by using a POSIX regular expression as the delimiter and returns the text from the end of the last match (or the beginning of the string) to the beginning of the match. When there are no more matches, it returns the text from the end of the last match to the end of the string. ### 0.0.23576 [October 16 2025] From bddb26d95fca355f554548d2bd9b3fc86046178e Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Wed, 10 Dec 2025 15:38:40 -0800 Subject: [PATCH 6/6] Update release.md and config.ts * Updated for Dec 11th, 2025 release * Update config version to: 0.0.24081.rd9c4b45a --- website/docs/releases.md | 3 +-- website/src/config.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index 7e4885f..9d0991e 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,8 +24,7 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: -### Upcoming Release - +### 0.0.24081 [December 11 2025] * Added support for two new SQL functions: * `split` splits a string into an array based on a delimiter. If the delimiter is null, it returns null. If the delimiter is empty, it splits the string into individual characters. * `regexp_split_to_array` splits a string into an array by using a POSIX regular expression as the delimiter and returns the text from the end of the last match (or the beginning of the string) to the beginning of the match. When there are no more matches, it returns the text from the end of the last match to the end of the string. diff --git a/website/src/config.ts b/website/src/config.ts index 54deba4..cd90a87 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.23576.r0633e4a4'; +const version_long = '0.0.24081.rd9c4b45a'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/';