aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2019-04-21 13:31:25 +0000
committerKurt Jaeger <pi@FreeBSD.org>2019-04-21 13:31:25 +0000
commit65db7a872585d99ebfd4162aa05b5571e14bd919 (patch)
treee6de3d9d93fdcd909ff84cbd115d8520801917e7 /UPDATING
parent79b86f5aec622b6f3880c2ef1d0b63adba3dfc08 (diff)
downloadports-65db7a872585d99ebfd4162aa05b5571e14bd919.tar.gz
ports-65db7a872585d99ebfd4162aa05b5571e14bd919.zip
devel/lfcbase: update 1.11.9 -> 1.13.0
devel/lfcxml: update 1.2.6 -> 1.2.10 databases/cego: update 2.39.16 -> 2.44.1 databases/cegobridge: update 1.4.0 -> 1.5.0 databases/p5-DBD-cego: update 14.0 -> 1.5.0 - Warning: storage format has changed Export to xml format before upgrade and re-import after the upgrade See UPDATING - recompile all applications linked to libcego - Lots of changes, among them: o improved crash recovery o fixes to SQL expected behaviour o better CDATA handling o fixes primary key handling design issue o changes to serialisation for export/import, XML export/import is still possible Submitted by: Bjoern Lemke <lemke@lemke-it.com> Changelog: http://www.lemke-it.com/litexec?request=pubnews&user=&lang=en&numlog=1000
Notes
Notes: svn path=/head/; revision=499537
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING27
1 files changed, 27 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 83daef972a0d..78790214b7da 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,33 @@ 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.
+20190421:
+ AFFECTS: users of databases/cego
+ AUTHOR: pi@FreeBSD.org
+
+ To upgrade from cego 2.39.16 to 2.44.1, you need to export to xml before
+ the upgrade and import from xml after the upgrade, because the internal
+ storage has changed for some types.
+
+ Use these steps:
+
+ - export your database while it runs, see
+ http://www.lemke-it.com/litexec?request=pubcegodoc&user=&lang=en&section=cgdoc_database_running.html#tsimpexp_mode
+ for details.
+ - stop the database
+ service cego stop
+ - upgrade the port/package
+ - re-create the database
+ cego --mode=create --tableset=<database> --dbxml=<database>.xml
+ - import the database
+ cego --mode=xmlimport --tableset=<database> \
+ --dbxml=<database>.xml --impfile=export.xml --doLogging
+ - modify /etc/rc.conf by adding
+ cego_<database>_cpdump="YES"
+ cego_<database>_cleanup="YES"
+ - start the database
+ service cego start
+
20190420:
AFFECTS: users of lang/ruby24
AUTHOR: mfechner@FreeBSD.org