Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 67)
+++ trunk/docs/Changelog	(revision 68)
@@ -1,2 +1,13 @@
+2.3.0:
+	* fix concurrency for inserts in oracle db
+	* add acl_(new|old) to database schema
+	* check for selix attributes and/or posix acl
+	* new option UseSelinuxCheck (bool) 
+	* new option UseAclCheck (bool)
+	* regression tests for above
+	* add module to check for open ports
+	* add module to check processes (hidden/fake/missing)
+	* use const char* for argument of module configuration callbacks
+ 
 2.2.6:
 	* fix error about non-readable file with no checksum required
@@ -4,5 +15,5 @@
         * fix 'make deb' makefile target
         * fix default export severity for server
-	
+			
 2.2.5 (05-10-2006):
 	* fix broken Install.sh, reported by Alexander Kraemer
Index: trunk/docs/README.UPGRADE
===================================================================
--- trunk/docs/README.UPGRADE	(revision 67)
+++ trunk/docs/README.UPGRADE	(revision 68)
@@ -1,2 +1,19 @@
+
+from lower to 2.3.x: database scheme has changed slightly
+
+  -- MySQL:
+	ALTER TABLE samhain.log ADD COLUMN acl_old BLOB;
+	ALTER TABLE samhain.log ADD COLUMN acl_new BLOB;
+
+  -- PostgreSQL:
+	ALTER TABLE samhain.log ADD COLUMN acl_old TEXT;
+	ALTER TABLE samhain.log ADD COLUMN acl_new TEXT;
+
+  -- Oracle:
+	ALTER TABLE samhain.log ADD COLUMN acl_old VARCHAR2(4000);
+	ALTER TABLE samhain.log ADD COLUMN acl_new VARCHAR2(4000);
+	DROP TRIGGER trigger_on_log;
+ 
+
 
 since 2.2.0: server-to-server relay is possible
