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
Copy file name to clipboardExpand all lines: src/BuildProcess/ValidateManifest.php
+2-13
Original file line number
Diff line number
Diff line change
@@ -39,23 +39,12 @@ protected function warnAboutDeprecations()
39
39
if (in_array(Manifest::runtime($this->environment), [
40
40
'php-7.3',
41
41
'php-7.4',
42
-
'php-8.0',
43
-
])) {
44
-
Helpers::warn(
45
-
'The runtimes "php-7.3", "php-7.4", and "php-8.0" are deprecated and support will be fully removed from Vapor on December 31st, 2023.'
46
-
.' Those runtimes are based on Amazon Linux 1, for which AWS standard support has ended.'
47
-
.' Amazon Linux 1 is only receiving critical and important security updates and it may not work with new Vapor/AWS features.'
48
-
.' Please use Amazon Linux 2 with "php-7.4:al2" or "php-8.0:al2" instead.'
49
-
);
50
-
}
51
-
52
-
if (in_array(Manifest::runtime($this->environment), [
53
42
'php-7.4:al2',
54
43
'php-7.4:imagick',
44
+
'php-8.0',
55
45
])) {
56
46
Helpers::warn(
57
-
'The runtimes "php-7.4:al2", and "php-7.4:imagick" are deprecated and support will be fully removed from Vapor on December 31st, 2023.'
58
-
.' PHP 7.4 is no longer being maintained or receiving security updates.'
47
+
'The runtimes "php-7.3", "php-7.4", "php-7.4:al2", "php-7.4:imagick", and "php-8.0" are deprecated and will no longer be supported or receiving any updates.'
59
48
.' For a full list of supported runtimes, please see: https://docs.vapor.build/1.0/projects/environments.html#runtime'
Copy file name to clipboardExpand all lines: src/Commands/DeployCommand.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ public function handle()
68
68
69
69
if ($deployment['database'] && $deployment['database']['certificate_authority_status'] === 'expiring') {
70
70
Helpers::line();
71
-
Helpers::warn('You database is uses a certificate which expires in August 2024. To prevent connectivity issues after this date, please update the Certificate Authority of your database from the AWS console using the link below.');
71
+
Helpers::warn('Your database is using a certificate which expires in August 2024. To prevent connectivity issues after this date, please update the Certificate Authority of your database from the AWS console using the link below.');
0 commit comments