diff options
| author | Jochen Neumeister <joneum@FreeBSD.org> | 2026-03-26 17:24:22 +0000 |
|---|---|---|
| committer | Jochen Neumeister <joneum@FreeBSD.org> | 2026-03-26 17:25:53 +0000 |
| commit | f480e2504bc59ec49c52c4606fcf0be87324d04c (patch) | |
| tree | 44f91dbbfbe3928d31584f9f83044bba2f8cb581 | |
| parent | 74b10f9ee9307aa957a23b15d9908de36349c731 (diff) | |
Mk/bsd.default-version.mk: Update default MySQL version to 8.4
Change the default version of MySQL to 8.4
PR: 291336
Exp-run-by: antoine
Sponsored by: Netzkommune GmbH
| -rw-r--r-- | Mk/Uses/mysql.mk | 2 | ||||
| -rw-r--r-- | Mk/bsd.default-versions.mk | 2 | ||||
| -rw-r--r-- | UPDATING | 22 |
3 files changed, 24 insertions, 2 deletions
diff --git a/Mk/Uses/mysql.mk b/Mk/Uses/mysql.mk index fbc2b867e8df..4fed231718c4 100644 --- a/Mk/Uses/mysql.mk +++ b/Mk/Uses/mysql.mk @@ -5,7 +5,7 @@ # # version If no version is given (by the maintainer via the port), try to # find the currently installed version. Fall back to default if -# necessary (MySQL-8.0 = 80, look at bsd.default-versions.mk for +# necessary (MySQL-8.4 = 84, look at bsd.default-versions.mk for # possible values). # client Depends on the libmysqlclient library (default) # server Depend on the server at run/build time. If none of these is diff --git a/Mk/bsd.default-versions.mk b/Mk/bsd.default-versions.mk index 66be7ed4067a..f6dc89a880ad 100644 --- a/Mk/bsd.default-versions.mk +++ b/Mk/bsd.default-versions.mk @@ -110,7 +110,7 @@ LUAJIT_DEFAULT?= luajit # Possible values: 5.10, 5.20, 6.8 MONO_DEFAULT?= 5.20 # Possible values: 8.0, 8.4, 9.1, 9.4, 9.6, 10.6m, 10.11m, 11.4m, 11.8m -MYSQL_DEFAULT?= 8.0 +MYSQL_DEFAULT?= 8.4 # Possible values: ninja, samurai NINJA_DEFAULT?= ninja # Possible value: 20, 22, 24, 25, current, lts (Note: current = 25 and lts = 24) @@ -5,6 +5,28 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20260326: + AFFECTS: users of databases/mysql80-(server|client) + AUTHOR: joneum@FreeBSD.org + + The default MySQL version has been updated from 8.0 to 8.4. + + If you compile your own ports you may keep 8.0 as the default version by + adding the following lines to your /etc/make.conf file: + + # + # Keep MySQL 8.0 as default version + # + DEFAULT_VERSIONS+=mysql=8.0 + + If you wish to update to the new default version, you need to first stop any + running server instance. Then, you will need to follow these steps, depending + on installed packages. + + # pkg set -o databases/mysql80-client:databases/mysql84-client + # pkg set -o databases/mysql80-server:databases/mysql84-server + # pkg upgrade + 20260325: AFFECTS: users of math/coq AUTHOR: jrm@FreeBSD.org |
