Skip to content

Commit

Permalink
DISTMYSQL-445 Release notes for Percona Distribution for MySQL (PDPS)…
Browse files Browse the repository at this point in the history
… 8.4 (#172)

* DISTMYSQL-445 Release notes for Percona Distribution for MySQL (PDPS) 8.4
	modified:   .github/workflows/main.yml
	new file:   docs/release-notes-ps-8.4.md
	modified:   docs/release-notes.md
	modified:   mkdocs-base.yml
	modified:   variables.yml

* Update release-notes-ps-8.4.md
  • Loading branch information
alina-derkach-oaza authored Oct 25, 2024
1 parent 9d9bc3c commit f369f82
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Percona Distribution for MySQL 8.3 docs
on:
push:
branches:
- innovation-release
- 8.4
jobs:
build:
name: Deploy docs
Expand Down Expand Up @@ -44,9 +44,9 @@ jobs:
# Deploy docs
- name: Deploy docs
run: |
mike deploy innovation-release -b publish -p
mike set-default innovation-release -b publish -p
mike retitle innovation-release "8.3 (LATEST)" -b publish -p
mike deploy 8.4 -b publish -p
mike set-default 8.4 -b publish -p
mike retitle 8.4 "8.4" -b publish -p
# - name: Install Node.js 14.x
# uses: percona-platform/setup-node@v2
# with:
Expand Down
72 changes: 72 additions & 0 deletions docs/release-notes-ps-8.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Percona Distribution for MySQL 8.4.0 using Percona Server for MySQL (2024-10-25)

Percona Distribution for MySQL is the most stable, scalable, and secure open source MySQL distribution, with two download options: one based on Percona Server for MySQL and one based on Percona XtraDB Cluster. [Install Percona Distribution for MySQL](installing.md).

This release is based on [Percona Server for MySQL 8.4.0-1](https://www.percona.com/doc/percona-server/8.4/release-notes/8.4.0-1.html).


## Release highlights

In MySQL 8.0, the release model changed to include new features in patch releases, allowing MySQL to introduce new features more frequently. However, this approach was complex for projects and applications needing only critical patches with minimal changes.

MySQL then moved to a versioning model with two options: Innovation releases and Long-Term Support (LTS) releases. Both types are production-ready.

Innovation releases offer access to the latest features, making them ideal for dynamic environments with strong automated testing and continuous integration.

Changes were made to each Innovation release that are now included in the 8.4 (LTS) release. You should review the Innovation release notes for details.

* [Percona Server for MySQL 8.1.0-1 (2023-11-27)](https://docs.percona.com/percona-server/innovation-release/release-notes/8.1.0-1.html)

* [Percona Server for MySQL 8.2.0-1 (2024-02-05)](https://docs.percona.com/percona-server/innovation-release/release-notes/8.2.0-1.html)

* [Percona Server for MySQL 8.3.0-1 (2024-04-16)](https://docs.percona.com/percona-server/innovation-release/release-notes/8.3.0-1.html)

LTS releases are more suitable for stable, established environments where minimal changes are needed. These releases include only essential fixes, reducing the risk of changes in the database software’s behavior.

This 8.4.0-1 release is the first 8.4 LTS series.

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

* The MySQL native password has been deprecated and is no longer loaded by default. However, it can be loaded if needed.

* The clone plugin allows cloning between different point releases within the same series. You only must match the major and minor version numbers for cloning.

* GTIDs (Global Transaction Identifiers) can now handle groups of transactions, which helps speed up processing.

* `mysqldump` can now create output for older versions of MySQL.

* Automatic updates for histograms. When enabled, the histogram updates automatically whenever `ANALYZE TABLE` is run on the table. InnoDB's automatic recalculation of persistent statistics also updates the histogram when automatic updates are enabled.

* Adds a new privilege called FLUSH_PRIVILEGES. This privilege explicitly allows the use of FLUSH PRIVILEGES statements. Unlike the RELOAD privilege, FLUSH_PRIVILEGES only applies to FLUSH PRIVILEGES statements.

* The terms "MASTER" and "SLAVE" in replication commands are being replaced with "SOURCE" and "REPLICA". This change is part of an ongoing effort to use more inclusive language.

* Removed the the `mysqlpump` utility.

* Removed the `mysql_upgrade` utility.

* The default values for specific InnoDB server system variables have changed. See [What is new in MySQL 8.4 since 8.0](https://dev.mysql.com/doc/refman/8.4/en/mysql-nutshell.html) for details.

## Deprecation

* [PS-8963](https://perconadev.atlassian.net/browse/PS-8963): The `SEQUENCE_TABLE()` function is deprecated and may be removed in a future release. We recommend that you use `PERCONA_SEQUENCE_TABLE()` instead. To maintain compatibility with existing third-party software, `SEQUENCE_TABLE` is no longer a reserved term and can be used as a regular identifier. Find more information in [PERCONA_SEQUENCE_TABLE(n) function](https://docs.percona.com/percona-server/8.4/percona-sequence-table.html).

## Packaging notes

Percona Server for MySQL 8.4.0-1 is compatible with Ubuntu 24.04.

## Supplied components

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.

!!! important

This release does not include the Percona Toolkit component. We will add it once a Percona Toolkit version compatible with MySQL 8.4 becomes available.

| Component | Version | Description |
| ------------------- | --------- | -------------------------------------------|
| Orchestrator | [3.2.6-14](https://github.com/percona/orchestrator/releases/tag/v3.2.6-14) | The replication topology manager for Percona Server for MySQL|
| ProxySQL | [2.6.5](https://docs.percona.com/proxysql/2.6.5.html) | A high performance, high-availability, protocol-aware proxy for MySQL|
| Percona XtraBackup | [8.4.0-1](https://docs.percona.com/percona-xtrabackup/8.4/release-notes/8.4.0-1.html)| An open-source hot backup utility for MySQL-based servers|
| MySQL Shell | [8.4.0](https://dev.mysql.com/doc/relnotes/mysql-shell/8.4/en/news-8-4-0.html) | An advanced client and code editor for MySQL Server|
| MySQL Router | [8.4.0](https://dev.mysql.com/doc/relnotes/mysql-router/8.4/en/news-8-4-0.html) | Lightweight middleware that provides transparent routing between your application and back-end MySQL servers|
2 changes: 1 addition & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Percona Distribution for MySQL {{vers}} release notes index

* [Percona Distribution for MySQL using Percona Server for MySQL 8.4.0 (2024-0-)](release-notes-ps-8.4.md)
* [Percona Distribution for MySQL using Percona Server for MySQL 8.4.0 (2024-10-25)](release-notes-ps-8.4.md)

3 changes: 2 additions & 1 deletion mkdocs-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ plugins:
with-pdf: # https://github.com/orzih/mkdocs-with-pdf
output_path: '_pdf/PerconaDistributionforMySQL.pdf'
cover_title: 'Percona Distribution for MySQL Documentation'
cover_subtitle: 8.4.0 (2024-04-16)
cover_subtitle: 8.4.0 (2024-10-25)
author: 'Percona Technical Documentation Team'
cover_logo: docs/_images/Percona_Logo_Color.png
debug_html: false
Expand All @@ -148,6 +148,7 @@ nav:
- Home: index.md
- Release notes:
- Release notes index: release-notes.md
- release-notes-ps-8.4.md
- Discover Percona Distribution for MySQL:
- components.md
- deployment-variants.md
Expand Down
4 changes: 2 additions & 2 deletions variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ psvers: '8.4.0-1'
vers: '8.4'
majorpkg: 'pdps-8.4'
minorpkg: 'pdps-8.4.0'
release_date: '2024-0-'
title_date: '2024-0-'
release_date: '2024-0-0'
title_date: '2024-0-0'


0 comments on commit f369f82

Please sign in to comment.