Skip to content

Commit e4b1272

Browse files
committed
chore: update to version 6.8.5 with database vacuum optimization
Updated system to version 6.8.5 by incrementing the version number and updating the build timestamp. Added database maintenance update to vacuum and analyze the matrix_ontology table for improved performance. This update ensures compatibility with the latest system requirements and includes database optimization for better query performance.
1 parent 9eda8ec commit e4b1272

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
@@ -34,6 +34,24 @@
3434
$updates = new stdClass();
3535

3636

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

3856
$v=684; #####################################################################################
3957
$updates->$v = new stdClass();

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.4';
4+
$DEDALO_VERSION = '6.8.5';
55
if(defined('DEVELOPMENT_SERVER') && DEVELOPMENT_SERVER===true) {
66
$DEDALO_VERSION .= '.dev';
77
}
88
define('DEDALO_VERSION' , $DEDALO_VERSION);
9-
define('DEDALO_BUILD' , '2025-12-23T11:02:55+01:00');
9+
define('DEDALO_BUILD' , '2025-12-23T13:34:55+01:00');
1010
define('DEDALO_MAJOR_VERSION', '6');

0 commit comments

Comments
 (0)