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-467
release/release-466
release/release-465
release/release-464
Expand Down
43 changes: 43 additions & 0 deletions docs/src/main/sphinx/release/release-467.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Release 467 (6 Dec 2024)

## General

* Add support for the `DISTINCT` clause in windowed aggregate functions. ({issue}`24352`)
* Allow using `LISTAGG` as a windowed aggregate function. ({issue}`24366`)
* Change default protocol for internal communication to HTTP/1.1 to address
issues with HTTP/2. ({issue}`24281`)
* Return compressed results to clients by default when using the spooling
protocol. ({issue}`24332`)
* Add application identifier `azure.application-id`, `gcs.application-id`, or
`s3.application-id` to the storage when using the spooling protocol. ({issue}`24361`)
* Add support for OpenTelemetry tracing to the HTTP, Kafka, and MySQL event
listener. ({issue}`24389`)
* Fix incorrect handling of SIGTERM signal, which prevented the server from
shutting down. ({issue}`24380`)
* Fix query failures or missing statistics in `SHOW STATS` when a connector
returns `NaN` values for table statistics. ({issue}`24315`)

## Docker image

* Remove the `microdnf` package manager. ({issue}`24281`)

## Iceberg connector

* Add the `$all_manifests` metadata tables. ({issue}`24330`)
* {{breaking}} Remove the deprecated `schema` and `table` arguments from the
`table_changes` table function. Use `schema_name` and `table_name` instead. ({issue}`24324`)
* {{breaking}} Use the `iceberg.rest-catalog.warehouse` configuration property
instead of `iceberg.rest-catalog.parent-namespace` with Unity catalogs.
* Fix failure when writing concurrently with [transformed
partition](https://iceberg.apache.org/spec/#partition-transforms) columns.
({issue}`24160`)
* Clean up table transaction files when `CREATE TABLE` fails. ({issue}`24279`)

## Delta Lake

* Add the `$transactions` metadata table. ({issue}`24330`)
* Add the `operation_metrics` column to the `$history` metadata table. ({issue}`24379`)

## SPI

* {{breaking}} Remove the deprecated `SystemAccessControlFactory#create` method. ({issue}`24382`)
Loading