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/3] 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/3] 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/3] 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]