Skip to content

Commit 8414da5

Browse files
committed
update to version 6.8.8 with database vacuum optimization
This commit updates the application to version 6.8.8 and includes a database maintenance update that performs a VACUUM FULL VERBOSE ANALYZE on the matrix_ontology table to optimize database performance. The update also refreshes the build timestamp to reflect the latest deployment.
1 parent c2123c1 commit 8414da5

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

core/base/update/updates.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,25 @@
3333
global $updates;
3434
$updates = new stdClass();
3535

36+
$v=688; #####################################################################################
37+
$updates->$v = new stdClass();
38+
39+
# UPDATE TO
40+
$updates->$v->version_major = 6;
41+
$updates->$v->version_medium = 8;
42+
$updates->$v->version_minor = 8;
43+
44+
# MINIMUM UPDATE FROM
45+
$updates->$v->update_from_major = 6;
46+
$updates->$v->update_from_medium = 8;
47+
$updates->$v->update_from_minor = 7;
48+
49+
// Re-index and vacuum tables
50+
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
51+
VACUUM FULL VERBOSE ANALYZE public.matrix_ontology;
52+
');
3653

54+
3755
$v=687; #####################################################################################
3856
$updates->$v = new stdClass();
3957

core/base/version.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

33
// Version
4-
$DEDALO_VERSION = '6.8.7';
4+
$DEDALO_VERSION = '6.8.8';
55
if(defined('DEVELOPMENT_SERVER') && DEVELOPMENT_SERVER===true) {
66
$DEDALO_VERSION .= '.dev';
77
}
88
define('DEDALO_VERSION' , $DEDALO_VERSION);
9-
define('DEDALO_BUILD' , '2026-02-20T20:30:49+01:00');
9+
define('DEDALO_BUILD' , '2026-03-01T12:58:30+01:00');
1010
define('DEDALO_MAJOR_VERSION', '6');

0 commit comments

Comments
 (0)