You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnlocalize('eolWarning','Upgrade to the latest available version as version {0} has reached end-of-life on {1} and is no longer supported.',displayInfo.displayVersion,displayInfo.endOfLife.toLocaleDateString());
358
-
}elseif(willBeEOL){
359
-
returnlocalize('willBeEolWarning','Upgrade to the latest available version as version {0} will reach end-of-life on {1} and will no longer be supported.',displayInfo.displayVersion,displayInfo.endOfLife.toLocaleDateString());
returnlocalize('eolWarning','Upgrade to the latest available version as version {0} has reached end-of-life on {1} and is no longer supported.',displayInfo.displayVersion,displayInfo.endOfLife.toLocaleDateString());
359
+
}elseif(willBeEOL){
360
+
returnlocalize('willBeEolWarning','Upgrade to the latest available version as version {0} will reach end-of-life on {1} and will no longer be supported.',displayInfo.displayVersion,displayInfo.endOfLife.toLocaleDateString());
361
+
}
360
362
}
363
+
}catch(error){
364
+
// do nothing, we don't want to show an error message if we can't get the EOL date
// if they have nothing in remote, warn them to connect a managed identity
33
-
returnlocalize('configureManagedIdentityWarning',
34
-
'Your app is not connected to a managed identity. To ensure access, please configure a managed identity. Without it, your application may encounter authorization issues.');
// if they have nothing in remote, warn them to connect a managed identity
40
+
returnlocalize('configureManagedIdentityWarning',
41
+
'Your app is not connected to a managed identity. To ensure access, please configure a managed identity. Without it, your application may encounter authorization issues.');
// if they have connection strings, warn them about insecure connections but don't try to convert them
40
-
returnlocalize('connectionStringWarning',
41
-
'Your app may be using connection strings for authentication. This may expose sensitive credentials and lead to security vulnerabilities. Consider using managed identities to enhance security.')
// if they have connection strings, warn them about insecure connections but don't try to convert them
47
+
returnlocalize('connectionStringWarning',
48
+
'Your app may be using connection strings for authentication. This may expose sensitive credentials and lead to security vulnerabilities. Consider using managed identities to enhance security.')
49
+
}
50
+
}catch(err){
51
+
// if we can't read local or remote settings, don't warn them about anything
0 commit comments