Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions website/docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ

:::

### 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.
* 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. The FILTER clause is only supported for WINDOW functions, which are aggregates.

### 0.0.22106 [May 1 2025]

* The following deprecated geospatial functions have been removed from Hyper SQL:
Expand Down
2 changes: 1 addition & 1 deletion website/src/config.ts
Original file line number Diff line number Diff line change
@@ -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/';
Expand Down