Skip to content

Commit e3d8b11

Browse files
committed
PXC-4735 [Docs] Release notes for PXC 8.0.43-34
new file: docs/release-notes/8.0.43-34.md modified: docs/release-notes/release-notes_index.md modified: docs/templates/pdf_cover_page.tpl modified: mkdocs-base.yml modified: variables.yml
1 parent 0d3d4ec commit e3d8b11

File tree

5 files changed

+64
-4
lines changed

5 files changed

+64
-4
lines changed

docs/release-notes/8.0.43-34.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Percona XtraDB Cluster 8.0.43-34 (2025-09-16)
2+
3+
[Get started with Quickstart Guide for Percona XtraDB Cluster.](../quickstart-overview.md)
4+
5+
Percona XtraDB Cluster 8.0.43-34 includes all the features and bug fixes available in Percona Server for MySQL 8.0.43-34.
6+
7+
## Release highlights
8+
9+
Percona XtraDB Cluster is based on Percona Server for MySQL. Find a complete list of improvements and bug fixes in the [Percona Server for MySQL 8.0.43-34 (2025-08-28) release notes](https://docs.percona.com/percona-server/8.0/release-notes/8.0.43-34.html).
10+
11+
### Percona XtraDB Cluster 8.0.43-34
12+
13+
Implements Link-Time Optimization (LTO) to generate more optimized release binaries, resulting in improved performance for specific workloads.
14+
15+
### Percona Server for MySQL 8.0.43-34
16+
17+
* Improves the `audit_log_filter_set_user()` UDF to accept account names with wildcard characters (`'%'` and `'_'`) in the host part. For example, you can use `‘usr1@%'`, `‘usr2%192.168.0.%’`, or `'usr3@%.mycorp.com'`.
18+
19+
* Updates the C++ level of the KMPI library to enhance error handling capabilities.
20+
21+
* Improves optimizer behavior by restoring correct handling of const tables in `test_quick_select()`. A MySQL Upstream refactor (commit [9a13c1c](https://github.com/percona/percona-server/commit/9a13c1c6971f4bd56d143179ecfb34cca8ecc018)) removed the `QEP_TAB` dependency, causing `get_quick_record_count()` to no longer pass const table information. This could lead to suboptimal range scan boundaries. The applied patch resolves the issue by explicitly passing `const_tables` to `test_quick_select()`, ensuring consistent behavior with the pre-refactor logic.
22+
23+
### MySQL 8.0.43
24+
25+
Improvements and bug fixes provided by Oracle for MySQL 8.0.43 and included in Percona Server for MySQL are the following:
26+
27+
* Fixed an issue where rebuilding a primary key with duplicate entries could cause the server to stop unexpectedly. (Bug #37822992)
28+
29+
* Fixed an issue related to dropping columns that were part of an index. (Bug #37726881)
30+
31+
* Fixed an issue with indexing spatial datatype columns. (Bug #36682518)
32+
33+
* Fixed an issue where creating a secondary index on a `VARCHAR` column could exceed configured memory limits, with the amount allocated being directly related to the `value of innodb_ddl_buffer_size`, leading to errors such as ERROR 1136 (21S01): Column count doesn't match value count at row 1. (Bug #37233273)
34+
35+
Find the complete list of bug fixes and changes in the [MySQL 8.0.43 Release Notes](https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-43.html).
36+
37+
## New feature
38+
39+
[PXC-4631](https://perconadev.atlassian.net/browse/PXC-4631): Percona XtraDB Cluster now prevents a node from automatically attempting a State Snapshot Transfer (SST) after a failed Incremental State Transfer (IST).
40+
41+
## Bug fixes
42+
43+
* [PXC-4392](https://perconadev.atlassian.net/browse/PXC-4392): The default timeout for State Snapshot Transfers (SSTs) is often too short, which can cause the process to fail before it's completed.
44+
45+
* [PXC-4644](https://perconadev.atlassian.net/browse/PXC-4644):Creating a foreign key (FK) without sufficient privileges causes a cluster inconsistency. The node where the command is executed fails with Error 1216 (Cannot add or drop foreign key constraint), while other nodes in the cluster that replicate the event fail with Error 1452 (Cannot add or update a child row: a foreign key constraint fails).
46+
47+
## Additional resources
48+
49+
Download product binaries, packages, and tarballs at [Percona Product Downloads](https://www.percona.com/downloads)
50+
51+
[Install Percona XtraDB Cluster](../install-index.md)
52+
53+
The [Percona XtraDB Cluster GitHub repository](https://github.com/percona/percona-xtradb-cluster)
54+
55+
[Contribute to the documentation](https://github.com/percona/pxc-docs/blob/8.0/contributing.md)
56+
57+
For [training](https://www.percona.com/training), contact [Percona Training - Start learning now](https://learn.percona.com/contact-me).

docs/release-notes/release-notes_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Percona XtraDB Cluster 8.0 release notes index
22

3+
* [Percona XtraDB Cluster 8.0.43-34 (2025-09-16)](8.0.43-34.md)
4+
35
* [Percona XtraDB Cluster 8.0.42-33 (2025-06-16)](8.0.42-33.md)
46

57
* [Percona XtraDB Cluster 8.0.41-32 (2025-03-13)](8.0.41-32.md)

docs/templates/pdf_cover_page.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
{% if config.site_description %}
88
<h1>{{ config.site_description }}</h1>
99
{% endif %}
10-
<h2>8.0.42-33 (June 16, 2025)</h2>
10+
<h2>8.0.43-34 (September 16, 2025)</h2>
1111
<!--<h3>Percona Technical Documentation Team</h3>-->

mkdocs-base.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ nav:
168168
- get-help.md
169169
- Release notes:
170170
- Release notes index: release-notes/release-notes_index.md
171+
- release-notes/8.0.43-34.md
171172
- release-notes/8.0.42-33.md
172173
- release-notes/8.0.41-32.md
173174
- release-notes/8.0.40-31.md

variables.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# variables for HTML output
22

3-
release: '8.0.42-33'
3+
release: '8.0.43-34'
44
version: '8.0'
5-
release_date: '2025-06-16'
6-
title_date: '2025-06-16'
5+
release_date: '2025-09-16'
6+
title_date: '2025-09-16'

0 commit comments

Comments
 (0)