Skip to content

Commit 61df1f6

Browse files
committed
list bugfixes
1 parent 725167d commit 61df1f6

File tree

3 files changed

+47
-51
lines changed

3 files changed

+47
-51
lines changed

β€Ž_posts/2025-12-08-announcing-duckdb-143.mdβ€Ž

Lines changed: 20 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -8,50 +8,38 @@ excerpt: "Today we are releasing DuckDB 1.4.3."
88
tags: ["release"]
99
---
1010

11+
GH diff: <https://github.com/duckdb/duckdb/compare/v1.4.2...v1.4-andium>
12+
1113
In this blog post, we highlight a few important fixes and convenience improvements in DuckDB v1.4.3, the second bugfix release in [DuckDB's 1.4 LTS line]({% post_url 2025-09-16-announcing-duckdb-140 %}).
1214
You can find the complete [release notes on GitHub](https://github.com/duckdb/duckdb/releases/tag/v1.4.3).
1315

1416
To install the new version, please visit the [installation page]({% link install/index.html %}).
1517

16-
1718
## Windows ARM64
1819

19-
### Extension Distribution for Windows ARM64
20+
### Python Wheel Distribution for Windows ARM64
2021

21-
We are introducing beta support for Windows ARM64. You can now install core extensions now on this platform:
22+
We now distribute Python wheels for Windows ARM64. This means that you take e.g. a Copilot+ laptop and run:
2223

23-
```sql
24-
PRAGMA platform;
24+
```bash
25+
pip install duckdb
2526
```
2627

27-
```text
28-
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
29-
β”‚ platform β”‚
30-
β”‚ varchar β”‚
31-
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
32-
β”‚ windows_arm64 β”‚
33-
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
34-
```
28+
v1.4.4 is expected to also ship [extensions for Windows ARM64](https://github.com/duckdb/duckdb/pull/20004).
3529

36-
```sql
37-
INSTALL spatial;
38-
LOAD spatial;
39-
SELECT ST_Area(ST_GeomFromText('POLYGON((0 0, 4 0, 4 3, 0 3, 0 0))')) AS area;
40-
```
30+
## Fixes
4131

42-
```text
43-
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”
44-
β”‚ area β”‚
45-
β”‚ double β”‚
46-
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€
47-
β”‚ 12.0 β”‚
48-
β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜
49-
```
50-
51-
### Python Wheel Distribution for Windows ARM64
32+
This version ships a few fixes:
5233

53-
We now distribute Python wheels for Windows ARM64. This means that you take e.g. a Copilot+ laptop and run:
34+
* [`#19754` Rare segfault occurring in the encryption key cache](https://github.com/duckdb/duckdb/issues/19754)
35+
* [`#19884` Copying to Parquet with a prepared statement did not work](https://github.com/duckdb/duckdb/issues/19884)
36+
* [`#19469` Potential error in constraint violation message when checking foreign key constraints](https://github.com/duckdb/duckdb/issues/19469)
37+
* [`#18997` Macro binding had slow performance for unbalanced trees](https://github.com/duckdb/duckdb/issues/18997)
38+
* [`#19916` The default timezone of DuckDB Wasm in a browser had an offset inverted from what it should be](https://github.com/duckdb/duckdb/issues/19916)
39+
* [`#19313` Wrong result in cornercase: a `HAVING` clause without a `GROUP BY` returned an incorrect result](https://github.com/duckdb/duckdb/issues/19313)
40+
* [`#19924` The optimizer incorrectly removed the `ORDER BY` from aggregates](https://github.com/duckdb/duckdb/issues/19924)
41+
* [`#19517` `JOIN` with a `LIKE` pattern resulted in columns being incorrectly included](https://github.com/duckdb/duckdb/issues/19517)
42+
* [`#18782` Incorrect β€œrows affected” reported by ART index](https://github.com/duckdb/duckdb/issues/18782)
43+
* [`#19575` Invalid Unicode error with `LIKE` expressions](https://github.com/duckdb/duckdb/issues/19575)
5444

55-
```bash
56-
pip install duckdb
57-
```
45+
This was a short summary but there have been XX commits by over YY contributors since we v1.4.2. As usual, the full release notes can be [found on GitHub](https://github.com/duckdb/duckdb/releases/tag/v1.4.4). We would like to thank our contributors for providing detailed issue reports and patches!
2.53 MB
Loading

0 commit comments

Comments
Β (0)