diff --git a/CHANGELOG b/CHANGELOG index 1abea2947..e0f695f5c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,10 @@ GitHub, at http://github.com/opendcim/openDCIM/issues, where you can also downlo the latest development version. However, it is not advised to pull from GitHub unless you are simply testing, as some functionality can break between releases. +Changes in 23.02 +---------------- +* UI Bug Fixes related to jquery upgrades in 23.01 + Changes in 23.01 ---------------- * Primary focus was in compatibility with PHP 8.x diff --git a/container-install.php b/container-install.php index 74acfde8a..bd7b6f113 100644 --- a/container-install.php +++ b/container-install.php @@ -222,6 +222,12 @@ function upgrade(){ error_log("Applying database update from 21.01 to 23.01"); $results[]=applyupdate("db-21.01-to-23.01.sql"); + $config->rebuild(); + } + if($version=="21.01"){ + error_log("Applying database update from 23.01 to 23.02"); + $results[]=applyupdate("db-23.01-to-23.02.sql"); + $config->rebuild(); } } diff --git a/db-23.01-to-23.02.sql b/db-23.01-to-23.02.sql new file mode 100755 index 000000000..cf86d91ba --- /dev/null +++ b/db-23.01-to-23.02.sql @@ -0,0 +1,5 @@ +--- +--- No actual db schema changes in this version, only a version bump +--- + +UPDATE fac_Config set Value="23.01" WHERE Parameter="Version"; diff --git a/install.php b/install.php index 74acfde8a..3a50580c5 100644 --- a/install.php +++ b/install.php @@ -222,6 +222,12 @@ function upgrade(){ error_log("Applying database update from 21.01 to 23.01"); $results[]=applyupdate("db-21.01-to-23.01.sql"); + $config->rebuild(); + } + if($version=="23.01"){ + error_log("Applying database update from 23.01 to 23.02"); + $results[]=applyupdate("db-23.01-to-23.02.sql"); + $config->rebuild(); } } diff --git a/version.php b/version.php index a91fc0a98..7a7b53bba 100644 --- a/version.php +++ b/version.php @@ -1,3 +1,3 @@