From 6d6c5b3d337ee915af7e5f61eb2876ef967eff90 Mon Sep 17 00:00:00 2001 From: "Stefan R. Steiner" Date: Mon, 5 May 2025 16:47:35 -0700 Subject: [PATCH 1/5] Add placeholder for upcoming release --- website/docs/releases.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/docs/releases.md b/website/docs/releases.md index 32a5c4d..57dd987 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,9 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### Upcoming Release + + ### 0.0.22106 [May 1 2025] * The following deprecated geospatial functions have been removed from Hyper SQL: From 95f7d693ebd0df61197d36098567f3e84ba04950 Mon Sep 17 00:00:00 2001 From: Florian Scheibner Date: Tue, 13 May 2025 14:31:49 +0200 Subject: [PATCH 2/5] Update releases.md with TZ 2025b (#159) --- website/docs/releases.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index 57dd987..c685697 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -25,7 +25,9 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: ### Upcoming Release - +* IANA released version 2025b of the Time Zone Database. Hyper’s time zone information is updated accordingly. Noteworthy changes: + * New zone America/Coyhaique + * Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. ### 0.0.22106 [May 1 2025] From 00c303a6f32073eeed1e71f406e605b2a07f802f Mon Sep 17 00:00:00 2001 From: Michael Haubenschild Date: Tue, 17 Jun 2025 09:05:08 +0200 Subject: [PATCH 3/5] Document FILTER clause (#160) * Document FILTER clause --- website/docs/releases.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/docs/releases.md b/website/docs/releases.md index c685697..f5e0c5f 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -28,6 +28,9 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ * IANA released version 2025b of the Time Zone Database. Hyper’s time zone information is updated accordingly. Noteworthy changes: * New zone America/Coyhaique * Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. +* Support for the FILTER clause has been added to aggregation functions in Hyper SQL. + * For example, you can now write queries such as `SELECT count(*), count(*) FILTER (WHERE color = 'blue') FROM phone_cases;`. + * The FILTER clause is not supported for ordered-set aggregates and only for WINDOW functions which are aggregates. ### 0.0.22106 [May 1 2025] From 402af085253da38a4c75ff7608ffd34c87f2ebe4 Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Wed, 18 Jun 2025 10:11:50 -0700 Subject: [PATCH 4/5] Update release.md and config.ts Updated for June 19th release Update config version to: 0.0.22502.r99d1cc31 for June 19th, 2025 release --- website/docs/releases.md | 2 +- website/src/config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/releases.md b/website/docs/releases.md index f5e0c5f..25eba3f 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,7 +24,7 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: -### Upcoming Release +### 0.0.22502 [June 19 2025] * IANA released version 2025b of the Time Zone Database. Hyper’s time zone information is updated accordingly. Noteworthy changes: * New zone America/Coyhaique * Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. diff --git a/website/src/config.ts b/website/src/config.ts index a07ee76..d97055f 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.22106.r7822c4e1'; +const version_long = '0.0.22502.r99d1cc31'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/'; From 08c140873924515d9996375c6c8451c1eccf111d Mon Sep 17 00:00:00 2001 From: "Stefan R. Steiner" Date: Wed, 18 Jun 2025 15:00:39 -0700 Subject: [PATCH 5/5] Update releases.md per review comment --- 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 25eba3f..feb9bea 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -30,7 +30,7 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ * Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. * Support for the FILTER clause has been added to aggregation functions in Hyper SQL. * For example, you can now write queries such as `SELECT count(*), count(*) FILTER (WHERE color = 'blue') FROM phone_cases;`. - * The FILTER clause is not supported for ordered-set aggregates and only for WINDOW functions which are aggregates. + * The FILTER clause is not supported for ordered-set aggregates. The FILTER clause is only supported for WINDOW functions, which are aggregates. ### 0.0.22106 [May 1 2025]