Skip to content

Commit 676c95e

Browse files
committed
list bugfixes
1 parent 725167d commit 676c95e

File tree

3 files changed

+50
-50
lines changed

3 files changed

+50
-50
lines changed

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

Lines changed: 23 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -8,50 +8,42 @@ 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 ship Windows ARM64 extensions
29+
[pr](https://github.com/duckdb/duckdb/pull/20004)
3530

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-
```
31+
## Extensions
4132

42-
```text
43-
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”
44-
β”‚ area β”‚
45-
β”‚ double β”‚
46-
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€
47-
β”‚ 12.0 β”‚
48-
β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜
49-
```
33+
New [Vortex]({% link docs/stable/core_extensions/vortex.md %}) version 0.56 [pr](https://github.com/duckdb/duckdb/pull/19815)
5034

51-
### Python Wheel Distribution for Windows ARM64
35+
## Fixes
5236

53-
We now distribute Python wheels for Windows ARM64. This means that you take e.g. a Copilot+ laptop and run:
37+
https://github.com/duckdb/duckdb/issues/19754 - segfault
38+
https://github.com/duckdb/duckdb/issues/19645 - internal error
5439

55-
```bash
56-
pip install duckdb
57-
```
40+
https://github.com/duckdb/duckdb/issues/19884 - copy to parquet + param error
41+
https://github.com/duckdb/duckdb/issues/19469 - constraint violation
42+
https://github.com/duckdb/duckdb/issues/18997 - macro binding perf
43+
44+
https://github.com/duckdb/duckdb/issues/19916 - wasm - timezone offset issue
45+
https://github.com/duckdb/duckdb/issues/19313 - wrong result in cornercase
46+
https://github.com/duckdb/duckdb/issues/19924 - wrong results with groupsets
47+
https://github.com/duckdb/duckdb/issues/19517 - duplicate column names
48+
https://github.com/duckdb/duckdb/issues/18782 - index issue
49+
https://github.com/duckdb/duckdb/issues/19575 - like expression error
2.53 MB
Loading

0 commit comments

Comments
Β (0)