@@ -439,20 +439,27 @@ sub usage {
439
439
add_advice(" version" ," high" ," If this instance is a production server, then only use stable versions" );
440
440
}
441
441
my $pg_upgrade =" Upgrade to the latest stable PostgreSQL version" ;
442
- if (min_version(' 12.0' )) {
442
+ my $pg_supportdates =" Check https://www.postgresql.org/support/versioning/ for upstream support dates" ;
443
+ if (min_version(' 13.0' )) {
443
444
print_report_ok(" You are using the latest PostreSQL major version ($version )" );
445
+ } elsif (min_version(' 12.0' )) {
446
+ print_report_ok($pg_upgrade );
447
+ add_advice(" version" ," low" ,$pg_upgrade );
444
448
} elsif (min_version(' 11.0' )) {
445
449
print_report_ok($pg_upgrade );
446
450
add_advice(" version" ," low" ,$pg_upgrade );
447
451
} elsif (min_version(' 10.0' )) {
448
452
print_report_warn($pg_upgrade );
449
453
add_advice(" version" ," low" ,$pg_upgrade );
450
- } elsif (min_version(' 9.0' )) {
454
+ add_advice(" version" ," low" ,$pg_supportdates );
455
+ } elsif (min_version(' 9.5' )) {
451
456
print_report_warn($pg_upgrade );
452
457
add_advice(" version" ," medium" ,$pg_upgrade );
458
+ add_advice(" version" ," medium" ,$pg_supportdates );
453
459
} elsif (min_version(' 8.1' )) {
454
- print_report_bad(" You are using PostreSQL version $version , which is very old " );
460
+ print_report_bad(" You are using PostreSQL version $version , which is unsupported upstream " );
455
461
add_advice(" version" ," high" ,$pg_upgrade );
462
+ add_advice(" version" ," high" ,$pg_supportdates );
456
463
} else {
457
464
print_report_bad(" You are using PostreSQL version $version , which is very old and not supported by this script" );
458
465
add_advice(" version" ," high" ,$pg_upgrade );
0 commit comments