Skip to content

Commit 0e43439

Browse files
committed
ci: update version info. 6.8.4
1 parent b50a257 commit 0e43439

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

core/base/update/updates.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,26 @@
3535

3636

3737

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

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.3';
4+
$DEDALO_VERSION = '6.8.4';
55
if(defined('DEVELOPMENT_SERVER') && DEVELOPMENT_SERVER===true) {
66
$DEDALO_VERSION .= '.dev';
77
}
88
define('DEDALO_VERSION' , $DEDALO_VERSION);
9-
define('DEDALO_BUILD' , '2025-11-24T10:16:44+01:00');
9+
define('DEDALO_BUILD' , '2025-12-15T12:01:51+01:00');
1010
define('DEDALO_MAJOR_VERSION', '6');

0 commit comments

Comments
 (0)