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
1 change: 1 addition & 0 deletions docs/src/main/sphinx/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
```{toctree}
:maxdepth: 1

release/release-472
release/release-471
release/release-470
release/release-469
Expand Down
60 changes: 60 additions & 0 deletions docs/src/main/sphinx/release/release-472.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Release 472 (5 Mar 2025)

## General

* Color the server console output for improved readability. ({issue}`25090`)
* {{breaking}} Rename HTTP client property prefixes from `workerInfo` and
`memoryManager` to `worker-info` and `memory-manager`. ({issue}`25099`)
* Fix failure for queries with large numbers of expressions in the `SELECT` clause. ({issue}`25040`)
* Improve performance of certain queries involving `ORDER BY ... LIMIT` with subqueries. ({issue}`25138`)
* Fix incorrect results when passing an array that contains nulls to
`cosine_distance` and `cosine_similarity`. ({issue}`25195`)
* Prevent improper use of `WITH SESSION` with non-`SELECT` queries. ({issue}`25112`)

## JDBC driver

* Provide a `javax.sql.DataSource` implementation. ({issue}`24985`)
* Fix roles being cleared after invoking `SET SESSION AUTHORIZATION` or
`RESET SESSION AUTHORIZATION`. ({issue}`25191`)

## Docker image

* Improve performance when using Snappy compression. ({issue}`25143`)
* Fix initialization failure for the DuckDB connector. ({issue}`25143`)

## BigQuery connector

* Improve performance of listing tables when
`bigquery.case-insensitive-name-matching` is enabled. ({issue}`25222`)

## Delta Lake connector

* Improve support for highly concurrent table modifications. ({issue}`25141`)

## Faker connector

* Add support for the `row` type and generate empty values for `array`, `map`,
and `json` types. ({issue}`25120`)

## Iceberg connector

* Add the `$partition` hidden column. ({issue}`24301`)
* Fix incorrect results when reading Iceberg tables after deletes were
performed. ({issue}`25151`)

## Loki connector

* Fix connection failures with Loki version higher than 3.2.0. ({issue}`25156`)

## PostgreSQL connector

* Improve performance for queries involving cast of
[integer types](integer-data-types). ({issue}`24950`)

## SPI

* Remove the deprecated `ConnectorMetadata.addColumn(ConnectorSession session,
ConnectorTableHandle tableHandle, ColumnMetadata column)` method. Use the
`ConnectorMetadata.addColumn(ConnectorSession session, ConnectorTableHandle
tableHandle, ColumnMetadata column, ColumnPosition position)` instead.
({issue}`25163`)