@@ -484,6 +484,10 @@ public static void Upgrade(Version fromVersion, Version toVersion)
484484 if ( fromVersion < new Version ( 2025 , 8 , 11 , 0 ) )
485485 UpgradeTo_2025_8_11_0 ( ) ;
486486
487+ // 2026.2.22.0
488+ if ( fromVersion < new Version ( 2026 , 2 , 22 , 0 ) )
489+ UpgradeTo_2026_2_22_0 ( ) ;
490+
487491 // Latest
488492 if ( fromVersion < toVersion )
489493 UpgradeToLatest ( toVersion ) ;
@@ -620,23 +624,20 @@ private static void UpgradeTo_2025_8_11_0()
620624 }
621625
622626 /// <summary>
623- /// Method to apply changes for the latest version.
627+ /// Method to apply changes for version 2026.2.22.0 .
624628 /// </summary>
625- /// <param name="version">Latest version.</param>
626- private static void UpgradeToLatest ( Version version )
629+ private static void UpgradeTo_2026_2_22_0 ( )
627630 {
628- Log . Info ( $ "Apply upgrade to { version } ...") ;
631+ Log . Info ( "Apply upgrade to 2026.2.22.0 ..." ) ;
629632
630633 // DNS Lookup
631-
632634 Log . Info ( "Migrate DNS Lookup settings to new structure..." ) ;
633635
634636 Current . DNSLookup_SelectedDNSServer_v2 = Current . DNSLookup_SelectedDNSServer ? . Name ;
635637
636638 Log . Info ( $ "Selected DNS server set to \" { Current . DNSLookup_SelectedDNSServer_v2 } \" ") ;
637639
638640 // AWS Session Manager
639-
640641 Log . Info ( "Removing deprecated app \" AWS Session Manager\" , if it exists..." ) ;
641642
642643 var appToRemove = Current . General_ApplicationList
@@ -664,5 +665,14 @@ private static void UpgradeToLatest(Version version)
664665 Current . General_ApplicationList . Remove ( appToRemove ) ;
665666 }
666667 }
668+
669+ /// <summary>
670+ /// Method to apply changes for the latest version.
671+ /// </summary>
672+ /// <param name="version">Latest version.</param>
673+ private static void UpgradeToLatest ( Version version )
674+ {
675+ Log . Info ( $ "Apply upgrade to { version } ...") ;
676+ }
667677 #endregion
668678}
0 commit comments