Skip to content

Commit

Permalink
Updated CHANGELOG and installers for 23.04 release
Browse files Browse the repository at this point in the history
  • Loading branch information
samilliken committed Oct 15, 2023
1 parent 03b1bc2 commit 5e24d4c
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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.04
----------------
* Resolved UI issue with patch panel entry deletions
* Resolved UI issue with patch panel editing
* Corrected SQL in in new installs where admin user was not being created
* Resolved issue where items that were disposed, then moved back to production, they could not be disposed again
* Resolved UI issue where image could not be selected for template
* Resolved some missed API routes causing images to not display in cabinets
* Resolved issue with Outage Simulator Report when selecting subpanels

Changes in 23.03
----------------
* Resolved error in bulk_network.php
Expand Down
6 changes: 6 additions & 0 deletions container-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,12 @@ function upgrade(){
error_log("Applying database update from 23.02 to 23.03");
$results[]=applyupdate("db-23.02-to-23.03.sql");

$config->rebuild();
}
if($version=="23.03"){
error_log("Applying database update from 23.03 to 23.04");
$results[]=applyupdate("db-23.03-to-23.04.sql");

$config->rebuild();
}
}
Expand Down
5 changes: 5 additions & 0 deletions db-23.03-to-23.04.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
--- Schema changes for 23.03 to 23.04
---

UPDATE fac_Config set Value="23.04" WHERE Parameter="Version";
5 changes: 5 additions & 0 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,12 @@ function upgrade(){

$config->rebuild();
}
if($version=="23.03"){
error_log("Applying database update from 23.03 to 23.04");
$results[]=applyupdate("db-23.03-to-23.04.sql");

$config->rebuild();
}
}

if($upgrade==true){ //If we're doing an upgrade don't call the rest of the installer.
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
define( "VERSION", "23.03" );
define( "VERSION", "23.04" );
?>

0 comments on commit 5e24d4c

Please sign in to comment.