aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorJochen Neumeister <joneum@FreeBSD.org>2023-02-18 11:28:04 +0000
committerJochen Neumeister <joneum@FreeBSD.org>2023-02-18 11:31:36 +0000
commit7a2b905dba5c286c0a4555747da5e3fd528fecee (patch)
tree3baf497202f726cac8a9daeb8677b76ce4e185f5 /UPDATING
parent7c7b955d24d72f0fded24130522328a6df57b316 (diff)
downloadports-7a2b905dba5c286c0a4555747da5e3fd528fecee.tar.gz
ports-7a2b905dba5c286c0a4555747da5e3fd528fecee.zip
Mk/bsd.default-version.mk: Update default MySQL version to 8.0
Change the default version of MySQL to 8.0 PR: 269203 Exp-run-by: antoine Sponsored by: Netzkommune GmbH
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING22
1 files changed, 22 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index d3bd39a6dcb5..87a42a064504 100644
--- a/UPDATING
+++ b/UPDATING
@@ -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.
+20230218:
+ AFFECTS: users of databases/mysql57-(server|client)
+ AUTHOR: joneum@FreeBSD.org
+
+ The default MySQL version has been updated from 5.7 to 8.0.
+
+ If you compile your own ports you may keep 5.7 as the default version by
+ adding the following lines to your /etc/make.conf file:
+
+ #
+ # Keep MySQL 5.7 as default version
+ #
+ DEFAULT_VERSIONS+=mysql=5.7
+
+ 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/mysql57-client:databases/mysql80-client
+ # pkg set -o databases/mysql57-server:databases/mysql80-server
+ # pkg upgrade
+
20230215:
AFFECTS: users of python
AUTHOR: vishwin@FreeBSD.org