Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PS-9590 [Doc] Release notes for - PS 8.4.4-4 #464

Merged
merged 2 commits into from
Mar 18, 2025
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
4 changes: 2 additions & 2 deletions docs/copyright-and-licensing-information.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Documentation licensing

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/).
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/).

## Software license

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

Expand Down
91 changes: 91 additions & 0 deletions docs/release-notes/8.4.4-4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# Percona Server for MySQL 8.4.4-4 (2025-03-18)

Get started with [Quickstart Guide for Percona Server for MySQL].

[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.

## Release highlights

### Percona Server for MySQL 8.4.4-4

* 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.

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.

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).

* Improves the behavior of `audit_log_filter_set_user` to support wildcards in the hostname.

### MySQL 8.4.4

Improvements and bug fixes introduced by Oracle for MySQL 8.4.4 and included in Percona Server for MySQL are the following:

* Fixed an assertion in debug builds where certain IO buffer serializations caused system hangs. (Bug #37139618)

* 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)

* Fixed incorrect results, including missing rows, in queries that used a descending primary key with the `index_merge` optimization. (Bug #106207, Bug #33767814)

* 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)

Find the complete list of bug fixes and changes in the [MySQL 8.4.4 release notes].

## Improvements

* [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).

* [PS-9024](https://perconadev.atlassian.net/browse/PS-9024): Improves the behavior of `audit_log_filter_set_user` to support wildcards in the hostname.

## Bug fixes

* [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`.

* [PS-9416](https://perconadev.atlassian.net/browse/PS-9416): The error messages from the Key Management Interoperability Protocol (KMIP) component were not descriptive.

* [9509](https://perconadev.atlassian.net/browse/PS-9509): Percona Server stopped tracking the `global_connection_memory` when using `thread_handling='pool-of-threads'`.

* [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.

* [PS-9542](https://perconadev.atlassian.net/browse/PS-9542): Added Clang-19 to Azure pipelines, and fixed the clang-19 compilation issues.

* [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.

* [PS-9611](https://perconadev.atlassian.net/browse/PS-9611): An assertion failure occurred during server shutdown: `!is_set() || m_can_overwrite_status`.

* [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).

* [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.

* [PS-9033](https://perconadev.atlassian.net/browse/PS-9033): The `audit_log_filter` plugin did not register remote accesses.

* [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).

* [PS-9614](https://perconadev.atlassian.net/browse/PS-9614): The `Pool-of-Threads` timer thread failed to start if `mysqld` was started with `--daemonize`.

* [PS-9668](https://perconadev.atlassian.net/browse/PS-9668): The server exited when executing `LOCK TABLES FOR BACKUP` after audit logs were enabled.

## Additional resources

* Install [Percona Server for MySQL 8.4]

* The [Percona Server for MySQL GitHub repository]

* Download product binaries, packages, and tarballs at [Percona Software Downloads]

* [Contribute to the documentation]

* For [training], contact [Percona Training - Start learning now]

[Quickstart Guide for Percona Server for MySQL]: ../quickstart-overview.md
[Percona Server for MySQL 8.4.4-4]: https://www.percona.com/software/mysql-database/percona-server


[Percona Server for MySQL 8.4]: ../installation.md

[MySQL 8.4.4 release notes]: https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-4.html

[Percona Server for MySQL GitHub repository]: https://github.com/percona/percona-server
[Percona Software Downloads]: https://www.percona.com/downloads
[Contribute to the documentation]: https://github.com/percona/psmysql-docs/blob/8.0/contributing.md
[training]: https://www.percona.com/training
[Percona Training - Start learning now]: https://learn.percona.com/contact-me
2 changes: 2 additions & 0 deletions docs/release-notes/release-notes-index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Percona Server for MySQL {{vers}} release notes index

* [Percona Server for MySQL 8.4.4-4 (2025-03-18)](8.4.4-4.md)

* [Percona Server for MySQL 8.4.3-3 (2024-12-18)](8.4.3-3.md)

* [Percona Server for MySQL 8.4.2-2 (2024-11-04)](8.4.2-2.md)
Expand Down
5 changes: 3 additions & 2 deletions mkdocs-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ site_name: Percona Server for MySQL
site_description: Documentation
site_author: Percona LLC
copyright: >-
<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>
<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>
repo_name: percona/psmysql-docs
repo_url: https://github.com/percona/psmysql-docs
edit_uri: edit/8.4/docs/
Expand Down Expand Up @@ -125,7 +125,7 @@ plugins:
with-pdf: # https://github.com/orzih/mkdocs-with-pdf
output_path: '_pdf/PerconaServer-8.4.pdf'
cover_title: 'Percona Server Documentation'
cover_subtitle: 8.4.3-3 (2024-12-18)
cover_subtitle: 8.4.4-4 (2025-03-18)
author: 'Percona Technical Documentation Team'
cover_logo: docs/_static/pdf-logo.png
debug_html: false
Expand All @@ -150,6 +150,7 @@ nav:
- get-help.md
- Release notes:
- Release notes index: release-notes/release-notes-index.md
- release-notes/8.4.4-4.md
- release-notes/8.4.3-3.md
- release-notes/8.4.2-2.md
- release-notes/8.4.1.md
Expand Down
14 changes: 7 additions & 7 deletions variables.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# variables for HTML output

release: '8.4.3-3'
release: '8.4.4-4'
version: '8.4'
vers: '8.4' # we are going to use it instead of version
pkg: 'ps-84-lts'
pro_release: '8.4.3-3'
tag: '8.4.3'
arm_tag: '8.4.3-aarch64'
year_tag: '2024'
release_date: '2024-12-18'
title_date: '2024-12-18'
pro_release: '8.4.4-4'
tag: '8.4.4'
arm_tag: '8.4.4-aarch64'
year_tag: '2025'
release_date: '2025-03-18'
title_date: '2025-03-18'