Skip to content

Commit 00ca5e6

Browse files
DISTMYSQL-540 [DOCS] Release notes for PDPS 8.4.6 (#224)
new file: docs/release-notes-ps-8.4.6.md modified: docs/release-notes.md modified: docs/templates/pdf_cover_page.tpl modified: mkdocs-base.yml modified: variables.yml
1 parent 0b2eaeb commit 00ca5e6

File tree

5 files changed

+58
-7
lines changed

5 files changed

+58
-7
lines changed

docs/release-notes-ps-8.4.6.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Percona Distribution for MySQL 8.4.6 using Percona Server for MySQL (2025-09-08)
2+
3+
Percona Distribution for MySQL is more than just a version of MySQL; it is a comprehensive solution that combines Percona Server for MySQL with additional tools to create a cohesive environment. This distribution is reliable, scalable, and secure, ensuring that all components have been tested to work seamlessly together. You can choose from two download options: one that uses Percona Server for MySQL and another that utilizes Percona XtraDB Cluster. Refer to [Install Percona Distribution for MySQL](installing.md).
4+
5+
This release is based on [Percona Server for MySQL 8.4.6-6](https://docs.percona.com/percona-server/8.4/release-notes/8.4.6-6.html) that includes all the features and bug fixes available in the [MySQL 8.4.6 Community Edition](https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-6.html) and enterprise-grade features developed by Percona.
6+
7+
## Release highlights
8+
9+
### Percona Server for MySQL 8.4.6-6
10+
11+
Implements Link-Time Optimization (LTO) to generate more optimized release binaries, resulting in improved performance for specific workloads.
12+
13+
### MySQL 8.4.6
14+
15+
Improvements and bug fixes introduced by Oracle for MySQL 8.4.6 and included in Percona Server for MySQL are the following:
16+
17+
* Fixed an issue where rebuilding a primary key with duplicate entries could cause the server to stop unexpectedly. (Bug #37822992)
18+
19+
* Fixed an issue related to dropping columns that were part of an index. (Bug #37726881)
20+
21+
* Fixed an issue with indexing spatial datatype columns. (Bug #36682518)
22+
23+
* 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)
24+
25+
Find the complete list of bug fixes and changes in the [MySQL 8.4.6 release notes](https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-6.html).
26+
27+
## Build & packaging notes
28+
29+
* The official packages were built with the `WITH_LTO=ON` flag to enable the Link-Time Optimization (LTO) feature.
30+
31+
* Percona Server for MySQL 8.4.6.6 suports Red Hat Enterprise Linux (RHEL) 10.
32+
33+
## Known issues
34+
35+
* ProxySQL contains counters that have not been updated to use the new terminology. Unexpected results may occur. In an 8.4.x environment, the binlog reader errors out during initialization due to the use of old terminology, such as the SHOW MASTER STATUS command.
36+
37+
## Supplied components
38+
39+
Review each component’s release notes for What’s new, improvements, or bug fixes. The following is a list of the components supplied with the Percona Server for MySQL-based variation of the Percona Distribution for MySQL.
40+
41+
| Component | Version | Description |
42+
| ------------------- | --------- | -------------------------------------------|
43+
| Orchestrator | [3.2.6-18](https://github.com/percona/orchestrator/releases/tag/v3.2.6-18) | The replication topology manager for Percona Server for MySQL|
44+
| ProxySQL | [2.7.3](https://docs.percona.com/proxysql/2.7.3.html) | A high performance, high-availability, protocol-aware proxy for MySQL|
45+
| Percona Toolkit | [3.7.0-2](https://docs.percona.com/percona-toolkit/release_notes.html#v3-7-0-2-released-2025-05-14) | The set of scripts to simplify and optimize database operation. |
46+
| Percona XtraBackup | [8.4.0-4](https://docs.percona.com/percona-xtrabackup/8.4/release-notes/8.4.0-4.html)| An open-source hot backup utility for MySQL-based servers|
47+
| MySQL Shell | [8.4.6](https://dev.mysql.com/doc/relnotes/mysql-shell/8.4/en/news-8-4-6.html) | An advanced client and code editor for MySQL Server|
48+
| MySQL Router | [8.4.6](https://dev.mysql.com/doc/relnotes/mysql-router/8.4/en/news-8-4-6.html) | Lightweight middleware that provides transparent routing between your application and back-end MySQL servers|

docs/release-notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Percona Distribution for MySQL using Percona Server for MySQL
44

5+
* [Percona Distribution for MySQL using Percona Server for MySQL 8.4.6 (2025-09-08)](release-notes-ps-8.4.6.md)
6+
57
* [Percona Distribution for MySQL using Percona Server for MySQL 8.4.5 (2025-05-29)](release-notes-ps-8.4.5.md)
68

79
* [Percona Distribution for MySQL using Percona Server for MySQL 8.4.4 (2025-03-18)](release-notes-ps-8.4.4.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.4.5 (July 14, 2025)</h2>
10+
<h2>8.4.6 (September 08, 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
@@ -165,6 +165,7 @@ nav:
165165
- Release notes:
166166
- Release notes index: release-notes.md
167167
- Percona Distribution for MySQL using Percona Server for MySQL:
168+
- release-notes-ps-8.4.6.md
168169
- release-notes-ps-8.4.5.md
169170
- release-notes-ps-8.4.4.md
170171
- release-notes-ps-8.4.3.md

variables.yml

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

3-
release: '8.4.5'
3+
release: '8.4.6'
44
version: '8.4'
5-
psvers: '8.4.5-5'
5+
psvers: '8.4.6-6'
66
vers: '8.4'
77
majorpkg: 'pdps-84-lts'
8-
minorpkg: 'pdps-8.4.5'
8+
minorpkg: 'pdps-8.4.6'
99
majorpkgpxc: 'pdpxc-84-lts'
10-
minorpkgpxc: 'pdpxc-8.4.5'
11-
release_date: '2025-07-14'
12-
title_date: '2025-07-14'
10+
minorpkgpxc: 'pdpxc-8.4.6'
11+
release_date: '2025-09-08'
12+
title_date: '2025-09-08'

0 commit comments

Comments
 (0)