Skip to content

Commit 6f36e7c

Browse files
Update version_date.tsv and changelogs after v25.4.5.24-stable
1 parent e44af54 commit 6f36e7c

File tree

5 files changed

+29
-3
lines changed

5 files changed

+29
-3
lines changed

docker/keeper/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN arch=${TARGETARCH:-amd64} \
3838
# lts / testing / prestable / etc
3939
ARG REPO_CHANNEL="stable"
4040
ARG REPOSITORY="https://packages.clickhouse.com/tgz/${REPO_CHANNEL}"
41-
ARG VERSION="25.4.4.25"
41+
ARG VERSION="25.4.5.24"
4242
ARG PACKAGES="clickhouse-keeper"
4343
ARG DIRECT_DOWNLOAD_URLS=""
4444

docker/server/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN arch=${TARGETARCH:-amd64} \
3535
# lts / testing / prestable / etc
3636
ARG REPO_CHANNEL="stable"
3737
ARG REPOSITORY="https://packages.clickhouse.com/tgz/${REPO_CHANNEL}"
38-
ARG VERSION="25.4.4.25"
38+
ARG VERSION="25.4.5.24"
3939
ARG PACKAGES="clickhouse-client clickhouse-server clickhouse-common-static"
4040
ARG DIRECT_DOWNLOAD_URLS=""
4141

docker/server/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN sed -i "s|http://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list
2828

2929
ARG REPO_CHANNEL="stable"
3030
ARG REPOSITORY="deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg] https://packages.clickhouse.com/deb ${REPO_CHANNEL} main"
31-
ARG VERSION="25.4.4.25"
31+
ARG VERSION="25.4.5.24"
3232
ARG PACKAGES="clickhouse-client clickhouse-server clickhouse-common-static"
3333

3434
#docker-official-library:off
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
sidebar_position: 1
3+
sidebar_label: 2025
4+
---
5+
6+
# 2025 Changelog
7+
8+
### ClickHouse release v25.4.5.24-stable (0f9619ed591) FIXME as compared to v25.4.4.25-stable (c97f6ffeac6)
9+
10+
#### Bug Fix (user-visible misbehavior in an official stable release)
11+
* Backported in [#80466](https://github.com/ClickHouse/ClickHouse/issues/80466): Try to use IColumn instead of Field in SingleValueDataGeneric. It fixes the incorrect return values for some aggregate functions like `argMax` for types `Dynamic/Variant/JSON`. [#79166](https://github.com/ClickHouse/ClickHouse/pull/79166) ([Pavel Kruglov](https://github.com/Avogar)).
12+
* Backported in [#80258](https://github.com/ClickHouse/ClickHouse/issues/80258): Fixes AMBIGUOUS_COLUMN_NAME error with lazy materialization when no columns are used for query execution until projection. Example, SELECT * FROM t ORDER BY rand() LIMIT 5. [#79926](https://github.com/ClickHouse/ClickHouse/pull/79926) ([Igor Nikonov](https://github.com/devcrafter)).
13+
* Backported in [#80339](https://github.com/ClickHouse/ClickHouse/issues/80339): Fix reading subcolumns from Merge engine. [#80158](https://github.com/ClickHouse/ClickHouse/pull/80158) ([Pavel Kruglov](https://github.com/Avogar)).
14+
* Backported in [#80506](https://github.com/ClickHouse/ClickHouse/issues/80506): Fix improper serialization of nested numeric fields as strings in MongoDB documents. Remove maximum depth limit for documents from MongoDB. [#80289](https://github.com/ClickHouse/ClickHouse/pull/80289) ([Kirill Nikiforov](https://github.com/allmazz)).
15+
* Backported in [#80402](https://github.com/ClickHouse/ClickHouse/issues/80402): Fix text representation of DateTime and DateTime64 for PostgreSQL storage. [#80301](https://github.com/ClickHouse/ClickHouse/pull/80301) ([Yakov Olkhovskiy](https://github.com/yakov-olkhovskiy)).
16+
* Backported in [#80395](https://github.com/ClickHouse/ClickHouse/issues/80395): Fix `NOT_FOUND_COLUMN_IN_BLOCK` error caused by filter-push-down optimization of the logical JOIN sep in case `ON` expression is not a trivial equality. Fixes [#79647](https://github.com/ClickHouse/ClickHouse/issues/79647) Fixes [#77848](https://github.com/ClickHouse/ClickHouse/issues/77848). [#80360](https://github.com/ClickHouse/ClickHouse/pull/80360) ([Nikolai Kochetov](https://github.com/KochetovNicolai)).
17+
18+
#### NOT FOR CHANGELOG / INSIGNIFICANT
19+
20+
* Backported in [#80260](https://github.com/ClickHouse/ClickHouse/issues/80260): More tests for PR INSERT SELECT. [#79380](https://github.com/ClickHouse/ClickHouse/pull/79380) ([Igor Nikonov](https://github.com/devcrafter)).
21+
* Backported in [#79623](https://github.com/ClickHouse/ClickHouse/issues/79623): Avoid cache calculation for deduplication when deduplication is off. [#79596](https://github.com/ClickHouse/ClickHouse/pull/79596) ([Sema Checherinda](https://github.com/CheSema)).
22+
* Backported in [#80273](https://github.com/ClickHouse/ClickHouse/issues/80273): Fix flaky test_refreshable_mv/test.py::test_adding_replica. [#79940](https://github.com/ClickHouse/ClickHouse/pull/79940) ([Michael Kolupaev](https://github.com/al13n321)).
23+
* Backported in [#80256](https://github.com/ClickHouse/ClickHouse/issues/80256): Try to make test_check_replicated_does_not_block_shutdown less flaky. [#80028](https://github.com/ClickHouse/ClickHouse/pull/80028) ([Raúl Marín](https://github.com/Algunenano)).
24+
* Backported in [#80522](https://github.com/ClickHouse/ClickHouse/issues/80522): Fixing creating live and window view creation with populating, it is broken after pr 79596. [#80471](https://github.com/ClickHouse/ClickHouse/pull/80471) ([Sema Checherinda](https://github.com/CheSema)).
25+

utils/list-versions/version_date.tsv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
v25.4.5.24-stable 2025-05-20
12
v25.4.4.25-stable 2025-05-15
23
v25.4.3.22-stable 2025-05-10
34
v25.4.2.31-stable 2025-05-01

0 commit comments

Comments
 (0)