aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING47
1 files changed, 47 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 10a1febfb914..0c1eb855eb8b 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,53 @@ 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.
+20260510:
+ AFFECTS: Users of games/minecraft-server
+ AUTHOR: freebsd.tug890@passmail.net
+
+ The file structure of how worlds and their data are stored have been
+ changed since new 26.1 version.
+ If you upgrade from a version older than 26.1 (v1.21.11 for example),
+ you can get the following error during wold upgrade:
+ "
+ net.minecraft.util.filefix.virtualfilesystem.exception.CowFSSymlinkException:
+ Cannot build copy-on-write file system when symlink is present: ./world
+ "
+
+ To successfully migrate your world, you must relocate /var/db/minecraft
+ content in /usr/local/minecraft/world, then launch 'minecraft-server'
+ as usual.
+ When 'world' upgrade is finished, stop 'minecraft-server' then relocate
+ your world in initial folder /var/db/minecraft-server.
+
+ Approximate list of commands:
+ # service minecraft stop
+ # mv /usr/local/minecraft/world /usr/local/minecraft/world.bak
+ # mv /var/db/minecraft-server /usr/local/minecraft/world
+ # service minecraft start
+ Wait until the conversion is complete.
+ # service minecraft stop
+ # mv /usr/local/minecraft/world /var/db/minecraft-server
+ # /usr/local/minecraft/world.bak /usr/local/minecraft/world
+ # service minecraft start
+ Enjoy!
+
+20260508:
+ AFFECTS: users of shells/bash-completion
+ AUTHOR: michaelo@FreeBSD.org
+
+ Port does not depend on shells/bash{,-static} anymore. Install the port
+ directly. See PR 292138 and 292501 for details.
+
+20260425:
+ AFFECTS: Users of security/openssh-portable
+ AUTHOR: bdrewery@FreeBSD.org
+
+ Some defaults have changed to match src.
+
+ - X11Forwarding default has changed from "yes" to "no".
+ - PermitRootLogin default has changed from "prohibit-password" to "no".
+
20260418:
AFFECTS: Users of net/rsync and net/rsync@python
AUTHOR: rodrigo@FreeBSD.org