Zero Down Time-ZDU upgrades are not listed in System Info - Upgrade history
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
Zero Downtime Upgrade process in Jira DC 7.x and 8.x does not add the target version information in the System Info -> Upgrade history
Environment
Jira Data Center 7.x and 8.x
Diagnosis
After finishing Jira Data Center upgrade by following the Zero Down Time (ZDU) process, run the query below to check Jira database for the entries
1
SELECT * FROM upgradeversionhistory;
Cause
This is a known bug registered on JRASERVER-71927 - Zero Down Time (ZDU) upgrades are not listed in System Info->Upgrade history
Solution
The SQL query below can be used to insert the missing values in the table "upgradeversionhistory"

The query was created for PostgreSQL and syntax may vary to other database vendors.

Replace the '<UPGRADEDATE>','<TARGETBUILD>','<TARGETVERSION>' for the proper values.
1
2
INSERT INTO upgradeversionhistory (id, timeperformed, targetbuild, targetversion)
VALUES ((SELECT MAX(id)+1 FROM upgradeversionhistory),'<UPGRADEDATE>','<TARGETBUILD>','<TARGETVERSION>');
Was this helpful?