Skip to content

Commit 078d82d

Browse files
PS-9590 [Doc] Release notes for - PS 8.4.4-4 (#464)
* PS-9590 [Doc] Release notes for - PS 8.4.4-4 modified: docs/copyright-and-licensing-information.md new file: docs/release-notes/8.4.4-4.md modified: docs/release-notes/release-notes-index.md modified: mkdocs-base.yml modified: variables.yml * Update 8.4.4-4.md
1 parent e87e9d4 commit 078d82d

5 files changed

+105
-11
lines changed

docs/copyright-and-licensing-information.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## Documentation licensing
44

5-
Percona Server for MySQL documentation is (C)2009-2023 Percona LLC and/or its affiliates and is distributed under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
5+
Percona Server for MySQL documentation is (C)2009-2025 Percona LLC and/or its affiliates and is distributed under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
66

77
## Software license
88

9-
*Percona Server for MySQL* is built upon MySQL from Oracle. Along with making our own
9+
Percona Server for MySQL is built upon MySQL from Oracle. Along with making our own
1010
modifications, we merge in changes from other sources such as community
1111
contributions and changes from MariaDB.
1212

docs/release-notes/8.4.4-4.md

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Percona Server for MySQL 8.4.4-4 (2025-03-18)
2+
3+
Get started with [Quickstart Guide for Percona Server for MySQL].
4+
5+
[Percona Server for MySQL 8.4.4-4] includes all the features and bug fixes available in the MySQL 8.4.4 Community Edition in addition to enterprise-grade features developed by Percona.
6+
7+
## Release highlights
8+
9+
### Percona Server for MySQL 8.4.4-4
10+
11+
* Improves the [Data masking](..//data-masking-overview.md) performance by introducing an internal term cache. The new cache speeds up lookups for `gen_blocklist()` and `gen_dictionary()` functions by storing dictionary data in memory. However, if the dictionary table is modified directly (outside of the proper functions), the cache may become out of sync. To fix this, use the `new masking_dictionaries_flush()` function.
12+
13+
Changes also affect row-based replication: dictionary changes on the source server are replicated, but the term cache on the replica doesn’t update immediately. To address this, a new system variable, `component_masking_functions.dictionaries_flush_interval_seconds`, can be set to automatically refresh the cache at specified intervals, helping replicas stay in sync.
14+
15+
Find more detailed information in the [Data masking overview](..//data-masking-overview.md) and in the [Data masking component functions](..//data-masking-function-list.md).
16+
17+
* Improves the behavior of `audit_log_filter_set_user` to support wildcards in the hostname.
18+
19+
### MySQL 8.4.4
20+
21+
Improvements and bug fixes introduced by Oracle for MySQL 8.4.4 and included in Percona Server for MySQL are the following:
22+
23+
* Fixed an assertion in debug builds where certain IO buffer serializations caused system hangs. (Bug #37139618)
24+
25+
* Resolved a failure when dropping the primary key and adding a new `AUTO_INCREMENT` column as the primary key in descending order using the `INPLACE` algorithm resulted in failure. (Bug #36658450)
26+
27+
* Fixed incorrect results, including missing rows, in queries that used a descending primary key with the `index_merge` optimization. (Bug #106207, Bug #33767814)
28+
29+
* Addressed a replication channel issue where MySQL failed to stop the channel properly when large transactions were being processed, and `STOP REPLICA` was requested. This issue also prevented graceful server shutdown, requiring process termination or system restart. (Bug #115966, Bug #37008345)
30+
31+
Find the complete list of bug fixes and changes in the [MySQL 8.4.4 release notes].
32+
33+
## Improvements
34+
35+
* [PS-9148](https://perconadev.atlassian.net/browse/PS-9148): Extends the [Data masking](..//data-masking-overview.md) with new additions from MySQL 8.3.0 [Enterprise Data Masking and De-Identification Component Variables](https://dev.mysql.com/doc/refman/8.4/en/data-masking-component-variables.html).
36+
37+
* [PS-9024](https://perconadev.atlassian.net/browse/PS-9024): Improves the behavior of `audit_log_filter_set_user` to support wildcards in the hostname.
38+
39+
## Bug fixes
40+
41+
* [PS-9391](https://perconadev.atlassian.net/browse/PS-9391): The replication broke with the error `HA_ERR_KEY_NOT_FOUND` when the `slave_rows_search_algorithms` were set to `INDEX_SCAN,HASH_SCAN`.
42+
43+
* [PS-9416](https://perconadev.atlassian.net/browse/PS-9416): The error messages from the Key Management Interoperability Protocol (KMIP) component were not descriptive.
44+
45+
* [9509](https://perconadev.atlassian.net/browse/PS-9509): Percona Server stopped tracking the `global_connection_memory` when using `thread_handling='pool-of-threads'`.
46+
47+
* [PS-9537](https://perconadev.atlassian.net/browse/PS-9537): When building a new component that used mysql_command_xxx services (such as `mysql_command_factory`, `mysql_command_query`, etc.), it was impossible to reuse the same connection to run multiple queries. This issue was observed with `SELECT` queries, but it may also apply to `INSERT`, `UPDATE`, and `DELETE` operations.
48+
49+
* [PS-9542](https://perconadev.atlassian.net/browse/PS-9542): Added Clang-19 to Azure pipelines, and fixed the clang-19 compilation issues.
50+
51+
* [PS-9551](https://perconadev.atlassian.net/browse/PS-9551): When building a new component that used mysql_command_xxx services (such as `mysql_command_factory`, `mysql_command_query`, etc.), a server exit was encountered when setting the `MYSQL_COMMAND_LOCAL_THD_HANDLE` option.
52+
53+
* [PS-9611](https://perconadev.atlassian.net/browse/PS-9611): An assertion failure occurred during server shutdown: `!is_set() || m_can_overwrite_status`.
54+
55+
* [PS-9612](https://perconadev.atlassian.net/browse/PS-9612): Percona Server build failed if more than 128 threads were available. Percona merged the fix from [MariaDB](https://github.com/MariaDB/server/commit/fd9f1638ea7).
56+
57+
* [PS-9654](https://perconadev.atlassian.net/browse/PS-9654): There was an incorrect usage of `setup_component_customized.inc` in the MySQL Test Runner (MTR) tests.
58+
59+
* [PS-9033](https://perconadev.atlassian.net/browse/PS-9033): The `audit_log_filter` plugin did not register remote accesses.
60+
61+
* [PS-9464](https://perconadev.atlassian.net/browse/PS-9464): Some queries that used hash antijoins returned incorrect results when the hash table did not fit in the join buffer and spilled to the disk. (The query triggering the issue specified LEFT JOIN, which was transformed internally from a left outer join to an antijoin.) Percona merged the fix from MySQL (Bug #116334, Bug #37161583).
62+
63+
* [PS-9614](https://perconadev.atlassian.net/browse/PS-9614): The `Pool-of-Threads` timer thread failed to start if `mysqld` was started with `--daemonize`.
64+
65+
* [PS-9668](https://perconadev.atlassian.net/browse/PS-9668): The server exited when executing `LOCK TABLES FOR BACKUP` after audit logs were enabled.
66+
67+
## Additional resources
68+
69+
* Install [Percona Server for MySQL 8.4]
70+
71+
* The [Percona Server for MySQL GitHub repository]
72+
73+
* Download product binaries, packages, and tarballs at [Percona Software Downloads]
74+
75+
* [Contribute to the documentation]
76+
77+
* For [training], contact [Percona Training - Start learning now]
78+
79+
[Quickstart Guide for Percona Server for MySQL]: ../quickstart-overview.md
80+
[Percona Server for MySQL 8.4.4-4]: https://www.percona.com/software/mysql-database/percona-server
81+
82+
83+
[Percona Server for MySQL 8.4]: ../installation.md
84+
85+
[MySQL 8.4.4 release notes]: https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-4.html
86+
87+
[Percona Server for MySQL GitHub repository]: https://github.com/percona/percona-server
88+
[Percona Software Downloads]: https://www.percona.com/downloads
89+
[Contribute to the documentation]: https://github.com/percona/psmysql-docs/blob/8.0/contributing.md
90+
[training]: https://www.percona.com/training
91+
[Percona Training - Start learning now]: https://learn.percona.com/contact-me

docs/release-notes/release-notes-index.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Percona Server for MySQL {{vers}} release notes index
22

3+
* [Percona Server for MySQL 8.4.4-4 (2025-03-18)](8.4.4-4.md)
4+
35
* [Percona Server for MySQL 8.4.3-3 (2024-12-18)](8.4.3-3.md)
46

57
* [Percona Server for MySQL 8.4.2-2 (2024-11-04)](8.4.2-2.md)

mkdocs-base.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ site_name: Percona Server for MySQL
44
site_description: Documentation
55
site_author: Percona LLC
66
copyright: >-
7-
<a href="https://www.percona.com/about">Percona LLC</a> and its affiliates &copy; 2024 — <a href="#" onclick="Osano.cm.showDrawer('osano-cm-dom-info-dialog-open')">Cookie Preferences</a>
7+
<a href="https://www.percona.com/about">Percona LLC</a> and its affiliates &copy; 2025 — <a href="#" onclick="Osano.cm.showDrawer('osano-cm-dom-info-dialog-open')">Cookie Preferences</a>
88
repo_name: percona/psmysql-docs
99
repo_url: https://github.com/percona/psmysql-docs
1010
edit_uri: edit/8.4/docs/
@@ -125,7 +125,7 @@ plugins:
125125
with-pdf: # https://github.com/orzih/mkdocs-with-pdf
126126
output_path: '_pdf/PerconaServer-8.4.pdf'
127127
cover_title: 'Percona Server Documentation'
128-
cover_subtitle: 8.4.3-3 (2024-12-18)
128+
cover_subtitle: 8.4.4-4 (2025-03-18)
129129
author: 'Percona Technical Documentation Team'
130130
cover_logo: docs/_static/pdf-logo.png
131131
debug_html: false
@@ -150,6 +150,7 @@ nav:
150150
- get-help.md
151151
- Release notes:
152152
- Release notes index: release-notes/release-notes-index.md
153+
- release-notes/8.4.4-4.md
153154
- release-notes/8.4.3-3.md
154155
- release-notes/8.4.2-2.md
155156
- release-notes/8.4.1.md

variables.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# variables for HTML output
22

3-
release: '8.4.3-3'
3+
release: '8.4.4-4'
44
version: '8.4'
55
vers: '8.4' # we are going to use it instead of version
66
pkg: 'ps-84-lts'
7-
pro_release: '8.4.3-3'
8-
tag: '8.4.3'
9-
arm_tag: '8.4.3-aarch64'
10-
year_tag: '2024'
11-
release_date: '2024-12-18'
12-
title_date: '2024-12-18'
7+
pro_release: '8.4.4-4'
8+
tag: '8.4.4'
9+
arm_tag: '8.4.4-aarch64'
10+
year_tag: '2025'
11+
release_date: '2025-03-18'
12+
title_date: '2025-03-18'
1313

1414

0 commit comments

Comments
 (0)